Returns whether object is a valid Drawing object.
object
function isrenderobj(object: any): boolean
object - The object to determine.
print(isrenderobj(Drawing.new("Square"))) -- Output: true print(isrenderobj(game)) -- Output: false
Last updated 2 months ago