Skip to content

Commit 29a401e

Browse files
move Animate module into main dll
1 parent 763df5c commit 29a401e

9 files changed

Lines changed: 27 additions & 126 deletions

File tree

GameData/ASP/TheWriteStuff/Parts/SignPosts/ASP_Signpost_Circle.cfg

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ NODE
4141

4242
MODULE
4343
{
44-
name = TWSAnimate
44+
name = ASPEvaRename
45+
}
46+
47+
MODULE
48+
{
49+
name = ASPAnimate
4550
animationName = extend
4651
startEventGUIName = Extend
4752
endEventGUIName = Retract

GameData/ASP/TheWriteStuff/Parts/SignPosts/ASP_Signpost_Inverted_Triangle.cfg

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ NODE
4141

4242
MODULE
4343
{
44-
name = TWSAnimate
44+
name = ASPEvaRename
45+
}
46+
47+
MODULE
48+
{
49+
name = ASPAnimate
4550
animationName = extend
4651
startEventGUIName = Extend
4752
endEventGUIName = Retract

GameData/ASP/TheWriteStuff/Parts/SignPosts/ASP_Signpost_Rectangle.cfg

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ NODE
4141

4242
MODULE
4343
{
44-
name = TWSAnimate
44+
name = ASPEvaRename
45+
}
46+
47+
MODULE
48+
{
49+
name = ASPAnimate
4550
animationName = extend
4651
startEventGUIName = Extend
4752
endEventGUIName = Retract

GameData/ASP/TheWriteStuff/Parts/SignPosts/ASP_Signpost_Triangle.cfg

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ NODE
4141

4242
MODULE
4343
{
44-
name = TWSAnimate
44+
name = ASPEvaRename
45+
}
46+
47+
MODULE
48+
{
49+
name = ASPAnimate
4550
animationName = extend
4651
startEventGUIName = Extend
4752
endEventGUIName = Retract

Source/TWSAnimate/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.

Source/TWSAnimate/TWSAnimate.csproj

Lines changed: 0 additions & 79 deletions
This file was deleted.

Source/TheWriteStuff.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheWriteStuff", "TheWriteSt
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TWSPainter", "TWSPainter\TWSPainter.csproj", "{BBA46433-C09B-4819-A207-2A4C2BEC8828}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TWSAnimate", "TWSAnimate\TWSAnimate.csproj", "{40B9E43C-FE10-49B6-BA58-864A1E48028D}"
11-
EndProject
1210
Global
1311
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1412
Debug|Any CPU = Debug|Any CPU
@@ -23,10 +21,6 @@ Global
2321
{BBA46433-C09B-4819-A207-2A4C2BEC8828}.Debug|Any CPU.Build.0 = Debug|Any CPU
2422
{BBA46433-C09B-4819-A207-2A4C2BEC8828}.Release|Any CPU.ActiveCfg = Release|Any CPU
2523
{BBA46433-C09B-4819-A207-2A4C2BEC8828}.Release|Any CPU.Build.0 = Release|Any CPU
26-
{40B9E43C-FE10-49B6-BA58-864A1E48028D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{40B9E43C-FE10-49B6-BA58-864A1E48028D}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{40B9E43C-FE10-49B6-BA58-864A1E48028D}.Release|Any CPU.ActiveCfg = Release|Any CPU
29-
{40B9E43C-FE10-49B6-BA58-864A1E48028D}.Release|Any CPU.Build.0 = Release|Any CPU
3024
EndGlobalSection
3125
GlobalSection(SolutionProperties) = preSolution
3226
HideSolutionNode = FALSE
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace ASP
88
{
9-
public class TWSAnimate : ModuleAnimateGeneric
9+
public class ASPAnimate : ModuleAnimateGeneric
1010
{
1111
[KSPEvent(name = "RaiseMaxHeightQuick", guiName = "Raise Max Height ++", active = true, guiActive = false, guiActiveEditor = false, guiActiveUnfocused = true, externalToEVAOnly = true)]
1212
public void RaiseMaxHeightQuick()

Source/TheWriteStuff/TheWriteStuff.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
</Reference>
5353
</ItemGroup>
5454
<ItemGroup>
55+
<Compile Include="ASPAnimate.cs" />
56+
<Compile Include="ASPEvaRename.cs" />
5557
<Compile Include="ASPFlatPlateScale.cs" />
5658
<Compile Include="ASPTextureEdit.cs" />
5759
<Compile Include="BitmapDecal.cs" />

0 commit comments

Comments
 (0)