Initial upload

This commit is contained in:
technobaboo
2021-07-21 13:00:57 -05:00
parent 434678e4d8
commit 74aed3ed1d
53 changed files with 546 additions and 598 deletions

View File

@@ -0,0 +1,10 @@
# /lifecycle
Object representing the life cycle of the Stardust server, from start to each frame to end.
## Signals
### `subscribeLogicStep(string path, string method)`
Executes `method` on object at `path` on the client when the main logic loop of the server starts each frame.
`method` must have arguments of `(double delta, double timeToRender)`.
`delta` gives the time in seconds between the current time and the last time the logic loop executed while `timeToRender` gives the time in ms since epoch when the current frame is expected to reach the user's eyes.