Set properties of ImageTexture3D when creating

This commit is contained in:
clayjohn 2023-03-06 14:57:17 -08:00
parent 3695fe5a57
commit e9d80a821d

View file

@ -1232,6 +1232,12 @@ Error ImageTexture3D::create(Image::Format p_format, int p_width, int p_height,
texture = tex;
}
format = p_format;
width = p_width;
height = p_height;
depth = p_depth;
mipmaps = p_mipmaps;
return OK;
}