-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AwayStats ::: stage.frameRate #220
Labels
Comments
In what way is the output incorrect? What is the output that you are seeing? |
here a screenshot ==> http://away3d.com/forum/viewthread/1900/ |
Whoa! I've never seen that before. Thanks for reporting. |
This happens if the reduce stage.framerate down to 0, and then again begin increasing ... |
rob-bateman
added a commit
that referenced
this issue
Apr 13, 2012
updated and in the dev branch: ddcdc5f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not the correct output stage.frameRate.
Not correct:
_fps_tf.text = _fps.toString().concat('/', stage.frameRate);
Correctly:
_fps_tf.text = _fps.toString().concat('/', int(stage.frameRate));
The text was updated successfully, but these errors were encountered: