comet/examples
2025-07-26 01:22:42 +02:00
..
hello_world.rs feat: added examples to the repo 2025-03-11 01:13:05 +01:00
prefabs.rs feat(ecs): added a simple prefab system 2025-07-14 01:54:53 +02:00
README.md feat: added simple_text example 2025-05-03 21:56:56 +02:00
simple_move_2d.rs chore: renamed the resources directory to res 2025-07-26 01:22:42 +02:00
simple_text.rs chore: renamed the resources directory to res 2025-07-26 01:22:42 +02:00
textured_entity.rs chore: renamed the resources directory to res 2025-07-26 01:22:42 +02:00

Examples

This directory contains a few examples that demonstrate how you can use Comet to create an application/game.

Simply run

cargo run --example <example_name>
Example Description
hello_world A simple boilerplate example to show how to properly start creating a Comet App.
textured_entity This covers the basics on how to create a camera and your first entity with a texture.
simple_move_2d A simple demonstration of a hypothetical movement system in 2D.
simple_text A simple demonstration of how to write some text in Comet.