theonlysnowflake Posted July 8, 2015 Posted July 8, 2015 I am making a contraption that is sort of like pistons, and know how to make everything except a timer to keep them moving. I was thinking I could create a pivot to have an output (that I could manage in the FlowGraph editor), and just have it loop the output with a delay of about a second before it loops again. To quickly summarize How to program an output that will be displayed in the FlowGraph editor How to loop it with a delay between outputs How to have it not stop until I want it to. Thank you Quote
shadmar Posted July 11, 2015 Posted July 11, 2015 Here is one second timer in a loop: function Script:Start() lasttime=0 end function Script:UpdateWorld() if Time:GetCurrent()-1000 >= lasttime then lasttime = Time:GetCurrent() System:Print("one second has just passed...") end end Quote HP Omen - 16GB - i7 - Nvidia GTX 1060 6GB
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.