Work in progress
Godot documentation is being updated to reflect the latest changes in version
4.0
. Some documentation pages may
still state outdated information. This banner will tell you if you're reading one of such pages.
The contents of this page are up to date. If you can still find outdated information, please open an issue.
ArrayOccluder3D¶
Inherits: Occluder3D < Resource < RefCounted < Object
3D polygon shape for use with occlusion culling in OccluderInstance3D.
Description¶
ArrayOccluder3D stores an arbitrary 3D polygon shape that can be used by the engine's occlusion culling system. This is analogous to ArrayMesh, but for occluders.
See OccluderInstance3D's documentation for instructions on setting up occlusion culling.
Properties¶
|
||
|
Methods¶
void |
set_arrays ( PackedVector3Array vertices, PackedInt32Array indices ) |
Property Descriptions¶
PackedInt32Array indices = PackedInt32Array()
void set_indices ( PackedInt32Array value )
PackedInt32Array get_indices ( )
There is currently no description for this property. Please help us by contributing one!
PackedVector3Array vertices = PackedVector3Array()
void set_vertices ( PackedVector3Array value )
PackedVector3Array get_vertices ( )
There is currently no description for this property. Please help us by contributing one!
Method Descriptions¶
void set_arrays ( PackedVector3Array vertices, PackedInt32Array indices )
There is currently no description for this method. Please help us by contributing one!