For the Timer, you need to restart the behavior to accept the change in the attribute.
Here's how you restart it. Attributes: self.currentTimer and self.updateTimer
Rule: if Attribute: self.currentTimer = self.updateTimer - Timer (using self.currentTimer for the variable.) Not Run to Completion Otherwise: Change Attribute: self.currentTimer = self.updateTimer
This is needed because it might be bad to just have the Timer value change too quickly.
Comments
Here's how you restart it.
Attributes: self.currentTimer and self.updateTimer
Rule: if Attribute: self.currentTimer = self.updateTimer
- Timer (using self.currentTimer for the variable.) Not Run to Completion
Otherwise: Change Attribute: self.currentTimer = self.updateTimer
This is needed because it might be bad to just have the Timer value change too quickly.
I'm trying to set a variable called wait to 7 and then I want the timer to run for wait seconds.