Skip to content

Commit

Permalink
Merge pull request #669 from MOARdV/master
Browse files Browse the repository at this point in the history
...And D3D11
  • Loading branch information
MOARdV authored May 23, 2018
2 parents fadbce1 + 1262526 commit a56ed1a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GameData/JSI/RasterPropMonitor/RasterPropMonitor.version
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"VERSION": {
"MAJOR": 0,
"MINOR": 30,
"PATCH": 3
"PATCH": 4
},
"KSP_VERSION": {
"MAJOR": 1,
Expand Down
2 changes: 1 addition & 1 deletion RasterPropMonitor.sln
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,6 @@ Global
$36.inheritsSet = Mono
$36.inheritsScope = text/plain
$36.scope = text/plain
version = 0.30.3
version = 0.30.4
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion RasterPropMonitor/Core/RasterPropMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public void Start()
screenMat = internalProp.FindModelTransform(screenTransform).GetComponent<Renderer>().material;

bool manuallyInvertY = false;
if (SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 9") || SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 12"))
if (SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 9") || SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 11") || SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 12"))
{
manuallyInvertY = (UnityEngine.QualitySettings.antiAliasing > 0);
}
Expand Down
2 changes: 1 addition & 1 deletion RasterPropMonitor/Core/TextRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public TextRenderer(List<Texture2D> fontTexture, Vector2 fontLetterSize, string
}

manuallyInvertY = false;
if (SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 9") || SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 12"))
if (SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 9") || SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 11") || SystemInfo.graphicsDeviceVersion.StartsWith("Direct3D 12"))
{
manuallyInvertY = (UnityEngine.QualitySettings.antiAliasing > 0);
}
Expand Down
2 changes: 1 addition & 1 deletion SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
// Revision number is altered automatically.
[assembly: AssemblyVersion("0.30.3.*")]
[assembly: AssemblyVersion("0.30.4.*")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down

0 comments on commit a56ed1a

Please sign in to comment.