Re: A couple of questions
Re: A couple of questions
Higher resolution on the timer? What are you asking? Are you talking about the 1/1000 seconds since the start of the frame counter?
EDIT: I think I know what you mean. You mean the 'Every --:--:--' conditions? If you want to get the time in thousands of seconds, type 'timer' in the expression editor. It won't let you do an 'every' action with that, but what you do is you say 'if timer mod # is equal to 0, then do actions, where # is how many thousandths of a second you want the action to repeat.
Re: A couple of questions
I'm not sure of this, but saying timer mod # might have a problem, since mmf only checks this ever so often, this means that there is a chance mmf will never check at the value where mod # is actually 0, if its of higher res than the framerate.
One way of always keeping a perfect time could be to every frame set a counter to the exact timevalue in milliseconds or whatever. Compare that value with the last frames value, and you will know exactly how many milliseconds have passed since them. Then you could use that difference to drive your song forward.. perhaps =)