Showing results for on voxel-tools.readthedocs.io
...bool get_threaded_graphics_resource_building_enabled( )¶
Tells if the voxel engine is able to create graphics resources from different threads. This will usually be true if the current...
Tells if the voxel engine is able to create graphics resources from different threads. This will usually be true if the current...
Voxel Tools documentation¶
Voxel Tools is a C++ module for creating volumetric worlds in Godot Engine.
Explore categories on the left to get started...
Voxel Tools is a C++ module for creating volumetric worlds in Godot Engine.
Explore categories on the left to get started...
...the engine will generate meshes around this viewer. This may be enabled for the local player.
int view_distance = 128¶
How far should voxels generate...
int view_distance = 128¶
How far should voxels generate...
Overview¶
This section explains the main concepts used in this voxel engine and which parts implement them.
What voxels are¶
"Voxel" is short for...
This section explains the main concepts used in this voxel engine and which parts implement them.
What voxels are¶
"Voxel" is short for...
...sides get culled by neighbor voxels, or how it is treated by some functionality of the voxel engine.
If you create this library from...
If you create this library from...
Compressed data format¶
Some custom formats used in this engine can be wrapped in a compressed container.
Specification¶
Endianness¶
By default, little-endian.
Some custom formats used in this engine can be wrapped in a compressed container.
Specification¶
Endianness¶
By default, little-endian.
...If compression is COMPRESSION_UNIFORM
(1), the data will be a single voxel value, which means all voxels in the block have that same value...
(1), the data will be a single voxel value, which means all voxels in the block have that same value...
...Coordinates are equal to the origin of the block in voxels, divided by the size of the block + lod index using euclidean division...
...this engine makes heavy use of threads. Generators will run in one of them, so make sure you don't access the scene tree...
Quick start¶
Demo projects¶
Now that your Godot Engine has voxel support built in, you can either download one of the demos and start...
Demo projects¶
Now that your Godot Engine has voxel support built in, you can either download one of the demos and start...