Ok, this is a pretty simple question, considering how long i've been using blitz.
I want to have a type collection like so:
Now, if the movement field = 1 then i want to have the data_ field as a type collection, containing the movement data. I have two questions though.
1. Is this possible?
and
2. Is the data contained within the data_field, exclusive to that particular type object? I mean, say i create new data in the type collection data_, would any other Type objects from the ENTITY collection be able to access data, that field did not create?
I want to have a type collection like so:
Type Entity Field x,,z Field rotx,roty,rotz Field movement ; if movement type = 1 then data is needed Field movement_type Field data_ End Type
Now, if the movement field = 1 then i want to have the data_ field as a type collection, containing the movement data. I have two questions though.
1. Is this possible?
and
2. Is the data contained within the data_field, exclusive to that particular type object? I mean, say i create new data in the type collection data_, would any other Type objects from the ENTITY collection be able to access data, that field did not create?