Skip to content

chungwong/move_vis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Movement Visualisation

A bevy plugin to visualise the movements of a player.

Demo

use move_vis::MoveVisPlugin;

fn main() {
   App::new()
       .add_plugin(MoveVisPlugin)
       .add_system(spawn_player);
   // ...
}

fn spawn_player(mut commands: Commands){
    commands
        .spawn()
        .insert(RigidBody::Dynamic)
        ..
        .insert(TrackMovement);
}

For more details on usage see Examples

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages