12
Having trouble with 3D rotations
(lemmy.world)
Welcome to the programming.dev Godot community!
This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.
Make sure to follow the Godot CoC while chatting
We have a matrix room that can be used for chatting with other members of the community here
We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent
(Not op, just an example)
I don’t know an optimal answer here. I see various discussions online about flight control variants. However, here is a simple example I set up out of curiosity. Maybe useful? I’d like to hear about what you end up with.
Project code at: https://github.com/pipehat/godot41_flight_controller_example
————————————
plane controller script:
Not shown in the code here for simplicity, but in the project I added a little bit of yaw drift when banking.
I’m sure there’s a more accurate way to simulate all this. Just messin around.
Now for no good reason I added flaps that rotate with the controls. Definitely feature creepin. I’m out! Good luck op!
Where is the call to move_and_collide? There's no code here that will translate the position.
True. Just showing roll and pitch. This is not op’s code… oh perhaps that’s the thing op really needs to see though? I’ll update the example to show it…
Oh my bad I mistook you for op.
I haven't gotten all the way there, but this was really helpful for taking some steps forward! Now I just need to figure out how to make the pitch controls rotate with the orientation of the plane. It wants to pull up or down relative to the world space it seems. Either that, or my maybe my rotation isn't rotating the local space at all?
I'll keep working on this. Thanks for your help!
I think I have it working as you describe - in the latest version on GitHub. That is more complete now than the code snippet above. See if that helps.
I'll take a look! Thanks again!