rename existing examples for consistent naming

This commit is contained in:
Timothy Fiss 2025-07-27 12:29:00 -06:00 committed by Nikolas
parent 4bb5254d6b
commit df70c5c952
4 changed files with 6 additions and 6 deletions

View File

@ -325,8 +325,8 @@ pub fn build(b: *std.Build) !void {
.desc = "Demonstrates rendering spritefonts", .desc = "Demonstrates rendering spritefonts",
}, },
.{ .{
.name = "text_format_text", .name = "format_text",
.path = "examples/text/text_format_text.zig", .path = "examples/text/format_text.zig",
.desc = "Renders variables as text", .desc = "Renders variables as text",
}, },
.{ .{
@ -335,8 +335,8 @@ pub fn build(b: *std.Build) !void {
.desc = "Show and example of an input_box", .desc = "Show and example of an input_box",
}, },
.{ .{
.name = "text_raylib_fonts", .name = "raylib_fonts",
.path = "examples/text/text_raylib_fonts.zig", .path = "examples/text/raylib_fonts.zig",
.desc = "Show fonts included with raylib", .desc = "Show fonts included with raylib",
}, },
.{ .{
@ -350,8 +350,8 @@ pub fn build(b: *std.Build) !void {
.desc = "demonstrate rendering of unicode", .desc = "demonstrate rendering of unicode",
}, },
.{ .{
.name = "text_writing_anim", .name = "writing_anim",
.path = "examples/text/text_writing_anim.zig", .path = "examples/text/writing_anim.zig",
.desc = "Simple text animation", .desc = "Simple text animation",
}, },
.{ .{