Hi, why some properties missing from autocomplete? In exemple below, why "name" is missing??
Code autocomplete problem
- Edited
- Best Answerset by Max19871
This is is because ray.get_collider()
returns an Object
and the "name" property is a Node
property, not an Object
property.
The autocomplete can only give you hints for what it knows the function returns.