More progress.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3862 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-02-18 02:37:14 +00:00
parent 74c35b6d65
commit 97953e7668
15 changed files with 1239 additions and 19 deletions
+13
View File
@@ -60,3 +60,16 @@ Notes
A, filled with B and C elements. I would have no way on the client to
inspect an array like that and know to tell the server that it's an A[].
Punting completely on Arrays for now.
- The RENDER Event is dispatched prior to each rendering, it's
basically like tick(): it gives anything that cares a chance to update
prior to being painted. It doesn't specify what the hell to listen on for
this event, but since all DisplayObjects are event dispatchers then
listening on any display object (including the stage) should work...
But, the damn thing doesn't get dispatched if there will be no render,
even if the code is still running- like when the flash player window is
minimized or obscured. Lovely.
I will play around with trying to just use a Timer with a 1ms interval,
and see if the frequency is limited to the actual framerate.