Difference between revisions of "Bot Playground/Events/sit"
From SmartBots Developers Docs
Line 18: | Line 18: | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
Bot.on("sit", function(event) { | 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"); | ||
+ | } | ||
}); | }); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{NavMenu}} | {{NavMenu}} |
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");
}
});