initial commit

This commit is contained in:
2026-03-22 03:21:45 +02:00
commit 897fea9f4e
15431 changed files with 2548840 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
.git
.gitignore
.idea
.bin
.DS_Store

View File

@@ -0,0 +1 @@
#Folder Structure For Jibo S kills Project

View File

@@ -0,0 +1,59 @@
{
"framerate": 30,
"duration": 60,
"layers": [
{
"id": "832d41d5e0934c00bc75634b9a305812",
"name": "Body #1",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"Head": 0,
"Torso": 0,
"Pelvis": 0
},
"time": 0
},
{
"value": {
"Head": 56.000000000000014,
"Torso": -65.5,
"Pelvis": 0
},
"time": 29
},
{
"value": {
"Head": 0,
"Torso": 0,
"Pelvis": 0
},
"time": 59
}
]
},
{
"id": "1fd26d531b6e46ab81578d2c4b5ba169",
"name": "Eye Texture #1",
"type": "Eye Texture",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"Texture": "animations/textures/lens.png",
"Color": {
"h": 0,
"s": 0,
"v": 100
}
},
"time": 0
}
]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 766 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,57 @@
{
"91": {
"id": 91,
"class": "Sequence",
"name": "",
"args": [],
"children": [
111,
114,
112
],
"decorators": []
},
"111": {
"id": 111,
"class": "PlayAudio",
"name": "",
"asset-pack": "core",
"parent": 91,
"args": [
"FX_Blip.mp3"
]
},
"112": {
"id": 112,
"class": "Subtree",
"name": "",
"asset-pack": "core",
"parent": 91,
"args": [
"idle.bt",
[
"() => {",
"\treturn {};",
"}"
],
[
"(result) => {",
"}"
]
]
},
"114": {
"id": 114,
"class": "PlayAnimation",
"name": "",
"asset-pack": "core",
"parent": 91,
"args": [
"jon-dance.keys",
[
"(animation) => {",
"}"
]
]
}
}

View File

@@ -0,0 +1,17 @@
{
"name": "__package-name__",
"jibo": {
"type": "asset-pack",
"display-name": "__display-name__"
},
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"jibo": "git+ssh://git@github.jibo.com:sdk/jibo.git#v0.9.2"
},
"license": "UNLICENSED"
}

View File

@@ -0,0 +1 @@
TopRule = $* (hello world){what='hello'} $*;

View File

@@ -0,0 +1,13 @@
{
"TestDebugBehavior": {
"type": "leaf",
"args": ["string"],
"meta": [
{
"field": "text",
"description": "text.",
"defaultValue": "null"
}
]
}
}

View File

@@ -0,0 +1,23 @@
let Module = require('module');
let jibo = require('jibo');
let {Status, createBehavior, factory} = jibo.bt;
module.exports = createBehavior({
constructor(text) {
this.text = text;
this.status = Status.INVALID;
},
start() {
this.status = Status.SUCCEEDED;
console.log('Jon Debug: ' + this.text);
return true;
},
stop() {
},
update() {
return this.status;
}
});
factory.addBehavior(module, 'jon-asset-pack');

View File

@@ -0,0 +1 @@
require('./behaviors/jon-debug-behavior');