strcpy(nazwy[3],"pozycja_las_1");
tym[0]=nazwy[3].x;
tym[1]=nazwy[3].y;
why i can't get x,y coordinates of "pozycja las" actor?
the error is- illegal structure....
Actor* ActorArray[10];
int XYArray[2];
ActorArray[0] = getclone("myActor");
XYArray[0] = ActorArray[0]->x;
XYArray[1] = ActorArray[0]->y;
strcpy(nazwy[3],"pozycja_las_1.0"); // .0 is the clone index.
tym[0]=getclone(nazwy[3])->x;
tym[1]=getclone(nazwy[3])->y;
int desired_cloneindex = 5;
char buffer[50];
Actor* ActorArray[10];
sprintf(buffer, "myActor.%d", desired_cloneindex);
ActorArray[0] = getclone(buffer);
Users browsing this forum: No registered users and 1 guest