Skip to content

Commit b912d7a

Browse files
XML Documentation
1 parent 29627e0 commit b912d7a

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

bHapticsLib/RotationOption.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ public RotationOption(float offsetAngleX = 0, float offsetY = 0)
1313
OffsetY = offsetY;
1414
}
1515

16+
/// <value>Rotation Angle X Axis</value>
1617
public float OffsetAngleX
1718
{
1819
get => node["offsetAngleX"].AsFloat;
1920
set => node["offsetAngleX"] = value;
2021
}
2122

23+
/// <value>Rotation Y Axis</value>
2224
public float OffsetY
2325
{
2426
get => node["offsetY"].AsFloat;

bHapticsLib/ScaleOption.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ public ScaleOption(float intensity = 1f, float duration = 1f)
1313
Duration = duration;
1414
}
1515

16+
/// <value>Scale of Intensity, default is 1x</value>
1617
public float Intensity
1718
{
1819
get => node["intensity"].AsFloat;
1920
set => node["intensity"] = value;
2021
}
2122

23+
/// <value>Scale of Duration of Playback, default is 1x</value>
2224
public float Duration
2325
{
2426
get => node["duration"].AsFloat;

bHapticsLib/bHapticsLib.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)