Near finish

This commit is contained in:
2023-07-30 23:14:41 +05:30
parent 1569760e7b
commit 400336ef4f
1979 changed files with 1696464 additions and 301 deletions

View File

@@ -28,9 +28,10 @@ public class TweenHelper : MonoBehaviour
transform.localScale = startScale;
}
public bool intro = true;
void Start()
{
Intro();
if(intro)Intro();
}
public void Intro(){
@@ -76,6 +77,15 @@ public class TweenHelper : MonoBehaviour
}
public void MoveOut(){
LeanTween.move(gameObject, defaultPos + new Vector3(10000,0), position_time).setEase(position_type);
}
public void MoveIn(){
LeanTween.move(gameObject,Vector3.zero, position_time).setEase(position_type);
}
public void OutroAll(){
TweenManager.OutroAll();
}