├── .gitignore ├── LICENSE ├── README.md ├── actions ├── lua │ └── main.lua └── main.cpp ├── billboard ├── assets │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ ├── ground.png │ └── tree_08_10000.png └── main.cpp ├── car ├── assets │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ ├── engine.wav │ ├── jeep │ │ ├── Jeep.mtl │ │ ├── Jeep.obj │ │ ├── Jeep_glass_d.tga │ │ ├── Jeep_inside_d.tga │ │ └── Jeep_outside_d.tga │ ├── old-house │ │ ├── old-house.mtl │ │ ├── old-house.obj │ │ └── old-house.png │ └── road.png ├── lua │ └── main.lua └── main.cpp ├── events └── main.cpp ├── lines └── main.cpp ├── mirror ├── assets │ ├── WaterBottle.glb │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ └── ground.png ├── lua │ └── main.lua └── main.cpp ├── morph_targets ├── assets │ ├── AnimatedMorphCube.bin │ ├── AnimatedMorphCube.gltf │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ └── ground.png ├── lua │ └── main.lua └── main.cpp ├── offscreen ├── assets │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ ├── jeep │ │ ├── Jeep.mtl │ │ ├── Jeep.obj │ │ ├── Jeep_glass_d.tga │ │ ├── Jeep_inside_d.tga │ │ └── Jeep_outside_d.tga │ ├── old-house │ │ ├── old-house.mtl │ │ ├── old-house.obj │ │ └── old-house.png │ └── road.png └── main.cpp ├── particles ├── assets │ └── explosion.png ├── lua │ └── main.lua └── main.cpp ├── particles3d_and_instances ├── assets │ ├── CommonTree_1.mtl │ ├── CommonTree_1.obj │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ ├── ground.png │ └── particle.png └── main.cpp ├── persistence ├── assets │ ├── Button_Disable.png │ ├── Button_Normal.png │ └── Button_Press.png ├── lua │ └── main.lua └── main.cpp ├── physics2d ├── assets │ ├── SoccerBall.png │ └── crate.png └── main.cpp ├── physics3d ├── assets │ ├── block.png │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ └── ground.png └── main.cpp ├── physics3d_terrain ├── assets │ ├── block.png │ ├── ground.png │ └── heightmap.png └── main.cpp ├── shapes ├── assets │ └── block.png ├── lua │ └── main.lua └── main.cpp ├── simple_triangle ├── lua │ └── main.lua └── main.cpp ├── skeletal_animation ├── assets │ ├── CesiumMan.glb │ ├── ely_hills │ │ ├── ely_hills.shader │ │ ├── hills_bk.tga │ │ ├── hills_dn.tga │ │ ├── hills_ft.tga │ │ ├── hills_lf.tga │ │ ├── hills_rt.tga │ │ ├── hills_up.tga │ │ └── readme │ └── ground.png ├── lua │ └── main.lua └── main.cpp ├── sprites ├── assets │ └── dino.png ├── lua │ └── main.lua └── main.cpp ├── terrain ├── assets │ ├── blendmap.png │ ├── block.png │ ├── ground.png │ └── heightmap.png ├── lua │ └── main.lua └── main.cpp ├── tilemap ├── assets │ ├── bg │ │ └── BG.png │ ├── object │ │ ├── Bush (1).png │ │ ├── Bush (2).png │ │ ├── Bush (3).png │ │ ├── Bush (4).png │ │ ├── Crate.png │ │ ├── Mushroom_1.png │ │ ├── Mushroom_2.png │ │ ├── Sign_1.png │ │ ├── Sign_2.png │ │ ├── Stone.png │ │ ├── Tree_1.png │ │ ├── Tree_2.png │ │ └── Tree_3.png │ └── tiles │ │ ├── tileset1.png │ │ └── tileset2.png ├── lua │ └── main.lua └── main.cpp ├── user_interface ├── assets │ ├── button_disable.png │ ├── button_normal.png │ ├── paper_icon.png │ ├── textedit.png │ ├── tile.png │ └── window.png └── main.cpp └── user_interface_3d ├── assets ├── ely_hills │ ├── ely_hills.shader │ ├── hills_bk.tga │ ├── hills_dn.tga │ ├── hills_ft.tga │ ├── hills_lf.tga │ ├── hills_rt.tga │ ├── hills_up.tga │ └── readme ├── ground.png ├── paper_icon.png └── textedit.png └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/README.md -------------------------------------------------------------------------------- /actions/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/actions/lua/main.lua -------------------------------------------------------------------------------- /actions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/actions/main.cpp -------------------------------------------------------------------------------- /billboard/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /billboard/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /billboard/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /billboard/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /billboard/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /billboard/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /billboard/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /billboard/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ely_hills/readme -------------------------------------------------------------------------------- /billboard/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/ground.png -------------------------------------------------------------------------------- /billboard/assets/tree_08_10000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/assets/tree_08_10000.png -------------------------------------------------------------------------------- /billboard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/billboard/main.cpp -------------------------------------------------------------------------------- /car/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /car/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /car/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /car/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /car/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /car/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /car/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /car/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/ely_hills/readme -------------------------------------------------------------------------------- /car/assets/engine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/engine.wav -------------------------------------------------------------------------------- /car/assets/jeep/Jeep.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/jeep/Jeep.mtl -------------------------------------------------------------------------------- /car/assets/jeep/Jeep.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/jeep/Jeep.obj -------------------------------------------------------------------------------- /car/assets/jeep/Jeep_glass_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/jeep/Jeep_glass_d.tga -------------------------------------------------------------------------------- /car/assets/jeep/Jeep_inside_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/jeep/Jeep_inside_d.tga -------------------------------------------------------------------------------- /car/assets/jeep/Jeep_outside_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/jeep/Jeep_outside_d.tga -------------------------------------------------------------------------------- /car/assets/old-house/old-house.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/old-house/old-house.mtl -------------------------------------------------------------------------------- /car/assets/old-house/old-house.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/old-house/old-house.obj -------------------------------------------------------------------------------- /car/assets/old-house/old-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/old-house/old-house.png -------------------------------------------------------------------------------- /car/assets/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/assets/road.png -------------------------------------------------------------------------------- /car/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/lua/main.lua -------------------------------------------------------------------------------- /car/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/car/main.cpp -------------------------------------------------------------------------------- /events/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/events/main.cpp -------------------------------------------------------------------------------- /lines/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/lines/main.cpp -------------------------------------------------------------------------------- /mirror/assets/WaterBottle.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/WaterBottle.glb -------------------------------------------------------------------------------- /mirror/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /mirror/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /mirror/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /mirror/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /mirror/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /mirror/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /mirror/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /mirror/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ely_hills/readme -------------------------------------------------------------------------------- /mirror/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/assets/ground.png -------------------------------------------------------------------------------- /mirror/lua/main.lua: -------------------------------------------------------------------------------- 1 | --print("lua file") -------------------------------------------------------------------------------- /mirror/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/mirror/main.cpp -------------------------------------------------------------------------------- /morph_targets/assets/AnimatedMorphCube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/AnimatedMorphCube.bin -------------------------------------------------------------------------------- /morph_targets/assets/AnimatedMorphCube.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/AnimatedMorphCube.gltf -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /morph_targets/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ely_hills/readme -------------------------------------------------------------------------------- /morph_targets/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/assets/ground.png -------------------------------------------------------------------------------- /morph_targets/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/lua/main.lua -------------------------------------------------------------------------------- /morph_targets/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/morph_targets/main.cpp -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /offscreen/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/ely_hills/readme -------------------------------------------------------------------------------- /offscreen/assets/jeep/Jeep.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/jeep/Jeep.mtl -------------------------------------------------------------------------------- /offscreen/assets/jeep/Jeep.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/jeep/Jeep.obj -------------------------------------------------------------------------------- /offscreen/assets/jeep/Jeep_glass_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/jeep/Jeep_glass_d.tga -------------------------------------------------------------------------------- /offscreen/assets/jeep/Jeep_inside_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/jeep/Jeep_inside_d.tga -------------------------------------------------------------------------------- /offscreen/assets/jeep/Jeep_outside_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/jeep/Jeep_outside_d.tga -------------------------------------------------------------------------------- /offscreen/assets/old-house/old-house.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/old-house/old-house.mtl -------------------------------------------------------------------------------- /offscreen/assets/old-house/old-house.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/old-house/old-house.obj -------------------------------------------------------------------------------- /offscreen/assets/old-house/old-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/old-house/old-house.png -------------------------------------------------------------------------------- /offscreen/assets/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/assets/road.png -------------------------------------------------------------------------------- /offscreen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/offscreen/main.cpp -------------------------------------------------------------------------------- /particles/assets/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles/assets/explosion.png -------------------------------------------------------------------------------- /particles/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles/lua/main.lua -------------------------------------------------------------------------------- /particles/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles/main.cpp -------------------------------------------------------------------------------- /particles3d_and_instances/assets/CommonTree_1.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/CommonTree_1.mtl -------------------------------------------------------------------------------- /particles3d_and_instances/assets/CommonTree_1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/CommonTree_1.obj -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ely_hills/readme -------------------------------------------------------------------------------- /particles3d_and_instances/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/ground.png -------------------------------------------------------------------------------- /particles3d_and_instances/assets/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/assets/particle.png -------------------------------------------------------------------------------- /particles3d_and_instances/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/particles3d_and_instances/main.cpp -------------------------------------------------------------------------------- /persistence/assets/Button_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/persistence/assets/Button_Disable.png -------------------------------------------------------------------------------- /persistence/assets/Button_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/persistence/assets/Button_Normal.png -------------------------------------------------------------------------------- /persistence/assets/Button_Press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/persistence/assets/Button_Press.png -------------------------------------------------------------------------------- /persistence/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/persistence/lua/main.lua -------------------------------------------------------------------------------- /persistence/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/persistence/main.cpp -------------------------------------------------------------------------------- /physics2d/assets/SoccerBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics2d/assets/SoccerBall.png -------------------------------------------------------------------------------- /physics2d/assets/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics2d/assets/crate.png -------------------------------------------------------------------------------- /physics2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics2d/main.cpp -------------------------------------------------------------------------------- /physics3d/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/block.png -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /physics3d/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ely_hills/readme -------------------------------------------------------------------------------- /physics3d/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/assets/ground.png -------------------------------------------------------------------------------- /physics3d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d/main.cpp -------------------------------------------------------------------------------- /physics3d_terrain/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d_terrain/assets/block.png -------------------------------------------------------------------------------- /physics3d_terrain/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d_terrain/assets/ground.png -------------------------------------------------------------------------------- /physics3d_terrain/assets/heightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d_terrain/assets/heightmap.png -------------------------------------------------------------------------------- /physics3d_terrain/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/physics3d_terrain/main.cpp -------------------------------------------------------------------------------- /shapes/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/shapes/assets/block.png -------------------------------------------------------------------------------- /shapes/lua/main.lua: -------------------------------------------------------------------------------- 1 | --print("lua file") -------------------------------------------------------------------------------- /shapes/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/shapes/main.cpp -------------------------------------------------------------------------------- /simple_triangle/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/simple_triangle/lua/main.lua -------------------------------------------------------------------------------- /simple_triangle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/simple_triangle/main.cpp -------------------------------------------------------------------------------- /skeletal_animation/assets/CesiumMan.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/CesiumMan.glb -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /skeletal_animation/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ely_hills/readme -------------------------------------------------------------------------------- /skeletal_animation/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/assets/ground.png -------------------------------------------------------------------------------- /skeletal_animation/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/lua/main.lua -------------------------------------------------------------------------------- /skeletal_animation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/skeletal_animation/main.cpp -------------------------------------------------------------------------------- /sprites/assets/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/sprites/assets/dino.png -------------------------------------------------------------------------------- /sprites/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/sprites/lua/main.lua -------------------------------------------------------------------------------- /sprites/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/sprites/main.cpp -------------------------------------------------------------------------------- /terrain/assets/blendmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/terrain/assets/blendmap.png -------------------------------------------------------------------------------- /terrain/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/terrain/assets/block.png -------------------------------------------------------------------------------- /terrain/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/terrain/assets/ground.png -------------------------------------------------------------------------------- /terrain/assets/heightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/terrain/assets/heightmap.png -------------------------------------------------------------------------------- /terrain/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/terrain/lua/main.lua -------------------------------------------------------------------------------- /terrain/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/terrain/main.cpp -------------------------------------------------------------------------------- /tilemap/assets/bg/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/bg/BG.png -------------------------------------------------------------------------------- /tilemap/assets/object/Bush (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Bush (1).png -------------------------------------------------------------------------------- /tilemap/assets/object/Bush (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Bush (2).png -------------------------------------------------------------------------------- /tilemap/assets/object/Bush (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Bush (3).png -------------------------------------------------------------------------------- /tilemap/assets/object/Bush (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Bush (4).png -------------------------------------------------------------------------------- /tilemap/assets/object/Crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Crate.png -------------------------------------------------------------------------------- /tilemap/assets/object/Mushroom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Mushroom_1.png -------------------------------------------------------------------------------- /tilemap/assets/object/Mushroom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Mushroom_2.png -------------------------------------------------------------------------------- /tilemap/assets/object/Sign_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Sign_1.png -------------------------------------------------------------------------------- /tilemap/assets/object/Sign_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Sign_2.png -------------------------------------------------------------------------------- /tilemap/assets/object/Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Stone.png -------------------------------------------------------------------------------- /tilemap/assets/object/Tree_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Tree_1.png -------------------------------------------------------------------------------- /tilemap/assets/object/Tree_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Tree_2.png -------------------------------------------------------------------------------- /tilemap/assets/object/Tree_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/object/Tree_3.png -------------------------------------------------------------------------------- /tilemap/assets/tiles/tileset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/tiles/tileset1.png -------------------------------------------------------------------------------- /tilemap/assets/tiles/tileset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/assets/tiles/tileset2.png -------------------------------------------------------------------------------- /tilemap/lua/main.lua: -------------------------------------------------------------------------------- 1 | --print("lua file") -------------------------------------------------------------------------------- /tilemap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/tilemap/main.cpp -------------------------------------------------------------------------------- /user_interface/assets/button_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface/assets/button_disable.png -------------------------------------------------------------------------------- /user_interface/assets/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface/assets/button_normal.png -------------------------------------------------------------------------------- /user_interface/assets/paper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface/assets/paper_icon.png -------------------------------------------------------------------------------- /user_interface/assets/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface/assets/textedit.png -------------------------------------------------------------------------------- /user_interface/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface/assets/tile.png -------------------------------------------------------------------------------- /user_interface/assets/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface/assets/window.png -------------------------------------------------------------------------------- /user_interface/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface/main.cpp -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/ely_hills.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/ely_hills.shader -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/hills_bk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/hills_bk.tga -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/hills_dn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/hills_dn.tga -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/hills_ft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/hills_ft.tga -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/hills_lf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/hills_lf.tga -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/hills_rt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/hills_rt.tga -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/hills_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/hills_up.tga -------------------------------------------------------------------------------- /user_interface_3d/assets/ely_hills/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ely_hills/readme -------------------------------------------------------------------------------- /user_interface_3d/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/ground.png -------------------------------------------------------------------------------- /user_interface_3d/assets/paper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/paper_icon.png -------------------------------------------------------------------------------- /user_interface_3d/assets/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/assets/textedit.png -------------------------------------------------------------------------------- /user_interface_3d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supernovaengine/supernova-samples/HEAD/user_interface_3d/main.cpp --------------------------------------------------------------------------------