├── .gitignore ├── CharacterBody3D.gd ├── LICENSE ├── MainScene.tscn ├── README.md ├── Trail3D.gd ├── icon.svg ├── icon.svg.import ├── project.godot ├── screenshot.png └── screenshot.png.import /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/.gitignore -------------------------------------------------------------------------------- /CharacterBody3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/CharacterBody3D.gd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/LICENSE -------------------------------------------------------------------------------- /MainScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/MainScene.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/README.md -------------------------------------------------------------------------------- /Trail3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/Trail3D.gd -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/project.godot -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metanoia83/Godot-4.0-Motion-Trail/HEAD/screenshot.png.import --------------------------------------------------------------------------------