mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 23:26:41 -05:00
2e814f29b0
* 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
8 lines
94 B
Go
8 lines
94 B
Go
package main
|
|
|
|
import "github.com/OpenDiablo2/OpenDiablo2/d2app"
|
|
|
|
func main() {
|
|
d2app.Run()
|
|
}
|