'F' → Fullscreen
Create a Raylib program named 1-02-signal.
template-game.1-02-signal.Program.cs and run it.using Raylib_cs;
int screenWidth = 800;int screenHeight = 600;
Raylib.InitWindow(screenWidth, screenHeight, "Hello, Raylib!");Raylib.SetTargetFPS(60);
while (!Raylib.WindowShouldClose()){ Raylib.BeginDrawing(); Raylib.ClearBackground(Color.Black); Raylib.DrawText("Hello, World!", 320, 285, 24, Color.SkyBlue); Raylib.EndDrawing();}
Raylib.CloseWindow();Traffic Signal.Raylib.DrawText line.using Raylib_cs;
int screenWidth = 800;int screenHeight = 600;
Raylib.InitWindow(screenWidth, screenHeight, "Traffic Signal");Raylib.SetTargetFPS(60);
while (!Raylib.WindowShouldClose()){ Raylib.BeginDrawing(); Raylib.ClearBackground(Color.Black);
Raylib.DrawRectangle(350, 130, 100, 340, Color.Gray); Raylib.EndDrawing();}
Raylib.CloseWindow();using Raylib_cs;
int screenWidth = 800;int screenHeight = 600;
Raylib.InitWindow(screenWidth, screenHeight, "Traffic Signal");Raylib.SetTargetFPS(60);
while (!Raylib.WindowShouldClose()){ Raylib.BeginDrawing(); Raylib.ClearBackground(Color.Black);
Raylib.DrawRectangle(350, 130, 100, 340, Color.Gray); Raylib.DrawCircle(400, 190, 35, Color.Red); Raylib.DrawCircle(400, 300, 35, Color.Yellow); Raylib.DrawCircle(400, 410, 35, Color.Green);
Raylib.EndDrawing();}
Raylib.CloseWindow();new Color(red, green, blue, opacity) value.Raylib.DrawCircle(400, 190, 35, new Color(230, 50, 50, 255));Make a copy named 1-02-scene. Draw a recognizable picture with at least six shapes and three colors. Use only drawing calls already shown on this page.
Your program should produce this picture:
Answer the following questions before submitting your work.
Submit your completed activity sheet. Keep 1-02-signal in your workspace.