Show / Hide Table of Contents

Class RotatingMovementComponent

Performs continuous rotation of a component at a specific rotation rate.

Inheritance
System.Object
UObject
ActorComponent
MovementComponent
RotatingMovementComponent
Inherited Members
MovementComponent.ConstrainDirectionToPlane(Vector)
MovementComponent.ConstrainLocationToPlane(Vector)
MovementComponent.ConstrainNormalToPlane(Vector)
MovementComponent.GetGravityZ()
MovementComponent.GetMaxSpeed()
MovementComponent.GetPhysicsVolume()
MovementComponent.GetPlaneConstraintAxisSetting()
MovementComponent.GetPlaneConstraintNormal(Vector)
MovementComponent.GetPlaneConstraintOrigin(Vector)
MovementComponent.IsExceedingMaxSpeed(Single)
MovementComponent.K2_GetMaxSpeedModifier()
MovementComponent.K2_GetModifiedMaxSpeed()
MovementComponent.K2_MoveUpdatedComponent(Vector, Rotator, Boolean, Boolean)
MovementComponent.SetPlaneConstraintAxisSetting(EPlaneConstraintAxisSetting)
MovementComponent.SetPlaneConstraintEnabled(Boolean)
MovementComponent.SetPlaneConstraintFromVectors(Vector, Vector)
MovementComponent.SetPlaneConstraintNormal(Vector)
MovementComponent.SetPlaneConstraintOrigin(Vector)
MovementComponent.SetUpdatedComponent(SceneComponent)
MovementComponent.SnapUpdatedComponentToPlane()
MovementComponent.StopMovementImmediately()
MovementComponent.UpdatedComponent
MovementComponent.UpdatedPrimitive
MovementComponent.Velocity
MovementComponent.PlaneConstraintNormal
MovementComponent.PlaneConstraintOrigin
MovementComponent.bUpdateOnlyIfRendered
MovementComponent.bAutoUpdateTickRegistration
MovementComponent.bTickBeforeOwner
MovementComponent.bAutoRegisterUpdatedComponent
MovementComponent.bConstrainToPlane
MovementComponent.bSnapToPlaneAtStart
MovementComponent.bAutoRegisterPhysicsVolumeUpdates
MovementComponent.bComponentShouldUpdatePhysicsVolume
ActorComponent.RegisterComponent()
ActorComponent.UnregisterComponent()
ActorComponent.ReceiveBeginPlay
ActorComponent.ReceiveEndPlay
ActorComponent.ReceiveTick
ActorComponent.Activate(Boolean)
ActorComponent.AddTickPrerequisiteActor(Actor)
ActorComponent.AddTickPrerequisiteComponent(ActorComponent)
ActorComponent.ComponentHasTag(Name)
ActorComponent.Deactivate()
ActorComponent.GetComponentTickInterval()
ActorComponent.GetOwner()
ActorComponent.IsActive()
ActorComponent.IsBeingDestroyed()
ActorComponent.IsComponentTickEnabled()
ActorComponent.K2_DestroyComponent(UObject)
ActorComponent.RemoveTickPrerequisiteActor(Actor)
ActorComponent.RemoveTickPrerequisiteComponent(ActorComponent)
ActorComponent.SetActive(Boolean, Boolean)
ActorComponent.SetAutoActivate(Boolean)
ActorComponent.SetComponentTickEnabled(Boolean)
ActorComponent.SetComponentTickInterval(Single)
ActorComponent.SetIsReplicated(Boolean)
ActorComponent.SetTickableWhenPaused(Boolean)
ActorComponent.SetTickGroup(Byte)
ActorComponent.ToggleActive()
ActorComponent.PrimaryComponentTick
ActorComponent.AssetUserData
ActorComponent.bReplicates
ActorComponent.bNetAddressable
ActorComponent.bAutoActivate
ActorComponent.bIsActive
ActorComponent.bEditableWhenInherited
ActorComponent.bCanEverAffectNavigation
ActorComponent.bIsEditorOnly
ActorComponent.bIsVisualizationComponent
UObject.TransientPackage
UObject.CastTo<T>(UObject)
UObject.CastTo(UObject, Type)
UObject.RemoveObject(UObject)
UObject.MakeObjectArrayField<T>(NativeArray*)
UObject.NotImplemented<T>()
UObject.Construct()
UObject.GetHashCode()
UObject.GetName()
UObject.ToString()
UObject.Name
UObject._None
UObject.None
UObject.ObjPointer
UObject.LoadObjectFromClass(Class, UObject, String, String, LoadFlags, PackageMap, Boolean)
UObject.LoadClass(Class, UObject, String, String, LoadFlags, PackageMap)
UObject.GetPropertyFor<T>(Name)
UObject.ExecuteUbergraph
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: UE4.Engine
Assembly: UE4DotNet.dll
Syntax
public class RotatingMovementComponent : MovementComponent
Remarks

Rotation can optionally be offset around a pivot point. Collision testing is not performed during movement.

Properties

| Improve this Doc View Source

bRotationInLocalSpace

Declaration
public bool bRotationInLocalSpace { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

DefaultObject

Get UE4 Default Object for this Class

Declaration
public static RotatingMovementComponent DefaultObject { get; }
Property Value
Type Description
RotatingMovementComponent
| Improve this Doc View Source

PivotTranslation

Translation of pivot point around which we rotate, relative to current rotation.

Declaration
public Vector PivotTranslation { get; set; }
Property Value
Type Description
Vector
Remarks

For instance, with PivotTranslation set to (X=+100, Y=0, Z=0), rotation will occur around the point +100 units along the local X axis from the center of the object, rather than around the object's origin (the default).

| Improve this Doc View Source

RotationRate

How fast to update roll/pitch/yaw of the component we update.

Declaration
public Rotator RotationRate { get; set; }
Property Value
Type Description
Rotator
| Improve this Doc View Source

StaticClass

Get UE4 Class

Declaration
public static Class StaticClass { get; }
Property Value
Type Description
Class

Methods

| Improve this Doc View Source

New(UObject, Name)

Spawn an object of this class

Declaration
public static RotatingMovementComponent New(UObject obj = null, Name name = default(Name))
Parameters
Type Name Description
UObject obj
Name name
Returns
Type Description
RotatingMovementComponent

Operators

| Improve this Doc View Source

Implicit(IntPtr to RotatingMovementComponent)

Convert from IntPtr to UObject

Declaration
public static implicit operator RotatingMovementComponent(IntPtr p)
Parameters
Type Name Description
System.IntPtr p
Returns
Type Description
RotatingMovementComponent
  • Improve this Doc
  • View Source
Back to top Generated by DocFX