-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
some cleanup, add more spline import controls
- Loading branch information
1 parent
2b6494f
commit 22b175e
Showing
10 changed files
with
102 additions
and
75 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"version": "2024.07.18", | ||
"version": "2024.08.10", | ||
"versionName": "To stay on the current version, disable:\nOptions -> Check For Updates on Startup" | ||
} |
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
34 changes: 29 additions & 5 deletions
34
HeroesPowerPlant/ShadowSplineEditor/ShadowSplineMenu.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
26 changes: 13 additions & 13 deletions
26
...adowSplineEditor/ShadowSplineSec5Bytes.cs → ...nt/ShadowSplineEditor/ShadowSplinePOF0.cs
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
namespace HeroesPowerPlant.ShadowSplineEditor | ||
{ | ||
public class ShadowSplineSec5Bytes | ||
{ | ||
public byte slot1 { get; set; } | ||
public byte slot2 { get; set; } | ||
public bool noSlot2 { get; set; } | ||
|
||
public override string ToString() | ||
{ | ||
return $"S1: {slot1} | S2: {slot2} | noS2: {noSlot2}"; | ||
} | ||
} | ||
namespace HeroesPowerPlant.ShadowSplineEditor | ||
{ | ||
public class ShadowSplinePOF0 | ||
{ | ||
public byte slot1 { get; set; } | ||
public byte slot2 { get; set; } | ||
public bool noSlot2 { get; set; } | ||
|
||
public override string ToString() | ||
{ | ||
return $"S1: {slot1} | S2: {slot2} | noS2: {noSlot2}"; | ||
} | ||
} | ||
} |
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