├── .gitignore ├── LICENSE ├── README.md └── addons └── smooth_move ├── LICENSE ├── demo ├── demo2D.tscn ├── demo3D.tscn ├── fps_counter.gd └── fps_counter.tscn ├── icon2d.png ├── icon2d.png.import ├── icon3d.png ├── icon3d.png.import ├── plugin.cfg ├── plugin.gd ├── smooth_move2D.gd ├── smooth_move3D.gd ├── smooth_move3D.tscn └── smooth_move_icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/README.md -------------------------------------------------------------------------------- /addons/smooth_move/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/LICENSE -------------------------------------------------------------------------------- /addons/smooth_move/demo/demo2D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/demo/demo2D.tscn -------------------------------------------------------------------------------- /addons/smooth_move/demo/demo3D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/demo/demo3D.tscn -------------------------------------------------------------------------------- /addons/smooth_move/demo/fps_counter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/demo/fps_counter.gd -------------------------------------------------------------------------------- /addons/smooth_move/demo/fps_counter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/demo/fps_counter.tscn -------------------------------------------------------------------------------- /addons/smooth_move/icon2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/icon2d.png -------------------------------------------------------------------------------- /addons/smooth_move/icon2d.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/icon2d.png.import -------------------------------------------------------------------------------- /addons/smooth_move/icon3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/icon3d.png -------------------------------------------------------------------------------- /addons/smooth_move/icon3d.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/icon3d.png.import -------------------------------------------------------------------------------- /addons/smooth_move/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/plugin.cfg -------------------------------------------------------------------------------- /addons/smooth_move/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/plugin.gd -------------------------------------------------------------------------------- /addons/smooth_move/smooth_move2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/smooth_move2D.gd -------------------------------------------------------------------------------- /addons/smooth_move/smooth_move3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/smooth_move3D.gd -------------------------------------------------------------------------------- /addons/smooth_move/smooth_move3D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/smooth_move3D.tscn -------------------------------------------------------------------------------- /addons/smooth_move/smooth_move_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babypandabear3/smooth_move/HEAD/addons/smooth_move/smooth_move_icon.png --------------------------------------------------------------------------------