You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +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
@@ -49,9 +49,9 @@ bool GridMap::_set(const StringName &p_name, const Variant &p_value) {
|
||||
|
||||
if (d.has("cells")) {
|
||||
|
||||
PoolVector<int> cells = d["cells"];
|
||||
Vector<int> cells = d["cells"];
|
||||
int amount = cells.size();
|
||||
PoolVector<int>::Read r = cells.read();
|
||||
const int *r = cells.ptr();
|
||||
ERR_FAIL_COND_V(amount % 3, false); // not even
|
||||
cell_map.clear();
|
||||
for (int i = 0; i < amount / 3; i++) {
|
||||
@@ -103,10 +103,10 @@ bool GridMap::_get(const StringName &p_name, Variant &r_ret) const {
|
||||
|
||||
Dictionary d;
|
||||
|
||||
PoolVector<int> cells;
|
||||
Vector<int> cells;
|
||||
cells.resize(cell_map.size() * 3);
|
||||
{
|
||||
PoolVector<int>::Write w = cells.write();
|
||||
int *w = cells.ptrw();
|
||||
int i = 0;
|
||||
for (Map<IndexKey, Cell>::Element *E = cell_map.front(); E; E = E->next(), i++) {
|
||||
|
||||
@@ -439,7 +439,7 @@ bool GridMap::_octant_update(const OctantKey &p_key) {
|
||||
return true;
|
||||
}
|
||||
|
||||
PoolVector<Vector3> col_debug;
|
||||
Vector<Vector3> col_debug;
|
||||
|
||||
/*
|
||||
* foreach item in this octant,
|
||||
|
||||
Reference in New Issue
Block a user