Introduction

Installation

There are two pieces to Skein:

  1. The Bevy crate
  2. The Blender addon

The Bevy Crate

cargo add bevy_skein

Add the plugin to your application. Using default sets handle_brp to true which lets Skein set up the appropriate BRP configuration. If you want more control, set this to false and set up the RemotePlugin and RemoteHttpPlugin yourself. Skein currently only uses the default ports.

use bevy::prelude::*;
use bevy_skein::SkeinPlugin;

fn main() {
    App::new()
        .add_plugins((
            DefaultPlugins,
            SkeinPlugin::default(),
        ))
        .run();
}

The only thing you need to do is set up the plugin. Skein operates on the GltfExtras that the Blender addon sets in the .gltf/.glb file, so spawning a scene from a gltf exported with the addon data will "just work".

commands.spawn(SceneRoot(asset_server.load(
    GltfAssetLabel::Scene(0).from_asset("my_export.gltf"),
)));

The Blender addon

  1. Download the zip file from the latest blender addon release on GitHub
  2. Open Blender, navigate to Edit -> Add-ons` addons
  3. Drag .zip file onto addons list and "Install from Disk" install from disk
  4. Bevy Skein should be installed in the list bevy_skein is installed

Tip

There is a debug option in the addon preferences. If you want to develop against the addon you can enable this to see a bunch of output (note: requires running Blender from terminal)

debug preferences

Previous
Getting started