You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +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
@@ -1370,9 +1370,9 @@ GridMapEditor::GridMapEditor(EditorNode *p_editor) {
|
||||
{
|
||||
// Selection mesh create.
|
||||
|
||||
PoolVector<Vector3> lines;
|
||||
PoolVector<Vector3> triangles;
|
||||
PoolVector<Vector3> square[3];
|
||||
Vector<Vector3> lines;
|
||||
Vector<Vector3> triangles;
|
||||
Vector<Vector3> square[3];
|
||||
|
||||
for (int i = 0; i < 6; i++) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user