mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
36a665c941
* Love Lab (Initialization) * Spotlight and Miss things spotlight for boy and girl early stuff for miss anims and logic (made the broken shards as prefab) * Custom Shakes (init) idk about the rest, some bug fixes and some tweaks * custom shakes almost fully implemented missing "miss" stuff but ok on autoplay * code cleanup * bop and auto down fix * hearts init + optimize tod * updated to main * fixed repo * Heart Stuff (again) * reup * reup (for real)
26 lines
669 B
C#
26 lines
669 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace HeavenStudio.Games.Scripts_LoveLab
|
|
{
|
|
public class LoveLabHeartMisc : MonoBehaviour
|
|
{
|
|
[SerializeField] GameObject heart;
|
|
[SerializeField] GameObject completeHeart;
|
|
public async void destroyObj()
|
|
{
|
|
await Task.Delay(100);
|
|
Destroy(heart);
|
|
}
|
|
|
|
public void createHeart()
|
|
{
|
|
Debug.Log("heart");
|
|
//LoveLabHearts ch = Instantiate(completeHeart, LoveLab.instance.getHeartHolder()).GetComponent<LoveLabHearts>();
|
|
}
|
|
}
|
|
}
|
|
|