Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
Texture3D¶
Inherits: TextureLayered < Resource < Reference < Object
Texture with 3 dimensions.
Descripción¶
Texture3D is a 3-dimensional Texture that has a width, height, and depth. See also TextureArray.
Note: Texture3D
s can only be sampled in shaders in the GLES3 backend. In GLES2, their data can be accessed via scripting, but there is no way to render them in a hardware-accelerated manner.
Propiedades¶
data |
|
|
flags |
|
Métodos¶
void |
create ( int width, int height, int depth, Format format, int flags=4 ) |
Descripciones de Métodos¶
Creates the Texture3D with specified width
, height
, and depth
. See Format for format
options. See Flags enumerator for flags
options.