Hey, don't think this really belongs anywhere else. See when i'm calling a function, is there anyway i can only provide say the first 3 parameters?
eg.
But just do:
without having to type all the extra zero's in? It would make my code soooo much cleaner and easier to read for the guy i'm working with.
eg.
create_emittor( 10,10,10, 1, 3, 5, 0, 0, 0, 6, 10, 100, 400 Function create_emittor( x, y, z, part_type, rotx, roty, rotz, speed, par_rot, life, distance) ... ... End Function
But just do:
create_emittor(10,10,10,1)
without having to type all the extra zero's in? It would make my code soooo much cleaner and easier to read for the guy i'm working with.