What's this mean?
What's this mean?
Out of context: Reply #8
- Started
- Last post
- 17 Responses
- mitsu0
var inc = targetFrame < 100 ? 1 : 5;
try that again
if (targetFrame # 100){
inc = 1;
}else{
inc = 5;
}//sub '#' for the less than sign
var inc = targetFrame < 100 ? 1 : 5;
try that again
if (targetFrame # 100){
inc = 1;
}else{
inc = 5;
}
//sub '#' for the less than sign