Skip to content

Commit

Permalink
Reduce the lifetime for water trail emitters and treads (FAForever#6089)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas authored Apr 27, 2024
1 parent e769bac commit fb526ec
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion effects/emitters/water_move_trail_back_03_emit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ EmitterBlueprint {
LifetimeCurve = {
XRange = 5.00,
Keys = {
{ x=25.000,y=150.000,z=85.000 },
{ x=25.000,y=50.000,z=30.000 },
},
},
VelocityCurve = {
Expand Down
2 changes: 1 addition & 1 deletion effects/emitters/water_move_trail_back_04_emit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ EmitterBlueprint {
LifetimeCurve = {
XRange = 5.00,
Keys = {
{ x=25.000,y=80.000,z=85.000 },
{ x=25.000,y=35.000,z=15.000 },
},
},
VelocityCurve = {
Expand Down
4 changes: 2 additions & 2 deletions effects/emitters/water_move_wake_front_l_01_emit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ EmitterBlueprint {
EmitRateCurve = {
XRange = 50.00,
Keys = {
{ x=25.13,y=1.00,z=0.20 },
{ x=25.13,y=0.5,z=0.20 },
},
},
LifetimeCurve = {
XRange = 50.00,
Keys = {
{ x=25.00,y=120.00,z=75.00 },
{ x=25.00,y=50.00,z=25.00 },
},
},
VelocityCurve = {
Expand Down
4 changes: 2 additions & 2 deletions effects/emitters/water_move_wake_front_r_01_emit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ EmitterBlueprint {
EmitRateCurve = {
XRange = 50.00,
Keys = {
{ x=25.13,y=1.00,z=0.20 },
{ x=25.13,y=0.5,z=0.20 },
},
},
LifetimeCurve = {
XRange = 50.00,
Keys = {
{ x=25.00,y=120.00,z=75.00 },
{ x=25.00,y=50.00,z=25.00 },
},
},
VelocityCurve = {
Expand Down
8 changes: 4 additions & 4 deletions lua/defaultcomponents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,10 @@ IntelComponent = ClassSimple {
}

local TechToDuration = {
TECH1 = 1,
TECH2 = 2,
TECH3 = 3,
EXPERIMENTAL = 6,
TECH1 = 1.0,
TECH2 = 1.0,
TECH3 = 1.0,
EXPERIMENTAL = 4,
}

local TechToLOD = {
Expand Down
24 changes: 12 additions & 12 deletions units/XSL0303/XSL0303_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -97,31 +97,31 @@ UnitBlueprint{
TreadMarks = {
{
TreadMarks = "tank_treads03_albedo",
TreadMarksInterval = 0.09,
TreadMarksInterval = 0.2,
TreadMarksSizeX = 0.5,
TreadMarksSizeZ = 2,
TreadOffset = { 0, 0, 0.1 },
TreadMarksSizeZ = 3,
TreadOffset = { 0, 0, -0.5 },
},
{
TreadMarks = "tank_treads03_albedo",
TreadMarksInterval = 0.09,
TreadMarksInterval = 0.2,
TreadMarksSizeX = 0.3,
TreadMarksSizeZ = 2,
TreadOffset = { 0, 0, -1.5 },
TreadMarksSizeZ = 3,
TreadOffset = { 0, 0, -1.75 },
},
{
TreadMarks = "tank_treads03_albedo",
TreadMarksInterval = 0.09,
TreadMarksInterval = 0.2,
TreadMarksSizeX = 0.25,
TreadMarksSizeZ = 2,
TreadOffset = { -0.5, 0, -0.75 },
TreadMarksSizeZ = 3,
TreadOffset = { -0.5, 0, -1.0 },
},
{
TreadMarks = "tank_treads03_albedo",
TreadMarksInterval = 0.09,
TreadMarksInterval = 0.2,
TreadMarksSizeX = 0.25,
TreadMarksSizeZ = 2,
TreadOffset = { 0.5, 0, -0.75 },
TreadMarksSizeZ = 3,
TreadOffset = { 0.5, 0, -1.0 },
},
},
},
Expand Down

0 comments on commit fb526ec

Please sign in to comment.