-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
!README.md | ||
!HappyBug/** | ||
!Engine/Classes/RUSeqEvent_CinematicActivated.uc | ||
!Otherland/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
class OLBaseSplineActor extends Actor; | ||
|
||
enum EPathPortionType | ||
{ | ||
PPT_Acceleration, | ||
PPT_Braking, | ||
PPT_MAX | ||
}; | ||
|
||
struct native CurvePointStruct | ||
{ | ||
var() Vector Point; | ||
var() Vector Tangent; | ||
|
||
structdefaultproperties | ||
{ | ||
Point=(X=0,Y=0,Z=0) | ||
Tangent=(X=0,Y=0,Z=0) | ||
} | ||
}; | ||
|
||
struct native PathPortionStruct | ||
{ | ||
var() float PathPortionStart; | ||
var() float PathPortionEnd; | ||
var() MaterialInterface PathPortionMaterial; | ||
var transient MaterialInstanceConstant PathPortionMaterialInst; | ||
var() OLBaseSplineActor.EPathPortionType PathPortionType; | ||
var() float Value; | ||
|
||
structdefaultproperties | ||
{ | ||
PathPortionStart=0 | ||
PathPortionEnd=0 | ||
PathPortionMaterial=none | ||
PathPortionMaterialInst=none | ||
PathPortionType=PPT_Acceleration | ||
Value=100 | ||
} | ||
}; | ||
|
||
var const Guid UniqueGUID; | ||
var const Guid TravelTargetGUID; | ||
var(Spline) array<CurvePointStruct> ControlPoints; | ||
var(Spline) array<PathPortionStruct> PathPortions; | ||
var(Spline) float SurfingSpeed; | ||
var(Spline) float SplineTransitAcceleration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class OLFlightTubeActor extends OLBaseSplineActor; | ||
|
||
var(FlightTube) float RingDensity; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters