Last active
October 18, 2018 17:50
-
-
Save neikeq/f0f5a205df668ade8958283f01456eb3 to your computer and use it in GitHub Desktop.
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
| diff -ruN old/GodotSharp/Core/GD_constants.cs new/GodotSharp/Core/GD_constants.cs | |
| --- old/GodotSharp/Core/GD_constants.cs 2018-10-18 17:52:23.978260000 +0200 | |
| +++ new/GodotSharp/Core/GD_constants.cs 2018-10-18 19:29:12.507585000 +0200 | |
| @@ -585,43 +585,43 @@ | |
| /// <summary> | |
| /// Number 0 | |
| /// </summary> | |
| - Y0 = 48, | |
| + Key0 = 48, | |
| /// <summary> | |
| /// Number 1 | |
| /// </summary> | |
| - Y1 = 49, | |
| + Key1 = 49, | |
| /// <summary> | |
| /// Number 2 | |
| /// </summary> | |
| - Y2 = 50, | |
| + Key2 = 50, | |
| /// <summary> | |
| /// Number 3 | |
| /// </summary> | |
| - Y3 = 51, | |
| + Key3 = 51, | |
| /// <summary> | |
| /// Number 4 | |
| /// </summary> | |
| - Y4 = 52, | |
| + Key4 = 52, | |
| /// <summary> | |
| /// Number 5 | |
| /// </summary> | |
| - Y5 = 53, | |
| + Key5 = 53, | |
| /// <summary> | |
| /// Number 6 | |
| /// </summary> | |
| - Y6 = 54, | |
| + Key6 = 54, | |
| /// <summary> | |
| /// Number 7 | |
| /// </summary> | |
| - Y7 = 55, | |
| + Key7 = 55, | |
| /// <summary> | |
| /// Number 8 | |
| /// </summary> | |
| - Y8 = 56, | |
| + Key8 = 56, | |
| /// <summary> | |
| /// Number 9 | |
| /// </summary> | |
| - Y9 = 57, | |
| + Key9 = 57, | |
| /// <summary> | |
| /// : key | |
| /// </summary> | |
| @@ -1722,33 +1722,33 @@ | |
| /// <summary> | |
| /// Flag for normal method | |
| /// </summary> | |
| - _Normal = 1, | |
| + Normal = 1, | |
| /// <summary> | |
| /// Flag for editor method | |
| /// </summary> | |
| - _Editor = 2, | |
| + Editor = 2, | |
| /// <summary> | |
| /// </summary> | |
| - _Noscript = 4, | |
| + Noscript = 4, | |
| /// <summary> | |
| /// Flag for constant method | |
| /// </summary> | |
| - _Const = 8, | |
| + Const = 8, | |
| /// <summary> | |
| /// </summary> | |
| - _Reverse = 16, | |
| + Reverse = 16, | |
| /// <summary> | |
| /// Flag for virtual method | |
| /// </summary> | |
| - _Virtual = 32, | |
| + Virtual = 32, | |
| /// <summary> | |
| /// Flag for method from script | |
| /// </summary> | |
| - _FromScript = 64, | |
| + FromScript = 64, | |
| /// <summary> | |
| /// Default method flags | |
| /// </summary> | |
| - SDefault = 1 | |
| + Default = 1 | |
| } | |
| public static partial class Variant | |
| diff -ruN old/GodotSharp/ObjectType/AudioEffectFilter.cs new/GodotSharp/ObjectType/AudioEffectFilter.cs | |
| --- old/GodotSharp/ObjectType/AudioEffectFilter.cs 2018-10-18 17:52:24.038259000 +0200 | |
| +++ new/GodotSharp/ObjectType/AudioEffectFilter.cs 2018-10-18 19:29:12.567584000 +0200 | |
| @@ -14,16 +14,16 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - R6db = 0, | |
| + Filter6db = 0, | |
| /// <summary> | |
| /// </summary> | |
| - R12db = 1, | |
| + Filter12db = 1, | |
| /// <summary> | |
| /// </summary> | |
| - R18db = 2, | |
| + Filter18db = 2, | |
| /// <summary> | |
| /// </summary> | |
| - R24db = 3 | |
| + Filter24db = 3 | |
| } | |
| /// <summary> | |
| diff -ruN old/GodotSharp/ObjectType/AudioStreamSample.cs new/GodotSharp/ObjectType/AudioStreamSample.cs | |
| --- old/GodotSharp/ObjectType/AudioStreamSample.cs 2018-10-18 17:52:24.050259000 +0200 | |
| +++ new/GodotSharp/ObjectType/AudioStreamSample.cs 2018-10-18 19:29:12.579584000 +0200 | |
| @@ -31,11 +31,11 @@ | |
| /// <summary> | |
| /// Audio codec 8 bit. | |
| /// </summary> | |
| - T8Bits = 0, | |
| + Format8Bits = 0, | |
| /// <summary> | |
| /// Audio codec 16 bit. | |
| /// </summary> | |
| - T16Bits = 1, | |
| + Format16Bits = 1, | |
| /// <summary> | |
| /// Audio codec IMA ADPCM. | |
| /// </summary> | |
| diff -ruN old/GodotSharp/ObjectType/CollisionPolygon2D.cs new/GodotSharp/ObjectType/CollisionPolygon2D.cs | |
| --- old/GodotSharp/ObjectType/CollisionPolygon2D.cs 2018-10-18 17:52:24.086259000 +0200 | |
| +++ new/GodotSharp/ObjectType/CollisionPolygon2D.cs 2018-10-18 19:29:12.611583000 +0200 | |
| @@ -15,11 +15,11 @@ | |
| /// <summary> | |
| /// Collisions will include the polygon and its contained area. | |
| /// </summary> | |
| - Olids = 0, | |
| + Solids = 0, | |
| /// <summary> | |
| /// Collisions will only include the polygon edges. | |
| /// </summary> | |
| - Egments = 1 | |
| + Segments = 1 | |
| } | |
| /// <summary> | |
| diff -ruN old/GodotSharp/ObjectType/CSGPolygon.cs new/GodotSharp/ObjectType/CSGPolygon.cs | |
| --- old/GodotSharp/ObjectType/CSGPolygon.cs 2018-10-18 17:52:24.066259000 +0200 | |
| +++ new/GodotSharp/ObjectType/CSGPolygon.cs 2018-10-18 19:29:12.595583000 +0200 | |
| @@ -15,15 +15,15 @@ | |
| /// <summary> | |
| /// Slice is not rotated. | |
| /// </summary> | |
| - Olygon = 0, | |
| + Polygon = 0, | |
| /// <summary> | |
| /// Slice is rotated around the up vector of the path. | |
| /// </summary> | |
| - Ath = 1, | |
| + Path = 1, | |
| /// <summary> | |
| /// Slice is rotate to match the path exactly. | |
| /// </summary> | |
| - AthFollow = 2 | |
| + PathFollow = 2 | |
| } | |
| public enum ModeEnum | |
| diff -ruN old/GodotSharp/ObjectType/CubeMap.cs new/GodotSharp/ObjectType/CubeMap.cs | |
| --- old/GodotSharp/ObjectType/CubeMap.cs 2018-10-18 17:52:24.098258000 +0200 | |
| +++ new/GodotSharp/ObjectType/CubeMap.cs 2018-10-18 19:29:12.627583000 +0200 | |
| @@ -15,19 +15,19 @@ | |
| /// <summary> | |
| /// Generate mipmaps, to enable smooth zooming out of the texture. | |
| /// </summary> | |
| - _Mipmaps = 1, | |
| + Mipmaps = 1, | |
| /// <summary> | |
| /// Repeat (instead of clamp to edge). | |
| /// </summary> | |
| - _Repeat = 2, | |
| + Repeat = 2, | |
| /// <summary> | |
| /// Turn on magnifying filter, to enable smooth zooming in of the texture. | |
| /// </summary> | |
| - _Filter = 4, | |
| + Filter = 4, | |
| /// <summary> | |
| /// Default flags. Generate mipmaps, repeat, and filter are enabled. | |
| /// </summary> | |
| - SDefault = 7 | |
| + Default = 7 | |
| } | |
| public enum Side | |
| diff -ruN old/GodotSharp/ObjectType/Environment.cs new/GodotSharp/ObjectType/Environment.cs | |
| --- old/GodotSharp/ObjectType/Environment.cs 2018-10-18 17:52:24.114258000 +0200 | |
| +++ new/GodotSharp/ObjectType/Environment.cs 2018-10-18 19:29:12.639582000 +0200 | |
| @@ -22,13 +22,13 @@ | |
| Disabled = 0, | |
| /// <summary> | |
| /// </summary> | |
| - R1x1 = 1, | |
| + Blur1x1 = 1, | |
| /// <summary> | |
| /// </summary> | |
| - R2x2 = 2, | |
| + Blur2x2 = 2, | |
| /// <summary> | |
| /// </summary> | |
| - R3x3 = 3 | |
| + Blur3x3 = 3 | |
| } | |
| public enum ToneMapper | |
| diff -ruN old/GodotSharp/ObjectType/GIProbe.cs new/GodotSharp/ObjectType/GIProbe.cs | |
| --- old/GodotSharp/ObjectType/GIProbe.cs 2018-10-18 17:52:24.118258000 +0200 | |
| +++ new/GodotSharp/ObjectType/GIProbe.cs 2018-10-18 19:29:12.647582000 +0200 | |
| @@ -11,16 +11,16 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - V64 = 0, | |
| + Subdiv64 = 0, | |
| /// <summary> | |
| /// </summary> | |
| - V128 = 1, | |
| + Subdiv128 = 1, | |
| /// <summary> | |
| /// </summary> | |
| - V256 = 2, | |
| + Subdiv256 = 2, | |
| /// <summary> | |
| /// </summary> | |
| - V512 = 3, | |
| + Subdiv512 = 3, | |
| /// <summary> | |
| /// </summary> | |
| Max = 4 | |
| diff -ruN old/GodotSharp/ObjectType/MultiMesh.cs new/GodotSharp/ObjectType/MultiMesh.cs | |
| --- old/GodotSharp/ObjectType/MultiMesh.cs 2018-10-18 17:52:24.174258000 +0200 | |
| +++ new/GodotSharp/ObjectType/MultiMesh.cs 2018-10-18 19:29:12.703581000 +0200 | |
| @@ -17,10 +17,10 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - M2d = 0, | |
| + Transform2d = 0, | |
| /// <summary> | |
| /// </summary> | |
| - M3d = 1 | |
| + Transform3d = 1 | |
| } | |
| public enum CustomDataFormatEnum | |
| @@ -30,7 +30,7 @@ | |
| None = 0, | |
| /// <summary> | |
| /// </summary> | |
| - A8bit = 1, | |
| + Data8bit = 1, | |
| /// <summary> | |
| /// </summary> | |
| Float = 2 | |
| @@ -43,7 +43,7 @@ | |
| None = 0, | |
| /// <summary> | |
| /// </summary> | |
| - R8bit = 1, | |
| + Color8bit = 1, | |
| /// <summary> | |
| /// </summary> | |
| Float = 2 | |
| diff -ruN old/GodotSharp/ObjectType/PhysicalBone.cs new/GodotSharp/ObjectType/PhysicalBone.cs | |
| --- old/GodotSharp/ObjectType/PhysicalBone.cs 2018-10-18 17:52:24.214257000 +0200 | |
| +++ new/GodotSharp/ObjectType/PhysicalBone.cs 2018-10-18 19:29:12.743580000 +0200 | |
| @@ -26,7 +26,7 @@ | |
| Slider = 4, | |
| /// <summary> | |
| /// </summary> | |
| - E6dof = 5 | |
| + Type6dof = 5 | |
| } | |
| /// <summary> | |
| diff -ruN old/GodotSharp/ObjectType/PhysicsServer.cs new/GodotSharp/ObjectType/PhysicsServer.cs | |
| --- old/GodotSharp/ObjectType/PhysicsServer.cs 2018-10-18 17:52:24.238257000 +0200 | |
| +++ new/GodotSharp/ObjectType/PhysicsServer.cs 2018-10-18 19:29:12.763580000 +0200 | |
| @@ -227,7 +227,7 @@ | |
| /// <summary> | |
| /// The [Joint] is a [Generic6DOFJoint]. | |
| /// </summary> | |
| - T6dof = 4 | |
| + Joint6dof = 4 | |
| } | |
| public enum BodyState | |
| diff -ruN old/GodotSharp/ObjectType/ProceduralSky.cs new/GodotSharp/ObjectType/ProceduralSky.cs | |
| --- old/GodotSharp/ObjectType/ProceduralSky.cs 2018-10-18 17:52:24.250257000 +0200 | |
| +++ new/GodotSharp/ObjectType/ProceduralSky.cs 2018-10-18 19:29:12.775579000 +0200 | |
| @@ -15,19 +15,19 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - E256 = 0, | |
| + Size256 = 0, | |
| /// <summary> | |
| /// </summary> | |
| - E512 = 1, | |
| + Size512 = 1, | |
| /// <summary> | |
| /// </summary> | |
| - E1024 = 2, | |
| + Size1024 = 2, | |
| /// <summary> | |
| /// </summary> | |
| - E2048 = 3, | |
| + Size2048 = 3, | |
| /// <summary> | |
| /// </summary> | |
| - E4096 = 4, | |
| + Size4096 = 4, | |
| /// <summary> | |
| /// </summary> | |
| Max = 5 | |
| diff -ruN old/GodotSharp/ObjectType/SceneTree.cs new/GodotSharp/ObjectType/SceneTree.cs | |
| --- old/GodotSharp/ObjectType/SceneTree.cs 2018-10-18 17:52:24.274256000 +0200 | |
| +++ new/GodotSharp/ObjectType/SceneTree.cs 2018-10-18 19:29:12.799579000 +0200 | |
| @@ -63,7 +63,7 @@ | |
| /// <summary> | |
| /// Render stretching in higher resolution (interpolated). | |
| /// </summary> | |
| - E2d = 1, | |
| + Mode2d = 1, | |
| /// <summary> | |
| /// Keep the specified display resolution. No interpolation. Content may appear pixelated. | |
| /// </summary> | |
| diff -ruN old/GodotSharp/ObjectType/Sky.cs new/GodotSharp/ObjectType/Sky.cs | |
| --- old/GodotSharp/ObjectType/Sky.cs 2018-10-18 17:52:24.278256000 +0200 | |
| +++ new/GodotSharp/ObjectType/Sky.cs 2018-10-18 19:29:12.807579000 +0200 | |
| @@ -15,31 +15,31 @@ | |
| /// <summary> | |
| /// Radiance texture size is 32x32 pixels. | |
| /// </summary> | |
| - E32 = 0, | |
| + Size32 = 0, | |
| /// <summary> | |
| /// Radiance texture size is 64x64 pixels. | |
| /// </summary> | |
| - E64 = 1, | |
| + Size64 = 1, | |
| /// <summary> | |
| /// Radiance texture size is 128x128 pixels. | |
| /// </summary> | |
| - E128 = 2, | |
| + Size128 = 2, | |
| /// <summary> | |
| /// Radiance texture size is 256x256 pixels. | |
| /// </summary> | |
| - E256 = 3, | |
| + Size256 = 3, | |
| /// <summary> | |
| /// Radiance texture size is 512x512 pixels. | |
| /// </summary> | |
| - E512 = 4, | |
| + Size512 = 4, | |
| /// <summary> | |
| /// Radiance texture size is 1024x1024 pixels. | |
| /// </summary> | |
| - E1024 = 5, | |
| + Size1024 = 5, | |
| /// <summary> | |
| /// Radiance texture size is 2048x2048 pixels. | |
| /// </summary> | |
| - E2048 = 6, | |
| + Size2048 = 6, | |
| /// <summary> | |
| /// Radiance texture size is the largest size it can be. | |
| /// </summary> | |
| diff -ruN old/GodotSharp/ObjectType/SpatialMaterial.cs new/GodotSharp/ObjectType/SpatialMaterial.cs | |
| --- old/GodotSharp/ObjectType/SpatialMaterial.cs 2018-10-18 17:52:24.294256000 +0200 | |
| +++ new/GodotSharp/ObjectType/SpatialMaterial.cs 2018-10-18 19:29:12.819578000 +0200 | |
| @@ -192,10 +192,10 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - V1 = 0, | |
| + Uv1 = 0, | |
| /// <summary> | |
| /// </summary> | |
| - V2 = 1 | |
| + Uv2 = 1 | |
| } | |
| public enum DistanceFadeModeEnum | |
| diff -ruN old/GodotSharp/ObjectType/Texture.cs new/GodotSharp/ObjectType/Texture.cs | |
| --- old/GodotSharp/ObjectType/Texture.cs 2018-10-18 17:52:24.318256000 +0200 | |
| +++ new/GodotSharp/ObjectType/Texture.cs 2018-10-18 19:29:12.843578000 +0200 | |
| @@ -16,36 +16,36 @@ | |
| /// <summary> | |
| /// Default flags. Generate mipmaps, repeat, and filter are enabled. | |
| /// </summary> | |
| - SDefault = 7, | |
| + Default = 7, | |
| /// <summary> | |
| /// Generate mipmaps, which are smaller versions of the same texture to use when zoomed out, keeping the aspect ratio. | |
| /// </summary> | |
| - _Mipmaps = 1, | |
| + Mipmaps = 1, | |
| /// <summary> | |
| /// Repeats texture (instead of clamp to edge). | |
| /// </summary> | |
| - _Repeat = 2, | |
| + Repeat = 2, | |
| /// <summary> | |
| /// Magnifying filter, to enable smooth zooming in of the texture. | |
| /// </summary> | |
| - _Filter = 4, | |
| + Filter = 4, | |
| /// <summary> | |
| /// Anisotropic mipmap filtering. Generates smaller versions of the same texture with different aspect ratios. | |
| /// More effective on planes often shown going to the horrizon as those textures (Walls or Ground for example) get squashed in the viewport to different aspect ratios and regular mipmaps keep the aspect ratio so they don't optimize storage that well in those cases. | |
| /// </summary> | |
| - _AnisotropicFilter = 8, | |
| + AnisotropicFilter = 8, | |
| /// <summary> | |
| /// Converts texture to SRGB color space. | |
| /// </summary> | |
| - _ConvertToLinear = 16, | |
| + ConvertToLinear = 16, | |
| /// <summary> | |
| /// Repeats texture with alternate sections mirrored. | |
| /// </summary> | |
| - _MirroredRepeat = 32, | |
| + MirroredRepeat = 32, | |
| /// <summary> | |
| /// Texture is a video surface. | |
| /// </summary> | |
| - _VideoSurface = 2048 | |
| + VideoSurface = 2048 | |
| } | |
| /// <summary> | |
| diff -ruN old/GodotSharp/ObjectType/TextureLayered.cs new/GodotSharp/ObjectType/TextureLayered.cs | |
| --- old/GodotSharp/ObjectType/TextureLayered.cs 2018-10-18 17:52:24.322256000 +0200 | |
| +++ new/GodotSharp/ObjectType/TextureLayered.cs 2018-10-18 19:29:12.847578000 +0200 | |
| @@ -11,16 +11,16 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - _Mipmaps = 1, | |
| + Mipmaps = 1, | |
| /// <summary> | |
| /// </summary> | |
| - _Repeat = 2, | |
| + Repeat = 2, | |
| /// <summary> | |
| /// </summary> | |
| - _Filter = 4, | |
| + Filter = 4, | |
| /// <summary> | |
| /// </summary> | |
| - SDefault = 4 | |
| + Default = 4 | |
| } | |
| /// <summary> | |
| diff -ruN old/GodotSharp/ObjectType/TileSet.cs new/GodotSharp/ObjectType/TileSet.cs | |
| --- old/GodotSharp/ObjectType/TileSet.cs 2018-10-18 17:52:24.330256000 +0200 | |
| +++ new/GodotSharp/ObjectType/TileSet.cs 2018-10-18 19:29:12.855578000 +0200 | |
| @@ -56,13 +56,13 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - K2x2 = 0, | |
| + Bitmask2x2 = 0, | |
| /// <summary> | |
| /// </summary> | |
| - K3x3Minimal = 1, | |
| + Bitmask3x3Minimal = 1, | |
| /// <summary> | |
| /// </summary> | |
| - K3x3 = 2 | |
| + Bitmask3x3 = 2 | |
| } | |
| private const string nativeName = "TileSet"; | |
| diff -ruN old/GodotSharp/ObjectType/Viewport.cs new/GodotSharp/ObjectType/Viewport.cs | |
| --- old/GodotSharp/ObjectType/Viewport.cs 2018-10-18 17:52:24.350255000 +0200 | |
| +++ new/GodotSharp/ObjectType/Viewport.cs 2018-10-18 19:29:12.875577000 +0200 | |
| @@ -67,16 +67,16 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - E2d = 0, | |
| + Usage2d = 0, | |
| /// <summary> | |
| /// </summary> | |
| - E2dNoSampling = 1, | |
| + Usage2dNoSampling = 1, | |
| /// <summary> | |
| /// </summary> | |
| - E3d = 2, | |
| + Usage3d = 2, | |
| /// <summary> | |
| /// </summary> | |
| - E3dNoEffects = 3 | |
| + Usage3dNoEffects = 3 | |
| } | |
| public enum DebugDrawEnum | |
| @@ -106,22 +106,22 @@ | |
| Disabled = 0, | |
| /// <summary> | |
| /// </summary> | |
| - V1 = 1, | |
| + Subdiv1 = 1, | |
| /// <summary> | |
| /// </summary> | |
| - V4 = 2, | |
| + Subdiv4 = 2, | |
| /// <summary> | |
| /// </summary> | |
| - V16 = 3, | |
| + Subdiv16 = 3, | |
| /// <summary> | |
| /// </summary> | |
| - V64 = 4, | |
| + Subdiv64 = 4, | |
| /// <summary> | |
| /// </summary> | |
| - V256 = 5, | |
| + Subdiv256 = 5, | |
| /// <summary> | |
| /// </summary> | |
| - V1024 = 6, | |
| + Subdiv1024 = 6, | |
| /// <summary> | |
| /// Enum limiter. Do not use it directly. | |
| /// </summary> | |
| @@ -156,16 +156,16 @@ | |
| Disabled = 0, | |
| /// <summary> | |
| /// </summary> | |
| - A2x = 1, | |
| + Msaa2x = 1, | |
| /// <summary> | |
| /// </summary> | |
| - A4x = 2, | |
| + Msaa4x = 2, | |
| /// <summary> | |
| /// </summary> | |
| - A8x = 3, | |
| + Msaa8x = 3, | |
| /// <summary> | |
| /// </summary> | |
| - A16x = 4 | |
| + Msaa16x = 4 | |
| } | |
| /// <summary> | |
| diff -ruN old/GodotSharp/ObjectType/VisualServer.cs new/GodotSharp/ObjectType/VisualServer.cs | |
| --- old/GodotSharp/ObjectType/VisualServer.cs 2018-10-18 17:52:24.386255000 +0200 | |
| +++ new/GodotSharp/ObjectType/VisualServer.cs 2018-10-18 19:29:12.911576000 +0200 | |
| @@ -111,16 +111,16 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - E2d = 0, | |
| + Type2d = 0, | |
| /// <summary> | |
| /// </summary> | |
| Cubemap = 1, | |
| /// <summary> | |
| /// </summary> | |
| - E2dArray = 2, | |
| + Type2dArray = 2, | |
| /// <summary> | |
| /// </summary> | |
| - E3d = 3 | |
| + Type3d = 3 | |
| } | |
| public enum EnvironmentSSAOQuality | |
| @@ -284,10 +284,10 @@ | |
| { | |
| /// <summary> | |
| /// </summary> | |
| - M2d = 0, | |
| + Transform2d = 0, | |
| /// <summary> | |
| /// </summary> | |
| - M3d = 1 | |
| + Transform3d = 1 | |
| } | |
| public enum ShadowCastingSetting | |
| @@ -331,19 +331,19 @@ | |
| /// <summary> | |
| /// The Viewport does not render 3D but samples. | |
| /// </summary> | |
| - E2d = 0, | |
| + Usage2d = 0, | |
| /// <summary> | |
| /// The Viewport does not render 3D and does not sample. | |
| /// </summary> | |
| - E2dNoSampling = 1, | |
| + Usage2dNoSampling = 1, | |
| /// <summary> | |
| /// The Viewport renders 3D with effects. | |
| /// </summary> | |
| - E3d = 2, | |
| + Usage3d = 2, | |
| /// <summary> | |
| /// The Viewport renders 3D but without effects. | |
| /// </summary> | |
| - E3dNoEffects = 3 | |
| + Usage3dNoEffects = 3 | |
| } | |
| public enum EnvironmentBG | |
| @@ -386,36 +386,36 @@ | |
| /// <summary> | |
| /// Generate mipmaps, which are smaller versions of the same texture to use when zoomed out, keeping the aspect ratio. | |
| /// </summary> | |
| - _Mipmaps = 1, | |
| + Mipmaps = 1, | |
| /// <summary> | |
| /// Repeat (instead of clamp to edge). | |
| /// </summary> | |
| - _Repeat = 2, | |
| + Repeat = 2, | |
| /// <summary> | |
| /// Turn on magnifying filter, to enable smooth zooming in of the texture. | |
| /// </summary> | |
| - _Filter = 4, | |
| + Filter = 4, | |
| /// <summary> | |
| /// Anisotropic mipmap filtering. Generates smaller versions of the same texture with different aspect ratios. | |
| /// More effective on planes often shown going to the horrizon as those textures (Walls or Ground for example) get squashed in the viewport to different aspect ratios and regular mipmaps keep the aspect ratio so they don't optimize storage that well in those cases. | |
| /// </summary> | |
| - _AnisotropicFilter = 8, | |
| + AnisotropicFilter = 8, | |
| /// <summary> | |
| /// Converts texture to SRGB color space. | |
| /// </summary> | |
| - _ConvertToLinear = 16, | |
| + ConvertToLinear = 16, | |
| /// <summary> | |
| /// Repeat texture with alternate sections mirrored. | |
| /// </summary> | |
| - _MirroredRepeat = 32, | |
| + MirroredRepeat = 32, | |
| /// <summary> | |
| /// Texture is a video surface. | |
| /// </summary> | |
| - _UsedForStreaming = 2048, | |
| + UsedForStreaming = 2048, | |
| /// <summary> | |
| /// Default flags. Generate mipmaps, repeat, and filter are enabled. | |
| /// </summary> | |
| - SDefault = 7 | |
| + Default = 7 | |
| } | |
| public enum Features | |
| @@ -480,13 +480,13 @@ | |
| Disabled = 0, | |
| /// <summary> | |
| /// </summary> | |
| - R1x1 = 1, | |
| + Blur1x1 = 1, | |
| /// <summary> | |
| /// </summary> | |
| - R2x2 = 2, | |
| + Blur2x2 = 2, | |
| /// <summary> | |
| /// </summary> | |
| - R3x3 = 3 | |
| + Blur3x3 = 3 | |
| } | |
| public enum EnvironmentToneMapper | |
| @@ -528,7 +528,7 @@ | |
| None = 0, | |
| /// <summary> | |
| /// </summary> | |
| - R8bit = 1, | |
| + Color8bit = 1, | |
| /// <summary> | |
| /// </summary> | |
| Float = 2 | |
| @@ -859,19 +859,19 @@ | |
| /// <summary> | |
| /// Multisample antialiasing is set to 2X. | |
| /// </summary> | |
| - A2x = 1, | |
| + Msaa2x = 1, | |
| /// <summary> | |
| /// Multisample antialiasing is set to 4X. | |
| /// </summary> | |
| - A4x = 2, | |
| + Msaa4x = 2, | |
| /// <summary> | |
| /// Multisample antialiasing is set to 8X. | |
| /// </summary> | |
| - A8x = 3, | |
| + Msaa8x = 3, | |
| /// <summary> | |
| /// Multisample antialiasing is set to 16X. | |
| /// </summary> | |
| - A16x = 4 | |
| + Msaa16x = 4 | |
| } | |
| public enum LightType | |
| diff -ruN old/GodotSharp/ObjectType/VisualShaderNodeTexture.cs new/GodotSharp/ObjectType/VisualShaderNodeTexture.cs | |
| --- old/GodotSharp/ObjectType/VisualShaderNodeTexture.cs 2018-10-18 17:52:24.394255000 +0200 | |
| +++ new/GodotSharp/ObjectType/VisualShaderNodeTexture.cs 2018-10-18 19:29:12.919576000 +0200 | |
| @@ -30,10 +30,10 @@ | |
| Screen = 1, | |
| /// <summary> | |
| /// </summary> | |
| - E2dTexture = 2, | |
| + Source2dTexture = 2, | |
| /// <summary> | |
| /// </summary> | |
| - E2dNormal = 3 | |
| + Source2dNormal = 3 | |
| } | |
| /// <summary> | |
| diff -ruN old/GodotSharp/ObjectType/VisualShaderNodeTransformVecMult.cs new/GodotSharp/ObjectType/VisualShaderNodeTransformVecMult.cs | |
| --- old/GodotSharp/ObjectType/VisualShaderNodeTransformVecMult.cs 2018-10-18 17:52:24.394255000 +0200 | |
| +++ new/GodotSharp/ObjectType/VisualShaderNodeTransformVecMult.cs 2018-10-18 19:29:12.919576000 +0200 | |
| @@ -17,10 +17,10 @@ | |
| Bxa = 1, | |
| /// <summary> | |
| /// </summary> | |
| - P3x3Axb = 2, | |
| + Op3x3Axb = 2, | |
| /// <summary> | |
| /// </summary> | |
| - P3x3Bxa = 3 | |
| + Op3x3Bxa = 3 | |
| } | |
| /// <summary> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment