Skip to content

Instantly share code, notes, and snippets.

View AlvinC101's full-sized avatar

TSAUR WEN-YU AlvinC101

  • Yuan Ze University
  • 11:43 (UTC +08:00)
View GitHub Profile
@AlvinC101
AlvinC101 / AnimationSystem.cs
Created May 12, 2025 04:31 — forked from adammyhre/AnimationSystem.cs
Simple Wrapper for Unity Playables API
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Animations;
using UnityEngine.Playables;
using MEC; // Uses More Effective Coroutines from the Unity Asset Store
public class AnimationSystem {
PlayableGraph playableGraph;
readonly AnimationMixerPlayable topLevelMixer;