├── LICENSE ├── LOD_Mesh.tscn ├── Main.tscn ├── Player.tscn ├── README.md ├── default_env.tres ├── font ├── license.txt ├── read me.txt └── rm_almanack.ttf ├── icon.png ├── icon.png.import ├── meshes ├── FPC_Base_Mesh.dae ├── FPC_Base_Mesh.dae.import ├── LOD_mesh_00.obj ├── LOD_mesh_00.obj.import ├── LOD_mesh_01.obj ├── LOD_mesh_01.obj.import ├── LOD_mesh_02.obj └── LOD_mesh_02.obj.import ├── project.godot ├── scripts ├── LOD_Mesh.gd └── player_scripts │ ├── DEBUG_Elements │ ├── Coll_Sphere.gd │ └── Pos_Visual_Axis.gd │ ├── GUI_Elements │ ├── Crosshair.gd │ ├── DEBUG.gd │ └── Debug_Label.gd │ └── Player.gd └── textures └── HUD ├── crosshair.png ├── crosshair.png.import ├── crosshair_usable.png └── crosshair_usable.png.import /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /LOD_Mesh.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/LOD_Mesh.tscn -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/Main.tscn -------------------------------------------------------------------------------- /Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/Player.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/README.md -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/default_env.tres -------------------------------------------------------------------------------- /font/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/font/license.txt -------------------------------------------------------------------------------- /font/read me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/font/read me.txt -------------------------------------------------------------------------------- /font/rm_almanack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/font/rm_almanack.ttf -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/icon.png.import -------------------------------------------------------------------------------- /meshes/FPC_Base_Mesh.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/FPC_Base_Mesh.dae -------------------------------------------------------------------------------- /meshes/FPC_Base_Mesh.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/FPC_Base_Mesh.dae.import -------------------------------------------------------------------------------- /meshes/LOD_mesh_00.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/LOD_mesh_00.obj -------------------------------------------------------------------------------- /meshes/LOD_mesh_00.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/LOD_mesh_00.obj.import -------------------------------------------------------------------------------- /meshes/LOD_mesh_01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/LOD_mesh_01.obj -------------------------------------------------------------------------------- /meshes/LOD_mesh_01.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/LOD_mesh_01.obj.import -------------------------------------------------------------------------------- /meshes/LOD_mesh_02.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/LOD_mesh_02.obj -------------------------------------------------------------------------------- /meshes/LOD_mesh_02.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/meshes/LOD_mesh_02.obj.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/project.godot -------------------------------------------------------------------------------- /scripts/LOD_Mesh.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/scripts/LOD_Mesh.gd -------------------------------------------------------------------------------- /scripts/player_scripts/DEBUG_Elements/Coll_Sphere.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/scripts/player_scripts/DEBUG_Elements/Coll_Sphere.gd -------------------------------------------------------------------------------- /scripts/player_scripts/DEBUG_Elements/Pos_Visual_Axis.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/scripts/player_scripts/DEBUG_Elements/Pos_Visual_Axis.gd -------------------------------------------------------------------------------- /scripts/player_scripts/GUI_Elements/Crosshair.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/scripts/player_scripts/GUI_Elements/Crosshair.gd -------------------------------------------------------------------------------- /scripts/player_scripts/GUI_Elements/DEBUG.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/scripts/player_scripts/GUI_Elements/DEBUG.gd -------------------------------------------------------------------------------- /scripts/player_scripts/GUI_Elements/Debug_Label.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/scripts/player_scripts/GUI_Elements/Debug_Label.gd -------------------------------------------------------------------------------- /scripts/player_scripts/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/scripts/player_scripts/Player.gd -------------------------------------------------------------------------------- /textures/HUD/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/textures/HUD/crosshair.png -------------------------------------------------------------------------------- /textures/HUD/crosshair.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/textures/HUD/crosshair.png.import -------------------------------------------------------------------------------- /textures/HUD/crosshair_usable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/textures/HUD/crosshair_usable.png -------------------------------------------------------------------------------- /textures/HUD/crosshair_usable.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leiget/LOD-Simple-Example/HEAD/textures/HUD/crosshair_usable.png.import --------------------------------------------------------------------------------