|
This function, together with STATE_3D_sequence_get_next()
are used for going over all the defined 3D sequences
Example
for(DWORD seq3d=STATE_3D_sequence_get_first(); seq3d!=NULL; seq3d=STATE_3D_sequence_get_next(seq3d) {
Write here the code to do for each seq3d
}
Note that the function STATE_3D_sequence_create() adds a new seq3d
to top of the queue. So STATE_3D_sequence_get_first()
will always return the last seq3d that was created.
The same rule is for all STATE_xxxx_get_first() functions.
|