mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-07-26 11:24:38 -04:00
* removed position,scale,rotation components * added Transform component that contains position, rotation, and scale * scene graph update now regenerates the local mat4 using the transform component * akara bugfix: adding new subscriptions will process existing entities * added `--testscene` arg for testing individual scenes in isolation * added rotation support to d2interface.Surface
10 lines
157 B
Go
10 lines
157 B
Go
package d2systems
|
|
|
|
const (
|
|
scenePriorityMainMenu = iota
|
|
scenePriorityLoading
|
|
scenePriorityTerminal
|
|
scenePriorityMouseCursor
|
|
scenePriorityEbitenSplash
|
|
)
|