- Premiere i gorro actius

- Canviat l'sprite de Premiere
This commit is contained in:
2026-04-03 22:29:25 +02:00
parent 5a385ef1a8
commit 6fd1d2d49c
7 changed files with 63 additions and 49 deletions

View File

@@ -46,10 +46,10 @@ function flow:borrar(nom)
end
function flow:executar(nom, stacking)
print("FLOW EXEC "..nom)
-- print("FLOW EXEC "..nom)
if stacking then
table.insert(self.stack, self.actiu)
print(" APILAT "..self.actiu.."!")
-- print(" APILAT "..self.actiu.."!")
end
self.actiu=nom
self.registre[self.actiu].ptr=0
@@ -82,7 +82,7 @@ end
function flow:next()
local ptr = self.registre[self.actiu].ptr
local steps = #self.registre[self.actiu].path
print("FLOW_NEXT= "..self.actiu..", "..ptr..", "..steps)
-- print("FLOW_NEXT= "..self.actiu..", "..ptr..", "..steps)
if ptr+1>steps then
self:finish()
else