The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

0 votes

I am trying to get my planes linear velocity but i'm getting the error "Invalid get index 'linear_velocity' (on base: 'Spatial (Plane.gd)'.

my plane's variable is:

onready var target: Spatial = getnode(targetpath)

(target path goes to the planes spatial node)

And here's the line that breaks:

var targetvelocity = target.linearvelocity

I'm pretty new to gdscript so help is much appriciated and it might just be something very simple that im missing :)

in Engine by (15 points)

A Spatial node doesn't have the linear_velocity property; only a RigidBody node has the linear_velocity property.

1 Answer

+1 vote
Best answer

I think Ertain gave the answer: velocities and other physics based parameters are unknown to Spatial. You would need to query the child RigidBody for that or if none available start using them for your physics.

by (74 points)
selected by
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.