This is my first post here. I hope I'm posting in the right forum.
I'm currently working on some audio reactive visuals, but I've got a problem with spawning 3D models.
I can spawn boxes perfectly fine, but when it comes to importing 3D models I've got a problem. I just can't figure it how to spawn them. The 3D models are made in 3DS Max, and exporting to different filetypes is no problem.
I'm using 2 classes, object classes, which each represent an object, and one objects class, which hold all the object classes.
As you might've guessed, I was trying to draw an 3D model in each object class. (Replaced it with a box right now)
Objects class:
public class Objects
{
ArrayList objects = new ArrayList();
float prevLow = 0;
float prevMid = 0;
float prevHigh = 0;
float amp;
void spawnObjects(int spawnAmmount, int lifeSpan, int spawnRadius1, int spawnRadius2)