Added Anne-Lise Hiding Spot plus Kids Hidding spots

This commit is contained in:
2025-10-06 12:38:16 +02:00
parent 027ff5144e
commit 01189acef1
29 changed files with 3328 additions and 112 deletions

View File

@@ -0,0 +1,26 @@
using UnityEngine;
using Pixelplacement;
public class AnneLiseBushPopBehaviour : MonoBehaviour
{
public Spline popSpline;
public Transform bushObject;
public float popDuration = 1f;
public float popDelay = 0f;
void Start()
{
// Example: Move bushObject along the spline from start (0) to end (1)
Tween.Spline(
popSpline,
bushObject,
1f,
0f,
false, // Do not orient to path
popDuration,
popDelay,
Tween.EaseInOut,
Tween.LoopType.PingPong
);
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 116af68fa272dc64ba6e58bd5e277631