-
Notifications
You must be signed in to change notification settings - Fork 109
Overhaul Map Drawing #460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Azrail09Code
wants to merge
20
commits into
KSPModStewards:dev
Choose a base branch
from
Azrail09Code:simplify_map_drawing
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Overhaul Map Drawing #460
Changes from 17 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
b533bb3
Copy files across from branch (not fork - I'm new to git, whoops)
Azrail09Code 17d3e5e
Prevent new saves without terrain configs loaded from freezing
Azrail09Code 6b43a61
Add debug prints to clarify whether a _ColorMap or _ColorCube was bei…
Azrail09Code 02df5a1
Use .cfg files to define custom SCANsat textures and memory map them …
Azrail09Code dc6740f
Shove references to the correct terrainConfig everywhere throughout t…
Azrail09Code 88e5227
Added reader support for heightMap and normalMap parameters, and adde…
Azrail09Code 9af3a8d
Fix biome legend entries.
Azrail09Code fe4a2c4
Make biome legend entries space more evenly.
Azrail09Code 506ef0f
Configs for altimetry broken, but colour methods fixed. Don't use thi…
Azrail09Code bf3cf1b
Changed TerrainConfig storage.
Azrail09Code a6f374b
Generate legend entries to 2sf instead of nearest 100m.
Azrail09Code 61149cd
Keep biome colours intact for RGBA defined biomes
Azrail09Code 3cebe0b
Cache Normal data in alpha channel of Visual data when caching texture.
Azrail09Code 59f0403
Texture management into its own class and drop index reference in SCA…
Azrail09Code 10cb442
Updated README to contain some information about what the hell I have…
Azrail09Code 585ff45
Add readme shields to better match existing formatting.
Azrail09Code ab17205
Switch to single reflect check on MechJeb and add texture reload for …
Azrail09Code 386f51d
Update build pipeline to KSPBuildTools 1.1.1
Azrail09Code f053d9d
Readonly fields and update main map button type from Terrain to Altim…
Azrail09Code ffc9f79
Set SCANsat version file to the right location.
Azrail09Code File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,6 +1,7 @@ | ||
| { | ||
| "NAME": "SCANsat", | ||
| "URL": "https://github.com/KSPModStewards/SCANsat/releases/latest/download/SCANsat.version", | ||
| "DOWNLOAD": "https://github.com/KSPModStewards/SCANsat/releases" | ||
|
|
||
| "VERSION": "21.1.0.0", | ||
| "KSP_VERSION": "1.12", | ||
| "KSP_VERSION_MIN": "1.12.3", | ||
| "KSP_VERSION_MAX": "1.12" | ||
| } |
This file contains hidden or 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,7 @@ | ||
| { | ||
| "NAME": "SCANsat", | ||
| "VERSION": "21.1.0.0", | ||
| "KSP_VERSION": "1.12", | ||
| "KSP_VERSION_MIN": "1.12.3", | ||
| "KSP_VERSION_MAX": "1.12" | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because these are only set in the static constructor you can mark them as
readonly. In general it's good practice to do so.