Hello, thanx for popping in. I have this question:
First there are commands such as:
dbMakeVector2(id);
dbMakeVector3(id);
and
dbDeleteVector2(id);
dbDeleteVector3(id);
Question is what the topic subject reads.
Do these different KINDS of vectors use different ID pools?
For instance - will these COEXIST or Will the dbMakeVector3(1) seem to overwrite dbMakeVector2(1)?:
dbMakeVector2(1);
dbMakeVector3(1);
(If you know great - tests I've so far - don't crash. I even tried deleting the same vector 2 times. I haven't tried storing and retrieving values because this wouldn't necessarily be definitive)
Thanx in advance.