2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-07-04 19:23:43 -04:00

Group example utils into folder

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

View File

@ -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);
//--------------------------------------------------------------------------------------