adds onSave and additional logic to fix an issue where saving and loading would break the helper
This commit is contained in:
parent
7e0bf739a4
commit
76120ef6f7
@ -1,8 +1,4 @@
|
||||
function onload(saved_data)
|
||||
if saved_data != '' then
|
||||
local loaded_data = JSON.decode(saved_data)
|
||||
end
|
||||
|
||||
revealCardPositions = {
|
||||
Vector(3.5, 0.25, 0),
|
||||
Vector(-3.5, 0.25, 0)
|
||||
@ -31,6 +27,20 @@ function onload(saved_data)
|
||||
movingCards = false
|
||||
|
||||
self.addContextMenuItem('Reset helper', resetHelper)
|
||||
|
||||
if saved_data != '' then
|
||||
local loaded_data = JSON.decode(saved_data)
|
||||
hiddenCards = loaded_data.saved_hiddenCards
|
||||
|
||||
isSetup = true
|
||||
refreshButtons()
|
||||
end
|
||||
end
|
||||
|
||||
function onSave()
|
||||
return JSON.encode({
|
||||
saved_hiddenCards = hiddenCards
|
||||
})
|
||||
end
|
||||
|
||||
function onObjectEnterContainer(container, object)
|
||||
|
Loading…
Reference in New Issue
Block a user