Skip to content

Commit

Permalink
Merge pull request #69 from SlimeYummy/feat/version
Browse files Browse the repository at this point in the history
Feat/version
  • Loading branch information
SlimeYummy authored Apr 16, 2024
2 parents 75fad08 + 0e1b994 commit 7cf4149
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ozz-animation-rs"
version = "0.8.1"
version = "0.9.0"
authors = ["SlimeYummy <zzzcccnnn@outlook.com>"]
edition = "2021"
rust-version = "1.75"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ The library supports almost all runtime features supported by C++ version ozz, i
- Animation blending (partial/additive blending)
- Two bone IK
- Aim (Look-at) IK
- User channels
- Skinning
- Multi-threading
- SIMD (SSE2 + NEON)
- WASM

The following functions are not supported yet:
- User channels (developing)
- Skinning (developing)
- Baked physic simulation (no plan)
- All offline features (no plan, use C++ library instead)

Ozz-animation offline features are not supported, and no plans to support. Please use the original C++ library, which has a many tools and plug-ins.

Expand Down
20 changes: 10 additions & 10 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ mod ik_two_bone_job;
mod local_to_model_job;
mod sampling_job;
mod skeleton;
// mod skinning_job;
// mod track;
// mod track_sampling_job;
// mod track_triggering_job;
mod skinning_job;
mod track;
mod track_sampling_job;
mod track_triggering_job;

pub mod math;
#[cfg(all(feature = "wasm", feature = "nodejs"))]
Expand All @@ -80,9 +80,9 @@ pub use sampling_job::{
InterpSoaFloat3, InterpSoaQuaternion, SamplingContext, SamplingJob, SamplingJobArc, SamplingJobRc, SamplingJobRef,
};
pub use skeleton::Skeleton;
// pub use skinning_job::{SkinningJob, SkinningJobArc, SkinningJobRc, SkinningJobRef};
// pub use track::Track;
// pub use track_sampling_job::{TrackSamplingJob, TrackSamplingJobArc, TrackSamplingJobRc, TrackSamplingJobRef};
// pub use track_triggering_job::{
// TrackTriggeringJob, TrackTriggeringJobArc, TrackTriggeringJobRc, TrackTriggeringJobRef,
// };
pub use skinning_job::{SkinningJob, SkinningJobArc, SkinningJobRc, SkinningJobRef};
pub use track::Track;
pub use track_sampling_job::{TrackSamplingJob, TrackSamplingJobArc, TrackSamplingJobRc, TrackSamplingJobRef};
pub use track_triggering_job::{
TrackTriggeringJob, TrackTriggeringJobArc, TrackTriggeringJobRc, TrackTriggeringJobRef,
};

0 comments on commit 7cf4149

Please sign in to comment.