Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser

Quick Information

A godot 4.X addon that enables you to play the game at editor camera's current position in 3D.What's New:- Added the ability to specify targets using groups- Added the option to reset target's position to a default position (in future, will be able to set the default position yourself)Its a pretty simple addon. If you have used roblox studio before, there's a button called Play Here which plays the game at camera's current position. This plugin basically brings that button in godot. In simple words, it sets the player's position to the editor's camera position and then launch the current scene.
PlayAtCamPos
A godot 4.X addon that enables you to play the game at editor camera's current position in 3D.
https://github.com/AdilDevStuff/PlayAtCamPos/assets/94475453/80978472-c3d5-4cfd-a9e8-fa93ba938eec
How it works?
Its a pretty simple addon. If you have used roblox studio before, there's a button called Play Here
which plays the game at camera's current position. This plugin basically brings that button in godot. In simple words, it sets the player's position to the editor's camera position and then launch the current scene.
How To Use:
- Make sure plugin is enabled in the Project Settings > Plugins
- Add any group to your target, for example
player
- Set the
target_group
in the settings window, which is right next toplay_here
button. - Go anywhere in the scene and press
Play Here
button on top right corner of the screen. - By default, it just follows the position of the editor's viewport camera
- You can enable the
follow_rotation
option from Settings window right next to the player button to make it follow rotation as well.
Limitations:
Currently this works only with Characterbody3D as the player. Maybe i will let the user set the player's type in the future. Currently, it searches for the(NOW POSSIBLE)CharacterBody3D
class in the last edited scene and changes its position to editor's 3D viewport camera.- It just copies the position of the main viewport camera, so if there are 4 views open, it will copy the first (main) viewport camera's position or rotation.
There should be only one(NOW POSSIBLE)CharacterBody3D
in the scene to make it work currently. I will find a way to make it work with given target in future (Prob. with groups).
How To Install
- Download the
PlayAtCamPos
folder from releases. - Copy the folder to
res://addons
in your godot project. The directory should look like this ->res://addons/PlayAtCamPos
- Go to
Project settings
->Plugins
and enable the plugin there - Done!
Any contributions will be highly appreciated!
Available with MIT License
A godot 4.X addon that enables you to play the game at editor camera's current position in 3D.
What's New:
- Added the ability to specify targets using groups
- Added the option to reset target's position to a default position (in future, will be able to set the default position yourself)
Its a pretty simple addon. If you have used roblox studio before, there's a button called Play Here which plays the game at camera's current position. This plugin basically brings that button in godot. In simple words, it sets the player's position to the editor's camera position and then launch the current scene.
Reviews
Quick Information

A godot 4.X addon that enables you to play the game at editor camera's current position in 3D.What's New:- Added the ability to specify targets using groups- Added the option to reset target's position to a default position (in future, will be able to set the default position yourself)Its a pretty simple addon. If you have used roblox studio before, there's a button called Play Here which plays the game at camera's current position. This plugin basically brings that button in godot. In simple words, it sets the player's position to the editor's camera position and then launch the current scene.