I don’t get it i typed in the code to create ProcessRotation but it didn’t work. I need some help
Hi Tris,
Welcome to our community!
Have you already compared your code to the Lecture Project Changes which can be found in the Resources of this lecture? Make sure that the curly brackets are at the correct position.
See also:
- Forum User Guides : How to mark a topic as solved
Welcome to the community @Tris
Your code is a bit wrong. There are 2 issues here:
-
You are trying to call the
ProcessRotation
function, but it doesn’t exist. This is because your function has a typo and is calledProcessRoatation
. Once this is fixed you still have an issue because -
Your
ProcessRotation
function is local to theProcessThrust
function. What that means is that the function is defined insideProcessThrust
and is scoped (only available) to other things insideProcessThrust
. You need to moveProcessRotation
out ofProcessThrust
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.