This commit is contained in:
2024-04-22 00:00:51 +02:00
parent cf04700131
commit 11fd1a3d92
54 changed files with 11144 additions and 1416 deletions

View File

@@ -0,0 +1,6 @@
using UnityEngine;
public interface IAnimated
{
public Animator GetAnimator();
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 14fe157a3aea9784d892f9bc75881dc9
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -169,7 +169,7 @@ public class ObjectContainer : MonoBehaviour, IKeyframeSetter
public virtual void SetKeyframe(int frameNum = -1)
{
if (DoNotSave || !_setKeyframe) return;
Debug.Log("Setting frame for " + name);
//Debug.Log("Setting frame for " + name);
//if (Frames.Count == 0) SetDefaultFrame();
if (frameNum == -1) frameNum = TimelineController.Instance.CurrentFrame;