$$QUERY Objects f:Object [o:Object] animation frame qObjAnimFrame Object animation frame Get an object's animation frame Parameters: Object: the object whose animation frame is being queried $$END */
| 5769 | $$END |
| 5770 | */ |
| 5771 | float qObjAnimFrame(int objref) { |
| 5772 | float anim_frame; |
| 5773 | |
| 5774 | Obj_Value(objref, VF_GET, OBJV_F_ANIM_FRAME, &anim_frame); |
| 5775 | |
| 5776 | return anim_frame; |
| 5777 | } |
| 5778 | |
| 5779 | /* |
| 5780 | $$QUERY |
no test coverage detected