From d1f0b9fd9176a22deec6ad8e4b3f150ea5588842 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 27 Aug 2023 14:01:35 +0100 Subject: [PATCH] Group example utils into folder --- Examples/Shaders/BasicLighting.cs | 18 +++++++++--------- Examples/Shaders/Fog.cs | 4 ++-- Examples/Shaders/MeshInstancing.cs | 2 +- Examples/Shapes/EasingsBallAnim.cs | 1 + Examples/Shapes/EasingsBoxAnim.cs | 1 + Examples/Shapes/EasingsRectangleArray.cs | 1 + Examples/{ => Shared}/Easings.cs | 2 +- Examples/{ => Shared}/Rlights.cs | 2 +- 8 files changed, 17 insertions(+), 14 deletions(-) rename Examples/{ => Shared}/Easings.cs (99%) rename Examples/{ => Shared}/Rlights.cs (99%) diff --git a/Examples/Shaders/BasicLighting.cs b/Examples/Shaders/BasicLighting.cs index d6a7155..4d2ad25 100644 --- a/Examples/Shaders/BasicLighting.cs +++ b/Examples/Shaders/BasicLighting.cs @@ -27,7 +27,7 @@ using System.Numerics; using static Raylib_cs.Raylib; -using static Examples.Rlights; +using Examples.Shared; namespace Examples.Shaders; @@ -77,7 +77,7 @@ public class BasicLighting // Using 4 point lights: Color.gold, Color.red, Color.green and Color.blue Light[] lights = new Light[4]; - lights[0] = CreateLight( + lights[0] = Rlights.CreateLight( 0, LightType.Point, new Vector3(-2, 1, -2), @@ -85,7 +85,7 @@ public class BasicLighting Color.YELLOW, shader ); - lights[1] = CreateLight( + lights[1] = Rlights.CreateLight( 1, LightType.Point, new Vector3(2, 1, 2), @@ -93,7 +93,7 @@ public class BasicLighting Color.RED, shader ); - lights[2] = CreateLight( + lights[2] = Rlights.CreateLight( 2, LightType.Point, new Vector3(-2, 1, 2), @@ -101,7 +101,7 @@ public class BasicLighting Color.GREEN, shader ); - lights[3] = CreateLight( + lights[3] = Rlights.CreateLight( 3, LightType.Point, new Vector3(2, 1, -2), @@ -138,10 +138,10 @@ public class BasicLighting } // Update light values (actually, only enable/disable them) - UpdateLightValues(shader, lights[0]); - UpdateLightValues(shader, lights[1]); - UpdateLightValues(shader, lights[2]); - UpdateLightValues(shader, lights[3]); + Rlights.UpdateLightValues(shader, lights[0]); + Rlights.UpdateLightValues(shader, lights[1]); + Rlights.UpdateLightValues(shader, lights[2]); + Rlights.UpdateLightValues(shader, lights[3]); // Update the light shader with the camera view position Raylib.SetShaderValue( diff --git a/Examples/Shaders/Fog.cs b/Examples/Shaders/Fog.cs index 2a9b8f1..4618ee6 100644 --- a/Examples/Shaders/Fog.cs +++ b/Examples/Shaders/Fog.cs @@ -28,7 +28,7 @@ using System.Numerics; using static Raylib_cs.Raylib; using static Raylib_cs.Raymath; -using static Examples.Rlights; +using Examples.Shared; namespace Examples.Shaders; @@ -88,7 +88,7 @@ public class Fog Raylib.SetMaterialShader(ref modelC, 0, ref shader); // Using just 1 point lights - CreateLight(0, LightType.Point, new Vector3(0, 2, 6), Vector3.Zero, Color.WHITE, shader); + Rlights.CreateLight(0, LightType.Point, new Vector3(0, 2, 6), Vector3.Zero, Color.WHITE, shader); SetTargetFPS(60); //-------------------------------------------------------------------------------------- diff --git a/Examples/Shaders/MeshInstancing.cs b/Examples/Shaders/MeshInstancing.cs index f62ec25..82baa98 100644 --- a/Examples/Shaders/MeshInstancing.cs +++ b/Examples/Shaders/MeshInstancing.cs @@ -13,9 +13,9 @@ * ********************************************************************************************/ -using System; using System.Numerics; using static Raylib_cs.Raylib; +using Examples.Shared; namespace Examples.Shaders; diff --git a/Examples/Shapes/EasingsBallAnim.cs b/Examples/Shapes/EasingsBallAnim.cs index 1b5c6cb..cdb7bb5 100644 --- a/Examples/Shapes/EasingsBallAnim.cs +++ b/Examples/Shapes/EasingsBallAnim.cs @@ -10,6 +10,7 @@ ********************************************************************************************/ using static Raylib_cs.Raylib; +using Examples.Shared; namespace Examples.Shapes; diff --git a/Examples/Shapes/EasingsBoxAnim.cs b/Examples/Shapes/EasingsBoxAnim.cs index 894634b..b302066 100644 --- a/Examples/Shapes/EasingsBoxAnim.cs +++ b/Examples/Shapes/EasingsBoxAnim.cs @@ -11,6 +11,7 @@ using System.Numerics; using static Raylib_cs.Raylib; +using Examples.Shared; namespace Examples.Shapes; diff --git a/Examples/Shapes/EasingsRectangleArray.cs b/Examples/Shapes/EasingsRectangleArray.cs index a63b0da..1eaee2c 100644 --- a/Examples/Shapes/EasingsRectangleArray.cs +++ b/Examples/Shapes/EasingsRectangleArray.cs @@ -14,6 +14,7 @@ using System.Numerics; using static Raylib_cs.Raylib; +using Examples.Shared; namespace Examples.Shapes; diff --git a/Examples/Easings.cs b/Examples/Shared/Easings.cs similarity index 99% rename from Examples/Easings.cs rename to Examples/Shared/Easings.cs index 476193f..57cc879 100644 --- a/Examples/Easings.cs +++ b/Examples/Shared/Easings.cs @@ -1,6 +1,6 @@ using System; -namespace Examples; +namespace Examples.Shared; public static class Easings { diff --git a/Examples/Rlights.cs b/Examples/Shared/Rlights.cs similarity index 99% rename from Examples/Rlights.cs rename to Examples/Shared/Rlights.cs index f40662d..41daf04 100644 --- a/Examples/Rlights.cs +++ b/Examples/Shared/Rlights.cs @@ -1,7 +1,7 @@ using System.Numerics; using static Raylib_cs.Raylib; -namespace Examples; +namespace Examples.Shared; public struct Light {