Jump to content

Need help with a simple rotate script


DirtyDan86

Recommended Posts

Hi everyone,

I want to rotate a static object 180° in game by pressing a button and rotate it back when pressing again.

Actually very simple, but all I found doesn't work for Starfield.

I found a YouTube video for Fallout explaining Rotationhelpers and the following script attached.

I can compile this one, but it has no effect in game, so I guess the variables are wrong or something? Or is it that the Rotationhelpers in Starfield are different? I can't find a single one that is showing the degrees like the ones in Fallout seem to do.

  Reveal hidden contents

 

Another one is from Darkfox and I'd love to use it as it's very versatile, but it's for Skyrim and I can't even compile it in Starfield CK:

 

  Reveal hidden contents

 

If anyone could tell me how I could make this usable in Starfield OR tell me a simple and easy script to rotate and rotate back an object by button activation, I'd greatly appreciate it.

Link to comment
Share on other sites

This script would rotate the reference the script is attached to immediatelly (without visible translation).

Scriptname RotateHelperScript extends ObjectReference Const			; attach this script to your Static reference, so the ObjectReference of the Static base form

Float Property fDegrees = 180.0 Auto Const


Event OnActivate(ObjectReference akActionRef)
	If akActionRef = Game.GetPlayer()		; player activated this Static reference
		Float fOriginalAngleZ = Self.GetAngleZ()
		Self.SetAngleZ(fOriginalAngleZ + fDegrees)
	EndIf
EndEvent

 

Link to comment
Share on other sites

@LarannKiar

Thank you very much for the help. Unfortunately I'm getting the error "no viable alternative at input '=' " when trying to compile the script.

And I think I didn't express myself properly, because what I'm looking for would actually be a translation and at best being able to set the rotation speed.

I want to use it for a (decorational) ship weapon that I can tilt out of the top of the hab with a slow animation by button press and tilt it back to its base with another button press. So the 2 scripts I posted above would do that perfectly (I guess). I just don't know enough about scripting to know how to change them to work in Starfield - OR how to use your script and add translation and rotation speed.

 

Link to comment
Share on other sites

  • 3 weeks later...

How about using the moving platform system?  It would be like setting it up like a platform elevator, but have the start floor and eld floor be in the same place, just turned 180deg.  That should make it turn translationally, and you can adjust the speed in the Moving platofrm anchor marker script.  You could make it havve a third "floor" that's rotated 180 from that.  I don't know how to make it go back to the first "floor" position using the same "up" button, but you could have two buttons, set as "up" and "down" (back and forth) buttons.   You could use translational markers set at 45deg in case it's turning the wrong way back and forth (there might be rotation direction parameters in the platform or rotation marker scripts, I dunno)
There's a video on how to do this: 

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

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