2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Group example utils into folder

This commit is contained in:
ChrisDill 2023-08-27 14:01:35 +01:00
parent c5560664ed
commit d1f0b9fd91
8 changed files with 17 additions and 14 deletions

View File

@ -27,7 +27,7 @@
using System.Numerics; using System.Numerics;
using static Raylib_cs.Raylib; using static Raylib_cs.Raylib;
using static Examples.Rlights; using Examples.Shared;
namespace Examples.Shaders; namespace Examples.Shaders;
@ -77,7 +77,7 @@ public class BasicLighting
// Using 4 point lights: Color.gold, Color.red, Color.green and Color.blue // Using 4 point lights: Color.gold, Color.red, Color.green and Color.blue
Light[] lights = new Light[4]; Light[] lights = new Light[4];
lights[0] = CreateLight( lights[0] = Rlights.CreateLight(
0, 0,
LightType.Point, LightType.Point,
new Vector3(-2, 1, -2), new Vector3(-2, 1, -2),
@ -85,7 +85,7 @@ public class BasicLighting
Color.YELLOW, Color.YELLOW,
shader shader
); );
lights[1] = CreateLight( lights[1] = Rlights.CreateLight(
1, 1,
LightType.Point, LightType.Point,
new Vector3(2, 1, 2), new Vector3(2, 1, 2),
@ -93,7 +93,7 @@ public class BasicLighting
Color.RED, Color.RED,
shader shader
); );
lights[2] = CreateLight( lights[2] = Rlights.CreateLight(
2, 2,
LightType.Point, LightType.Point,
new Vector3(-2, 1, 2), new Vector3(-2, 1, 2),
@ -101,7 +101,7 @@ public class BasicLighting
Color.GREEN, Color.GREEN,
shader shader
); );
lights[3] = CreateLight( lights[3] = Rlights.CreateLight(
3, 3,
LightType.Point, LightType.Point,
new Vector3(2, 1, -2), new Vector3(2, 1, -2),
@ -138,10 +138,10 @@ public class BasicLighting
} }
// Update light values (actually, only enable/disable them) // Update light values (actually, only enable/disable them)
UpdateLightValues(shader, lights[0]); Rlights.UpdateLightValues(shader, lights[0]);
UpdateLightValues(shader, lights[1]); Rlights.UpdateLightValues(shader, lights[1]);
UpdateLightValues(shader, lights[2]); Rlights.UpdateLightValues(shader, lights[2]);
UpdateLightValues(shader, lights[3]); Rlights.UpdateLightValues(shader, lights[3]);
// Update the light shader with the camera view position // Update the light shader with the camera view position
Raylib.SetShaderValue( Raylib.SetShaderValue(

View File

@ -28,7 +28,7 @@
using System.Numerics; using System.Numerics;
using static Raylib_cs.Raylib; using static Raylib_cs.Raylib;
using static Raylib_cs.Raymath; using static Raylib_cs.Raymath;
using static Examples.Rlights; using Examples.Shared;
namespace Examples.Shaders; namespace Examples.Shaders;
@ -88,7 +88,7 @@ public class Fog
Raylib.SetMaterialShader(ref modelC, 0, ref shader); Raylib.SetMaterialShader(ref modelC, 0, ref shader);
// Using just 1 point lights // 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); SetTargetFPS(60);
//-------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------

View File

@ -13,9 +13,9 @@
* *
********************************************************************************************/ ********************************************************************************************/
using System;
using System.Numerics; using System.Numerics;
using static Raylib_cs.Raylib; using static Raylib_cs.Raylib;
using Examples.Shared;
namespace Examples.Shaders; namespace Examples.Shaders;

View File

@ -10,6 +10,7 @@
********************************************************************************************/ ********************************************************************************************/
using static Raylib_cs.Raylib; using static Raylib_cs.Raylib;
using Examples.Shared;
namespace Examples.Shapes; namespace Examples.Shapes;

View File

@ -11,6 +11,7 @@
using System.Numerics; using System.Numerics;
using static Raylib_cs.Raylib; using static Raylib_cs.Raylib;
using Examples.Shared;
namespace Examples.Shapes; namespace Examples.Shapes;

View File

@ -14,6 +14,7 @@
using System.Numerics; using System.Numerics;
using static Raylib_cs.Raylib; using static Raylib_cs.Raylib;
using Examples.Shared;
namespace Examples.Shapes; namespace Examples.Shapes;

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Examples; namespace Examples.Shared;
public static class Easings public static class Easings
{ {

View File

@ -1,7 +1,7 @@
using System.Numerics; using System.Numerics;
using static Raylib_cs.Raylib; using static Raylib_cs.Raylib;
namespace Examples; namespace Examples.Shared;
public struct Light public struct Light
{ {