sit

From SmartBots Developers Docs
Jump to: navigation, search

Fires when bot sits on the object

Bot.on("sit", function(event) { ... });

Reference

This event comes with the following event object:

Variable Required Description
event object properties:
sitting boolean [boolean] true if bot seated on the object, false if it stands
object_uuid the UUID of the object bot is sitting on. NULL_KEY if bot is standing.
position object { x, y, z } the sitting position (offset). Empty object if sitting==false

Example

Bot.on("sit", function(event) { 
	if(event.sitting) {
		console.log("I'm sitting on the object ", event.object_uuid);
	} else {
		console.log("I'm standing now");
	}
});