├── .gitignore ├── Camera.gd ├── LICENSE ├── Look.gd ├── Main.tscn ├── README.md ├── RobotoMono[wght].ttf ├── default_env.tres ├── icon.png ├── icon.png.import ├── player.gd ├── project.godot └── screenshots ├── .gdignore ├── screenshot1.gif ├── screenshot2.png └── screenshot3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/.gitignore -------------------------------------------------------------------------------- /Camera.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/Camera.gd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/LICENSE -------------------------------------------------------------------------------- /Look.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/Look.gd -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/Main.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/README.md -------------------------------------------------------------------------------- /RobotoMono[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/RobotoMono[wght].ttf -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/icon.png.import -------------------------------------------------------------------------------- /player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/player.gd -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/project.godot -------------------------------------------------------------------------------- /screenshots/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /screenshots/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/screenshots/screenshot1.gif -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyRouddro/Godot_3D_Targeting_System/HEAD/screenshots/screenshot3.png --------------------------------------------------------------------------------