Is this possible?

Started by JBR, January 13, 2021, 01:26:46

Previous topic - Next topic

JBR

Hi,

B3D creates one list for all types of a certain type.

What I'd like is to be able to have a 100 separate lists of the same type.

Is the only way to use arrays and Null the empty excess spaces?

Thanks, Jim.


Matty

There's no native way to do that in blitz3d you are correct.

However a solution using arrays would work but is not the only one.

RemiD

dim arrays are much easier to use and faster anyway (if you split your map in zones / childs, or your GUI in windows / childs)...

you just have to reorganize the array once each loop (if you delete some instances)...