What's this mean?
What's this mean?
Out of context: Reply #9
- Started
- Last post
- 17 Responses
- aliendn0
var inc = targetFrame < 100 ? 1 : 5;
means:inc = 1 if targetFrame < 100
otherwise
inc = 5.
var inc = targetFrame < 100 ? 1 : 5;
means:
inc = 1 if targetFrame < 100
otherwise
inc = 5.