-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP * WIP * ignores .DS_Store files * adds fogged check, fixes red color problem * in before adding settings, added ColorBed shader * color picker wip * color picker proto done * restructured settings * cleanup * wip * renaming * hickup? * wip * wip * working implementation * works! * almost done * near release * v3.0.0.0
- Loading branch information
Showing
96 changed files
with
4,866 additions
and
631 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"files.exclude": { | ||
"Source/obj": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build debug", | ||
"presentation": { | ||
"reveal": "silent", | ||
"close": true | ||
}, | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"build" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "build release", | ||
"presentation": { | ||
"reveal": "silent", | ||
"close": true | ||
}, | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"build", | ||
"-c", | ||
"Release" | ||
], | ||
"problemMatcher": "$msCompile", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
Binary file not shown.
Empty file.
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,33 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ModMetaData> | ||
<name>Camera+</name> | ||
<author>Andreas Pardeike</author> | ||
<supportedVersions> | ||
<li>1.0</li> | ||
<li>1.1</li> | ||
<li>1.2</li> | ||
<li>1.3</li> | ||
<li>1.4</li> | ||
<li>1.5</li> | ||
</supportedVersions> | ||
<modDependencies> | ||
<li> | ||
<packageId>brrainz.harmony</packageId> | ||
<displayName>Harmony</displayName> | ||
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl> | ||
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl> | ||
</li> | ||
</modDependencies> | ||
<packageId>brrainz.cameraplus</packageId> | ||
<modVersion>2.7.5.0</modVersion> | ||
<steamAppId>867467808</steamAppId> | ||
<url>https://github.com/pardeike/CameraPlus</url> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ModMetaData> | ||
<name>Camera+</name> | ||
<author>Andreas Pardeike</author> | ||
<supportedVersions> | ||
<li>1.0</li> | ||
<li>1.1</li> | ||
<li>1.2</li> | ||
<li>1.3</li> | ||
<li>1.4</li> | ||
<li>1.5</li> | ||
</supportedVersions> | ||
<modDependencies> | ||
<li> | ||
<packageId>brrainz.harmony</packageId> | ||
<displayName>Harmony</displayName> | ||
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl> | ||
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl> | ||
</li> | ||
</modDependencies> | ||
<packageId>brrainz.cameraplus</packageId> | ||
<modVersion>3.0.0.0</modVersion> | ||
<steamAppId>867467808</steamAppId> | ||
<url>https://github.com/pardeike/CameraPlus</url> | ||
<description>You want more zoom and different paning? | ||
|
||
Powered by Harmony Patch Library | ||
|
||
Andreas Pardeike | ||
Email: [email protected] | ||
Steam: pardeike | ||
Twitter: @pardeike</description> | ||
Twitter: @pardeike</description> | ||
</ModMetaData> |
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
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,11 +1,9 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<ModName>Camera+</ModName> | ||
<ModFileName>CameraPlus</ModFileName> | ||
<Repository>https://github.com/pardeike/CameraPlus</Repository> | ||
<ModVersion>2.7.5.0</ModVersion> | ||
<ProjectGuid>{AC5EE7A1-16EA-498D-B21A-83ACF78F0E5A}</ProjectGuid> | ||
</PropertyGroup> | ||
|
||
</Project> | ||
<PropertyGroup> | ||
<ModName>Camera+</ModName> | ||
<ModFileName>CameraPlus</ModFileName> | ||
<Repository>https://github.com/pardeike/CameraPlus</Repository> | ||
<ModVersion>3.0.0.0</ModVersion> | ||
<ProjectGuid>{AC5EE7A1-16EA-498D-B21A-83ACF78F0E5A}</ProjectGuid> | ||
</PropertyGroup> | ||
</Project> |
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
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
Oops, something went wrong.