mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Memory pool vectors (DVector) have been enormously simplified in code, and renamed to PoolVector
This commit is contained in:
@@ -169,9 +169,9 @@ AABB ReflectionProbe::get_aabb() const {
|
||||
aabb.size=origin_offset+extents;
|
||||
return aabb;
|
||||
}
|
||||
DVector<Face3> ReflectionProbe::get_faces(uint32_t p_usage_flags) const {
|
||||
PoolVector<Face3> ReflectionProbe::get_faces(uint32_t p_usage_flags) const {
|
||||
|
||||
return DVector<Face3>();
|
||||
return PoolVector<Face3>();
|
||||
}
|
||||
|
||||
void ReflectionProbe::_validate_property(PropertyInfo& property) const {
|
||||
|
||||
Reference in New Issue
Block a user