You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
PoolVector is gone, replaced by Vector
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
This commit is contained in:
committed by
Juan Linietsky
parent
fb8c93c10b
commit
3205a92ad8
@@ -1406,7 +1406,7 @@ void RasterizerSceneRD::gi_probe_update(RID p_probe, bool p_update_light_instanc
|
||||
|
||||
if (octree_size != Vector3i()) {
|
||||
//can create a 3D texture
|
||||
PoolVector<int> levels = storage->gi_probe_get_level_counts(gi_probe->probe);
|
||||
Vector<int> levels = storage->gi_probe_get_level_counts(gi_probe->probe);
|
||||
|
||||
RD::TextureFormat tf;
|
||||
tf.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
|
||||
|
||||
Reference in New Issue
Block a user