Add proper type to most public API uses of Array
This commit is contained in:
parent
79f82bd742
commit
f8ef38efed
26 changed files with 156 additions and 165 deletions
|
|
@ -178,8 +178,8 @@ public:
|
|||
void set_collision_layer_bit(int p_bit, bool p_value);
|
||||
bool get_collision_layer_bit(int p_bit) const;
|
||||
|
||||
Array get_overlapping_bodies() const; //function for script
|
||||
Array get_overlapping_areas() const; //function for script
|
||||
TypedArray<Node2D> get_overlapping_bodies() const; //function for script
|
||||
TypedArray<Area2D> get_overlapping_areas() const; //function for script
|
||||
|
||||
bool overlaps_area(Node *p_area) const;
|
||||
bool overlaps_body(Node *p_body) const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue