Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 932 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 932 Bytes

Piston Examples

A collection of examples using the Piston game engine

How to contribute

How to build & run examples

To build the examples, you need Rust and Cargo installed.

  1. Install Rustlang for example through rustup
  2. Invoke cargo run --example <NAME> where the NAME are a file names from examples directory 2.1. Optionally navigate to examples/<directory> and invoke cargo run for more complex examples

Troubleshooting

  • I get ld: library not found for -lSDL2 error on OSX

  • I get "GL context creation failed" when running an example.

    It's likely your hardware or driver doesn't support PistonWindow's default OpenGl spec. Just change it to something you can support at the beginning of the example. See hello_world.rs for an example.