Added cementmachine with animated states

This commit is contained in:
2025-12-01 18:36:17 +01:00
parent 789ffcf929
commit e9ba3b7431
10 changed files with 146 additions and 846 deletions

View File

@@ -0,0 +1,22 @@
using UnityEngine;
using DG.Tweening;
public class MissingPartVisualBehavior : MonoBehaviour
{
public float targetScale;
public float scaleDuration;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
transform.DOScale(targetScale, scaleDuration).SetLoops(-1, LoopType.Yoyo);
}
// Update is called once per frame
void Update()
{
}
}