Add the screenshot helper to the project, add assembly definitions and setup cross-references

This commit is contained in:
Michal Pikulski
2025-11-25 10:46:01 +01:00
parent 86c1df55f2
commit 83fcf24f52
89 changed files with 14031 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
// Created by SwanDEV 2017
using UnityEngine;
namespace SDev.Component
{
public class SDemoControl
{
public State m_State = State.Playing;
public enum State
{
/// <summary>
/// The tweening will be destroyed in the next update.
/// </summary>
Kill = 0,
Playing,
Paused,
}
public SelfAnimation.SelfAnimType m_SelfAnimType = SelfAnimation.SelfAnimType.None;
// public Vector3 initValue;
// public Vector3 fromValue;
// public Vector3 toValue;
// public float time = 0.5f;
// public float delay = 0f;
// public SDemoAnimation.LoopType loop = SDemoAnimation.LoopType.None;
// public bool destroyOnComplete = false;
// public bool executeAtStart = true;
// public bool enableInitValue = false;
//
// public UnityEvent onComplete;
}
}