godot_voxel/doc/source/editor.md

2.3 KiB

Editor

Previewing in the editor

Screemshot of the editor

Preview options

Terrains with a generator or valid stream assigned to them are able to show up in the editor when run_stream_in_editor is enabled. It is on by default.

If the generator or stream is providing a type of voxel data which is not supported by the mesher, nothing will show up. This is usually fixed by changing the mesher or its channel option, when available.

The whole terrain can be told to re-mesh or re-load by using one of the options in the Terrain menu:

Re-generate menu

!!! warning If you use a script on either VoxelGeneratorScript or VoxelStreamScript, the run_stream_in_editor option will automatically turn off and the volume will not be visible. If a script gets modified while it is used by a thread in the editor, unpredictable bugs can happen. You can force it by enabling the option, but you have to make sure no change happens. This limitation is tracked in issue177.

Camera options

Blocks will only load around the node's origin by default. If the volume is very big or uses LOD, it will not load further and concentrate detail at its center. You can override this by going in the Terrain menu and enabling Stream follow camera. This will make the terrain adapt its level of detail and blocks to be around the editor's camera, and will update as the camera moves. Turning off the option will freeze the terrain.

Stream follow camera menu

This option exists for large volumes because they need to stream blocks in and out as you move around. While this is often done in a controlled manner in a game, in the editor the camera could be moving very fast without any restriction, which can demand much more work for the CPU. You can monitor the amount of ongoing tasks in the bottom panel, while the node is selected.

Editing

Editing voxel volumes in the Godot Editor is not supported yet. This feature may be implemented in the future.

Terrains can be edited in-game using scripts and VoxelTool.