DarkBASIC Professional Help Wiki
Advertisement


This command will return an integer of the current animation interpolation percentage of the specified 3D object.

Syntax
Return Float=OBJECT INTERPOLATION(Object Number)
Parameters
Object Number

Integer
The object number

Returns

This command will return a current animation interpolation percentage value of the specified 3D object

Description

The parameter should be specified using an integer value.

Example Code
backdrop off : cls : sync on : sync rate 0 : hide mouse:cls 0

ObjectNumber=1

load object "models\model.x",ObjectNumber

print "BASIC3D EXPRESSION DATA"

if object exist(ObjectNumber)=1

print "interpolation:";object interpolation(ObjectNumber)

endif

while mouseclick()=0

sync

endwhile

if object exist(ObjectNumber)=1 then delete object ObjectNumber

end
Advertisement