├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── Config └── DefaultRotaryWingAircraft.ini ├── Content ├── Editor │ └── M_CubicBezier.uasset ├── HUD │ ├── BPI_AircraftHUD.uasset │ ├── BP_HUD_PostProcess.uasset │ ├── BP_HUD_UMG.uasset │ ├── Fonts │ │ ├── Oxanium-Bold.uasset │ │ ├── Oxanium-ExtraBold.uasset │ │ ├── Oxanium-ExtraLight.uasset │ │ ├── Oxanium-LICENSE.txt │ │ ├── Oxanium-Light.uasset │ │ ├── Oxanium-Medium.uasset │ │ ├── Oxanium-Regular.uasset │ │ ├── Oxanium-SemiBold.uasset │ │ └── Oxanium.uasset │ ├── Functions │ │ ├── DebugFalseColor.uasset │ │ ├── Frac_TriWav.uasset │ │ ├── MaskVec2.uasset │ │ ├── NDot.uasset │ │ ├── Remap_0-1.uasset │ │ ├── SDF_Circle.uasset │ │ ├── SDF_Rect.uasset │ │ ├── SDF_Rhombus.uasset │ │ ├── TriWav.uasset │ │ └── UserInterfaceData.uasset │ ├── MPC_HUD.uasset │ ├── PostProcess │ │ ├── Elements │ │ │ ├── M_AirspeedIndicator.uasset │ │ │ ├── M_Altimeter.uasset │ │ │ ├── M_Compass.uasset │ │ │ ├── M_PitchLadder.uasset │ │ │ └── M_VelocityIndicator.uasset │ │ ├── Functions │ │ │ ├── MF_BoxBorder.uasset │ │ │ ├── MF_CircleBorder.uasset │ │ │ ├── MF_DiamondBorder.uasset │ │ │ ├── MF_DigitAt.uasset │ │ │ ├── MF_DigitOffset.uasset │ │ │ ├── MF_HashMarks.uasset │ │ │ ├── MF_PrintValue.uasset │ │ │ ├── MF_SampleDigitsTexture.uasset │ │ │ ├── MF_SteppedHashMarks.uasset │ │ │ ├── MF_ViewportRect.uasset │ │ │ ├── MF_ViewportRect__RotationWIP.uasset │ │ │ └── Negate.uasset │ │ ├── MI_GlobalHUD.uasset │ │ └── M_GlobalHUD.uasset │ ├── Textures │ │ ├── T_CrossHairs_128.uasset │ │ ├── T_CrossHairs_64.uasset │ │ ├── T_DirectionVectors.uasset │ │ ├── T_DirectionVectors_LT3.uasset │ │ ├── T_HudDigits.uasset │ │ └── T_MeterPointer.uasset │ └── UMG │ │ ├── BaseWidgets │ │ ├── W_AxisReadout.uasset │ │ ├── W_Box.uasset │ │ ├── W_HashMarks.uasset │ │ ├── W_MeterPointer.uasset │ │ ├── W_PitchLadder.uasset │ │ ├── W_VelocityIndicator.uasset │ │ └── W_ViewportDebug.uasset │ │ ├── Materials │ │ ├── M_AxisReadout.uasset │ │ ├── M_Circle.uasset │ │ ├── M_CrossHairs.uasset │ │ ├── M_DebugRenderEffects.uasset │ │ ├── M_MeterPointer.uasset │ │ ├── M_MeterPointer_Texture.uasset │ │ ├── M_PitchLadder.uasset │ │ ├── M_Rect.uasset │ │ ├── M_SteppedHashMarks.uasset │ │ ├── M_UIAdditive.uasset │ │ ├── M_UIBloom.uasset │ │ ├── M_VelocityIndicator.uasset │ │ └── M_ViewportDebug.uasset │ │ └── WBP_AircraftHUD.uasset ├── Input │ ├── IA_Heli_AntiTorque.uasset │ ├── IA_Heli_Collective.uasset │ ├── IA_Heli_Cyclic.uasset │ └── IMC_Heli_Default.uasset └── Sample │ ├── Art │ ├── ABP_SampleHeli.uasset │ ├── LICENSE │ ├── M_SampleHeli.uasset │ ├── SK_SampleHeli.uasset │ ├── SK_SampleHeli_Phys.uasset │ ├── SK_SampleHeli_Skel.uasset │ ├── T_SampleHeli.uasset │ ├── blend-32.png │ ├── helicopter.blend │ └── helicopter.blend1 │ ├── BP_SampleHeli.uasset │ ├── BP_SampleHeliGameMode.uasset │ ├── Config │ ├── AeroTorqueCurve.uasset │ ├── AltitudePenaltyCurve.uasset │ └── DragCurve.uasset │ └── Debug │ ├── M_Slider2D.uasset │ ├── M_SolidUIColor.uasset │ ├── WBP_DebugInput.uasset │ └── WBP_Slider2D.uasset ├── LICENSE ├── README.md ├── Resources ├── Icon128.png ├── InputModifier_VirtualJoystick_v2_1.png └── UMG_HUD_v2_0.jpg ├── RotaryWingAircraft.uplugin └── Source ├── RotaryWingAircraft ├── Private │ ├── RWA │ │ ├── AnimNode_RotorController.cpp │ │ ├── HUD │ │ │ ├── RWA_RetainerBox.cpp │ │ │ └── SRetainerWidget.cpp │ │ ├── Heli.cpp │ │ ├── HeliAnimInstance.cpp │ │ ├── HeliMovement.cpp │ │ ├── Input │ │ │ ├── InputModifier_VirtualJoystick.cpp │ │ │ ├── InputModifier_VirtualThrottle.cpp │ │ │ └── InputTrigger_DecayedRelease.cpp │ │ ├── Util.cpp │ │ └── Util.h │ └── RotaryWingAircraft.cpp ├── Public │ ├── RWA │ │ ├── AnimNode_RotorController.h │ │ ├── HUD │ │ │ ├── RWA_RetainerBox.h │ │ │ └── SRetainerWidget.h │ │ ├── Heli.h │ │ ├── HeliAnimInstance.h │ │ ├── HeliMovement.h │ │ └── Input │ │ │ ├── CubicBezier.h │ │ │ ├── InputModifier_VirtualJoystick.h │ │ │ ├── InputModifier_VirtualThrottle.h │ │ │ └── InputTrigger_DecayedRelease.h │ └── RotaryWingAircraft.h └── RotaryWingAircraft.Build.cs └── RotaryWingAircraftEditor ├── Private ├── RWA │ ├── AnimGraphNode_RotorController.cpp │ ├── CubicBezierCustomization.cpp │ └── SCubicBezierViewer.cpp └── RotaryWingAircraftEditor.cpp ├── Public ├── RWA │ ├── AnimGraphNode_RotorController.h │ ├── CubicBezierCustomization.h │ ├── EditorUtil.h │ ├── SCubicBezierViewer.h │ └── YForX.hlsl └── RotaryWingAircraftEditor.h └── RotaryWingAircraftEditor.Build.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Config/DefaultRotaryWingAircraft.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Config/DefaultRotaryWingAircraft.ini -------------------------------------------------------------------------------- /Content/Editor/M_CubicBezier.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Editor/M_CubicBezier.uasset -------------------------------------------------------------------------------- /Content/HUD/BPI_AircraftHUD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/BPI_AircraftHUD.uasset -------------------------------------------------------------------------------- /Content/HUD/BP_HUD_PostProcess.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/BP_HUD_PostProcess.uasset -------------------------------------------------------------------------------- /Content/HUD/BP_HUD_UMG.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/BP_HUD_UMG.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-Bold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-Bold.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-ExtraBold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-ExtraBold.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-ExtraLight.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-ExtraLight.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-LICENSE.txt -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-Light.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-Light.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-Medium.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-Medium.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-Regular.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-Regular.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium-SemiBold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium-SemiBold.uasset -------------------------------------------------------------------------------- /Content/HUD/Fonts/Oxanium.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Fonts/Oxanium.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/DebugFalseColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/DebugFalseColor.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/Frac_TriWav.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/Frac_TriWav.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/MaskVec2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/MaskVec2.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/NDot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/NDot.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/Remap_0-1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/Remap_0-1.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/SDF_Circle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/SDF_Circle.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/SDF_Rect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/SDF_Rect.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/SDF_Rhombus.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/SDF_Rhombus.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/TriWav.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/TriWav.uasset -------------------------------------------------------------------------------- /Content/HUD/Functions/UserInterfaceData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Functions/UserInterfaceData.uasset -------------------------------------------------------------------------------- /Content/HUD/MPC_HUD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/MPC_HUD.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Elements/M_AirspeedIndicator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Elements/M_AirspeedIndicator.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Elements/M_Altimeter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Elements/M_Altimeter.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Elements/M_Compass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Elements/M_Compass.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Elements/M_PitchLadder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Elements/M_PitchLadder.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Elements/M_VelocityIndicator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Elements/M_VelocityIndicator.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_BoxBorder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_BoxBorder.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_CircleBorder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_CircleBorder.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_DiamondBorder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_DiamondBorder.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_DigitAt.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_DigitAt.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_DigitOffset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_DigitOffset.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_HashMarks.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_HashMarks.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_PrintValue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_PrintValue.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_SampleDigitsTexture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_SampleDigitsTexture.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_SteppedHashMarks.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_SteppedHashMarks.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_ViewportRect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_ViewportRect.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/MF_ViewportRect__RotationWIP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/MF_ViewportRect__RotationWIP.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/Functions/Negate.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/Functions/Negate.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/MI_GlobalHUD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/MI_GlobalHUD.uasset -------------------------------------------------------------------------------- /Content/HUD/PostProcess/M_GlobalHUD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/PostProcess/M_GlobalHUD.uasset -------------------------------------------------------------------------------- /Content/HUD/Textures/T_CrossHairs_128.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Textures/T_CrossHairs_128.uasset -------------------------------------------------------------------------------- /Content/HUD/Textures/T_CrossHairs_64.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Textures/T_CrossHairs_64.uasset -------------------------------------------------------------------------------- /Content/HUD/Textures/T_DirectionVectors.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Textures/T_DirectionVectors.uasset -------------------------------------------------------------------------------- /Content/HUD/Textures/T_DirectionVectors_LT3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Textures/T_DirectionVectors_LT3.uasset -------------------------------------------------------------------------------- /Content/HUD/Textures/T_HudDigits.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Textures/T_HudDigits.uasset -------------------------------------------------------------------------------- /Content/HUD/Textures/T_MeterPointer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/Textures/T_MeterPointer.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/BaseWidgets/W_AxisReadout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/BaseWidgets/W_AxisReadout.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/BaseWidgets/W_Box.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/BaseWidgets/W_Box.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/BaseWidgets/W_HashMarks.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/BaseWidgets/W_HashMarks.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/BaseWidgets/W_MeterPointer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/BaseWidgets/W_MeterPointer.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/BaseWidgets/W_PitchLadder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/BaseWidgets/W_PitchLadder.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/BaseWidgets/W_VelocityIndicator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/BaseWidgets/W_VelocityIndicator.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/BaseWidgets/W_ViewportDebug.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/BaseWidgets/W_ViewportDebug.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_AxisReadout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_AxisReadout.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_Circle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_Circle.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_CrossHairs.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_CrossHairs.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_DebugRenderEffects.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_DebugRenderEffects.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_MeterPointer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_MeterPointer.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_MeterPointer_Texture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_MeterPointer_Texture.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_PitchLadder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_PitchLadder.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_Rect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_Rect.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_SteppedHashMarks.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_SteppedHashMarks.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_UIAdditive.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_UIAdditive.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_UIBloom.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_UIBloom.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_VelocityIndicator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_VelocityIndicator.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/Materials/M_ViewportDebug.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/Materials/M_ViewportDebug.uasset -------------------------------------------------------------------------------- /Content/HUD/UMG/WBP_AircraftHUD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/HUD/UMG/WBP_AircraftHUD.uasset -------------------------------------------------------------------------------- /Content/Input/IA_Heli_AntiTorque.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Input/IA_Heli_AntiTorque.uasset -------------------------------------------------------------------------------- /Content/Input/IA_Heli_Collective.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Input/IA_Heli_Collective.uasset -------------------------------------------------------------------------------- /Content/Input/IA_Heli_Cyclic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Input/IA_Heli_Cyclic.uasset -------------------------------------------------------------------------------- /Content/Input/IMC_Heli_Default.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Input/IMC_Heli_Default.uasset -------------------------------------------------------------------------------- /Content/Sample/Art/ABP_SampleHeli.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/ABP_SampleHeli.uasset -------------------------------------------------------------------------------- /Content/Sample/Art/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/LICENSE -------------------------------------------------------------------------------- /Content/Sample/Art/M_SampleHeli.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/M_SampleHeli.uasset -------------------------------------------------------------------------------- /Content/Sample/Art/SK_SampleHeli.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/SK_SampleHeli.uasset -------------------------------------------------------------------------------- /Content/Sample/Art/SK_SampleHeli_Phys.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/SK_SampleHeli_Phys.uasset -------------------------------------------------------------------------------- /Content/Sample/Art/SK_SampleHeli_Skel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/SK_SampleHeli_Skel.uasset -------------------------------------------------------------------------------- /Content/Sample/Art/T_SampleHeli.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/T_SampleHeli.uasset -------------------------------------------------------------------------------- /Content/Sample/Art/blend-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/blend-32.png -------------------------------------------------------------------------------- /Content/Sample/Art/helicopter.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/helicopter.blend -------------------------------------------------------------------------------- /Content/Sample/Art/helicopter.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Art/helicopter.blend1 -------------------------------------------------------------------------------- /Content/Sample/BP_SampleHeli.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/BP_SampleHeli.uasset -------------------------------------------------------------------------------- /Content/Sample/BP_SampleHeliGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/BP_SampleHeliGameMode.uasset -------------------------------------------------------------------------------- /Content/Sample/Config/AeroTorqueCurve.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Config/AeroTorqueCurve.uasset -------------------------------------------------------------------------------- /Content/Sample/Config/AltitudePenaltyCurve.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Config/AltitudePenaltyCurve.uasset -------------------------------------------------------------------------------- /Content/Sample/Config/DragCurve.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Config/DragCurve.uasset -------------------------------------------------------------------------------- /Content/Sample/Debug/M_Slider2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Debug/M_Slider2D.uasset -------------------------------------------------------------------------------- /Content/Sample/Debug/M_SolidUIColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Debug/M_SolidUIColor.uasset -------------------------------------------------------------------------------- /Content/Sample/Debug/WBP_DebugInput.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Debug/WBP_DebugInput.uasset -------------------------------------------------------------------------------- /Content/Sample/Debug/WBP_Slider2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Content/Sample/Debug/WBP_Slider2D.uasset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/InputModifier_VirtualJoystick_v2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Resources/InputModifier_VirtualJoystick_v2_1.png -------------------------------------------------------------------------------- /Resources/UMG_HUD_v2_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Resources/UMG_HUD_v2_0.jpg -------------------------------------------------------------------------------- /RotaryWingAircraft.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/RotaryWingAircraft.uplugin -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/AnimNode_RotorController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/AnimNode_RotorController.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/HUD/RWA_RetainerBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/HUD/RWA_RetainerBox.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/HUD/SRetainerWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/HUD/SRetainerWidget.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/Heli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/Heli.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/HeliAnimInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/HeliAnimInstance.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/HeliMovement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/HeliMovement.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/Input/InputModifier_VirtualJoystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/Input/InputModifier_VirtualJoystick.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/Input/InputModifier_VirtualThrottle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/Input/InputModifier_VirtualThrottle.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/Input/InputTrigger_DecayedRelease.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/Input/InputTrigger_DecayedRelease.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/Util.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RWA/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RWA/Util.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Private/RotaryWingAircraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Private/RotaryWingAircraft.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/AnimNode_RotorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/AnimNode_RotorController.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/HUD/RWA_RetainerBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/HUD/RWA_RetainerBox.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/HUD/SRetainerWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/HUD/SRetainerWidget.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/Heli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/Heli.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/HeliAnimInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/HeliAnimInstance.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/HeliMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/HeliMovement.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/Input/CubicBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/Input/CubicBezier.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/Input/InputModifier_VirtualJoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/Input/InputModifier_VirtualJoystick.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/Input/InputModifier_VirtualThrottle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/Input/InputModifier_VirtualThrottle.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RWA/Input/InputTrigger_DecayedRelease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RWA/Input/InputTrigger_DecayedRelease.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/Public/RotaryWingAircraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/Public/RotaryWingAircraft.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraft/RotaryWingAircraft.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraft/RotaryWingAircraft.Build.cs -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Private/RWA/AnimGraphNode_RotorController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Private/RWA/AnimGraphNode_RotorController.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Private/RWA/CubicBezierCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Private/RWA/CubicBezierCustomization.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Private/RWA/SCubicBezierViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Private/RWA/SCubicBezierViewer.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Private/RotaryWingAircraftEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Private/RotaryWingAircraftEditor.cpp -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Public/RWA/AnimGraphNode_RotorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Public/RWA/AnimGraphNode_RotorController.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Public/RWA/CubicBezierCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Public/RWA/CubicBezierCustomization.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Public/RWA/EditorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Public/RWA/EditorUtil.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Public/RWA/SCubicBezierViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Public/RWA/SCubicBezierViewer.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Public/RWA/YForX.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Public/RWA/YForX.hlsl -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/Public/RotaryWingAircraftEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/Public/RotaryWingAircraftEditor.h -------------------------------------------------------------------------------- /Source/RotaryWingAircraftEditor/RotaryWingAircraftEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannymcgee/Unreal_RotaryWingAircraft/HEAD/Source/RotaryWingAircraftEditor/RotaryWingAircraftEditor.Build.cs --------------------------------------------------------------------------------