├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── quick_place │ ├── plugin.cfg │ ├── plugin.gd │ └── plugin.gd.uid ├── demo ├── materials │ ├── mat_demo_grounds.tres │ └── mat_demo_object.tres ├── models │ ├── demo_grounds.blend │ ├── demo_grounds.glb │ ├── demo_grounds.glb.import │ ├── demo_grounds.tscn │ ├── demo_object_chair.blend │ ├── demo_object_chair.glb │ ├── demo_object_chair.glb.import │ ├── demo_object_chair.tscn │ ├── demo_object_cube.blend │ ├── demo_object_cube.glb │ ├── demo_object_cube.glb.import │ ├── demo_object_cube.tscn │ ├── demo_object_multishape.blend │ ├── demo_object_multishape.blend1 │ ├── demo_object_multishape.glb │ ├── demo_object_multishape.glb.import │ ├── demo_object_multishape.tscn │ ├── demo_object_sphere.blend │ ├── demo_object_sphere.glb │ ├── demo_object_sphere.glb.import │ ├── demo_object_sphere.tscn │ ├── demo_object_tree.blend │ ├── demo_object_tree.blend1 │ ├── demo_object_tree.glb │ ├── demo_object_tree.glb.import │ └── demo_object_tree.tscn └── world.tscn ├── docs ├── demo.webm ├── icon.png ├── icon.png.import ├── icon.svg ├── icon.svg.import ├── screenshot.png └── screenshot.png.import ├── icon.svg ├── icon.svg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/README.md -------------------------------------------------------------------------------- /addons/quick_place/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/addons/quick_place/plugin.cfg -------------------------------------------------------------------------------- /addons/quick_place/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/addons/quick_place/plugin.gd -------------------------------------------------------------------------------- /addons/quick_place/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c0ykuu8m3cxlq 2 | -------------------------------------------------------------------------------- /demo/materials/mat_demo_grounds.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/materials/mat_demo_grounds.tres -------------------------------------------------------------------------------- /demo/materials/mat_demo_object.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/materials/mat_demo_object.tres -------------------------------------------------------------------------------- /demo/models/demo_grounds.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_grounds.blend -------------------------------------------------------------------------------- /demo/models/demo_grounds.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_grounds.glb -------------------------------------------------------------------------------- /demo/models/demo_grounds.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_grounds.glb.import -------------------------------------------------------------------------------- /demo/models/demo_grounds.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_grounds.tscn -------------------------------------------------------------------------------- /demo/models/demo_object_chair.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_chair.blend -------------------------------------------------------------------------------- /demo/models/demo_object_chair.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_chair.glb -------------------------------------------------------------------------------- /demo/models/demo_object_chair.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_chair.glb.import -------------------------------------------------------------------------------- /demo/models/demo_object_chair.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_chair.tscn -------------------------------------------------------------------------------- /demo/models/demo_object_cube.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_cube.blend -------------------------------------------------------------------------------- /demo/models/demo_object_cube.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_cube.glb -------------------------------------------------------------------------------- /demo/models/demo_object_cube.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_cube.glb.import -------------------------------------------------------------------------------- /demo/models/demo_object_cube.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_cube.tscn -------------------------------------------------------------------------------- /demo/models/demo_object_multishape.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_multishape.blend -------------------------------------------------------------------------------- /demo/models/demo_object_multishape.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_multishape.blend1 -------------------------------------------------------------------------------- /demo/models/demo_object_multishape.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_multishape.glb -------------------------------------------------------------------------------- /demo/models/demo_object_multishape.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_multishape.glb.import -------------------------------------------------------------------------------- /demo/models/demo_object_multishape.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_multishape.tscn -------------------------------------------------------------------------------- /demo/models/demo_object_sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_sphere.blend -------------------------------------------------------------------------------- /demo/models/demo_object_sphere.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_sphere.glb -------------------------------------------------------------------------------- /demo/models/demo_object_sphere.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_sphere.glb.import -------------------------------------------------------------------------------- /demo/models/demo_object_sphere.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_sphere.tscn -------------------------------------------------------------------------------- /demo/models/demo_object_tree.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_tree.blend -------------------------------------------------------------------------------- /demo/models/demo_object_tree.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_tree.blend1 -------------------------------------------------------------------------------- /demo/models/demo_object_tree.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_tree.glb -------------------------------------------------------------------------------- /demo/models/demo_object_tree.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_tree.glb.import -------------------------------------------------------------------------------- /demo/models/demo_object_tree.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/models/demo_object_tree.tscn -------------------------------------------------------------------------------- /demo/world.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/demo/world.tscn -------------------------------------------------------------------------------- /docs/demo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/docs/demo.webm -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/docs/icon.png.import -------------------------------------------------------------------------------- /docs/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/docs/icon.svg -------------------------------------------------------------------------------- /docs/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/docs/icon.svg.import -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/screenshot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/docs/screenshot.png.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraWebdev/Godot4-QuickPlace/HEAD/project.godot --------------------------------------------------------------------------------