New anim added

This commit is contained in:
2023-01-18 18:04:32 +05:30
parent 652134f007
commit 638cae044d
103 changed files with 17807 additions and 20 deletions

View File

@@ -63,4 +63,13 @@ public class LevelGenerator : MonoBehaviour
{
}
void OnDrawGizmos(){
if(Levels == null){return;}
if(Levels.Count < 2){return;}
for(int i=1; i < Levels.Count; i++){
Gizmos.DrawLine(new Vector3((i-1)*spaceBetween, Levels[i-1]), new Vector3((i)*spaceBetween, Levels[i]));
}
}
}