Files
WulaFallenEmpireRW/Source/WulaFallenEmpire/Projectiles/NorthArcModExtension.cs
2025-11-21 16:12:36 +08:00

16 lines
493 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Verse;
namespace WulaFallenEmpire
{
public class NorthArcModExtension : DefModExtension
{
// 控制向北偏移的高度(格数),值越大弧度越高
public float northOffsetDistance = 10f;
// 控制曲线的形状,值越大曲线越陡峭
public float curveSteepness = 1f;
// 是否使用弧形轨迹默认为true如果为false则使用直线轨迹
public bool useArcTrajectory = true;
}
}