pragmagic / godot-nim

Nim bindings for Godot Engine
https://pragmagic.github.io/godot-nim/
Other
497 stars 27 forks source link

PoolArray does not support size() #94

Closed DarthvaderBn closed 3 years ago

DarthvaderBn commented 3 years ago

When it tried to write self.path_node < self.path.size(): (path is of type PoolVector3Array, and path_node is of type int)

Error: Error: attempting to call undeclared routine: 'size'

endragor commented 3 years ago

It supports len(), which is conventional for such data structures in Nim.