Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function setup()
- end
- count=0
- function loop()
- if count==0 then
- outMain("first screen")
- end
- if count==1 then
- outSecond("second screen!")
- end
- if count==2 then
- outHolo("holo screen!")
- end
- outMain(V1)
- count=count+1
- end
- function out(big,small,data)
- output(data,3)
- output(small,2)
- output(big,1)
- end
- function outMain(data)
- output(data,4)
- end
- function outSecond(data)
- output(data,5)
- end
- function outHolo(data)
- output(data,6)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement