Jump to content

[LE] Math Involving Global and Local Rotations


ajs52698

Recommended Posts

The available functions that can be used to rotate Object references only do so using global rotations. How can one rotate an object's local rotation along say its X axis, using global rotations? I've attached a rough representation of what i'd like to accomplish.

 

And yes, i have searched for information on this and have found something : https://www.creationkit.com/index.php?title=Setting_Local_Rotation, but have had no success with this. If i'm mistaken, any help is appreciated!

Edited by ajs52698
Link to comment
Share on other sites

If you not have seen already https://www.creationkit.com/index.php?title=SetAngle_-_ObjectReference

 

two vanilla sample scripts as follow, only copy and paste

 

SovngardeStatueScript

  Reveal hidden contents

 

 

MiddenEnchantedSkull

  Reveal hidden contents

 

Edited by ReDragon2013
Link to comment
Share on other sites

I had a similar problem with one custom activator that i needed to have such rotations, but i encounter a few problems with the script creation, so i ended up replacing an animated vanilla mesh with my custom mesh and using PlayAnimation() + TranslateTo() the edited vanilla object to have the result i needed.


Although, i did manage to achieve a relative close to the desire first approach (using just one script), by using the logic of the following script (example), but i didn't finish it cause i had a much more satisfying result with my second approach (smaller script + more flexible).





I hope it helps...



Edit: Typo... + Apparently we post the same thing (more or less) at the same time....

Edited by maxarturo
Link to comment
Share on other sites

based on that image you just want to rotate around the z axis... just add or subtract to the z angle... this type of code would work... you dont need any trig functions to rotate around the z axis (change heading)

Float Function GetNewZAngle(ObjectReference o,  Float rotate)
    Float z = o.GetAngleZ()
    z += rotate
    If z >= 360
        z -= 360
    ElseIf z < 0
        z += 360
    EndIf
    Return z
EndFunction

you could do that for any angle... you only really need the trig if you needed to actually move the object's position... some game engines will even correct the heading if you give it a negative value or value >= 360

Link to comment
Share on other sites

You

 

  On 12/10/2019 at 9:53 PM, maxarturo said:

 

I had a similar problem with one custom activator that i needed to have such rotations, but i encounter a few problems with the script creation, so i ended up replacing an animated vanilla mesh with my custom mesh and using PlayAnimation() + TranslateTo() the edited vanilla object to have the result i needed.
Although, i did manage to achieve a relative close to the desire first approach (using just one script), by using the logic of the following script (example), but i didn't finish it cause i had a much more satisfying result with my second approach (smaller script + more flexible).
I hope it helps...
Edit: Typo... + Apparently we post the same thing (more or less) at the same time....

 

Your second link is to the set angle wiki page, is this intended? I assumed after reading your post that you were trying to link your script as an example.

Edited by ajs52698
Link to comment
Share on other sites

I wasn't trying to post a script, they are just links containing the relevant info.

* It would be much more easier for the reader that's trying to assist you, if you explain in detail what you are trying to do.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...