Difference between revisions of "Bot Playground/Events/sit"

From SmartBots Developers Docs
Jump to: navigation, search
Line 19: Line 19:
 
Bot.on("sit", function(event) {  
 
Bot.on("sit", function(event) {  
 
if(event.sitting) {
 
if(event.sitting) {
  console.log("I'm sitting on the object ", event.object_uuid);
+
console.log("I'm sitting on the object ", event.object_uuid);
 
} else {
 
} else {
 
console.log("I'm standing now");
 
console.log("I'm standing now");

Revision as of 18:49, 11 July 2016

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.
prev_seat object { x, y, z } the sitting position (offset)

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");
	}
});