ValheimWheels/EmoteWheelUnity/Assets/DuplicateTest.cs
Michael Schmidt abce1502da Add EquipWheel and AutoLoad
Add shaders for rendering selection wheel
Add TrashItems packmod script
2021-03-16 17:14:43 +01:00

23 lines
459 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DuplicateTest : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
var child = transform.GetChild(0);
for(int i = 0; i < 2000; i++)
{
Instantiate(child, transform);
}
}
// Update is called once per frame
void Update()
{
}
}