Skip to content

Commit

Permalink
refactor: baseline to 0.2 again, rename to bevy-vello
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Sep 10, 2023
1 parent ffcd186 commit 194e695
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Trunk build
run: |
cd demo
trunk build --release --public-url /bevy_vello/
trunk build --release --public-url /bevy-vello/
mv favicon.ico ./dist/favicon.ico
# Deploy, GitHub Pages
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ members = ["demo"]

[workspace.package]
edition = "2021"
version = "0.0.1"
version = "0.2.0"
license = "MIT/Apache-2.0"
repository = "https://github.com/vectorgameexperts/bevy_vello"
repository = "https://github.com/vectorgameexperts/bevy-vello"

[workspace.dependencies]
bevy = { version = "0.11", default-features = false, features = [
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Bevy Vello

![MIT/Apache 2.0](https://img.shields.io/badge/license-MIT%2FApache-blue.svg)
[![crates.io](https://img.shields.io/crates/v/bevy_vello.svg)](https://crates.io/crates/bevy_vello)
[![docs.rs](https://img.shields.io/docsrs/bevy_vello)](https://docs.rs/bevy_vello)
[![crates.io](https://img.shields.io/crates/v/bevy-vello.svg)](https://crates.io/crates/bevy-vello)
[![docs.rs](https://img.shields.io/docsrs/bevy-vello)](https://docs.rs/bevy-vello)
[![Discord](https://img.shields.io/discord/913957940560531456.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/zrjnQzdjCB)

A bevy plugin which provides rendering support for [lottie](https://lottiefiles.com/what-is-lottie) animations and SVGs on [Bevy](https://bevyengine.org/) using [Vello](https://github.com/linebender/vello.git) and [Velato](https://github.com/linebender/velato). Supports **wasm** and **native**. Untested on Android/iOS (help needed).
Expand All @@ -11,11 +11,11 @@ A bevy plugin which provides rendering support for [lottie](https://lottiefiles.

## Bevy version support

**NOTE**: You must use a git rev for now, we cannot publish to crates.io. See [issue #3](https://github.com/vectorgameexperts/bevy_vello/issues/3).
**NOTE**: You must use a git rev for now, we cannot publish to crates.io. See [issue #3](https://github.com/vectorgameexperts/bevy-vello/issues/3).

|bevy|bevy-vello|
|---|---|
|0.11|1.0, main|
|0.11|0.2, main|
|<= 0.10|0.1|

## Features
Expand All @@ -28,7 +28,7 @@ A bevy plugin which provides rendering support for [lottie](https://lottiefiles.
|Foreground|Always on top of Ground/Background|
|UI|On top of Foreground layer; shows Bevy UI Nodes bundled with a `VelloVector` |
- Support for fonts
- NOTE: to avoid conflict with bevy's built-in font loader, rename fonts used by bevy_vello to something else (example: `*.vtff`). This can probably be an improvement in the future.
- NOTE: to avoid conflict with bevy's built-in font loader, rename fonts used by `bevy-vello` to something else (example: `*.vtff`). This can probably be an improvement in the future.
- Debug draw gizmos for the objects local origin (red X) and canvas size (white bounding box)

## Run Demo
Expand Down

0 comments on commit 194e695

Please sign in to comment.