Initial commit (#31)
* Create blocks * Delete blocks * Create Blocks.js * Add files via upload * Update Blocks.js * Update metadata.js
42
applications/blocks/Blocks-help.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Blocks help</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600,700" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
width: 440px;
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-size: 15px;
|
||||
display: block;
|
||||
align-items: left;
|
||||
color: rgb(255, 255, 255);
|
||||
background: linear-gradient(#2b2b2b, #285c81);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="top-bar">
|
||||
<h1>Blocks help</h1>
|
||||
<p>With this program you can build blocks 'minecraft' style</p>
|
||||
<p>First spawn a starting block by pressing on the cube with + </p>
|
||||
<p>Hover over block to edit it with shortcuts on keyboard </p>
|
||||
<p>and mouse</p>
|
||||
<p> </p>
|
||||
<p>- "X" on keyboard for locking the X direction</p>
|
||||
<p>- "Y" on keyboard for locking the Y direction</p>
|
||||
<p>- "Z" on keyboard for locking the Z direction</p>
|
||||
<p>- "CTRL" on keyboard for rotating with mousewheel </p>
|
||||
<p>- "SHIFT" on keyboard for scaling with mousewheel </p>
|
||||
<p>- "ALT" on keyboard for moving with mousewheel </p>
|
||||
<p>- "DELETE" on keyboard for removing block </p>
|
||||
<p>- Left mouse click on surface for adding block </p>
|
||||
<p>- Middle mouse click on surface for removing block </p>
|
||||
<p>- Thrashcan removes all blocks that you made </p>
|
||||
<p> </p>
|
||||
<p>Click this help page to delete it</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
658
applications/blocks/Blocks.js
Normal file
|
@ -0,0 +1,658 @@
|
|||
//
|
||||
// Blocks.js
|
||||
//
|
||||
// created by Basinsky on 09/12/21
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
var isShiftPressed = false;
|
||||
var isControlPressed = false;
|
||||
var isAltPressed = false;
|
||||
var newPosition;
|
||||
var newDirection;
|
||||
var hoverID;
|
||||
var webPageID;
|
||||
var hoverProps = {};
|
||||
var originalPosition;
|
||||
var objectSize;
|
||||
var STEP_SIZE = 0.01;
|
||||
var reset = false;
|
||||
var RESET_TIME = 100;
|
||||
var SEARCH_RADIUS = 100;
|
||||
var LOCATION_ROOT_URL = Script.resolvePath(".");
|
||||
var ICON_LIBRARY_URL = LOCATION_ROOT_URL + "Icons/Blocks-icons.json";
|
||||
var ICON_URL = LOCATION_ROOT_URL + "Icons/";
|
||||
var allOverlays = [];
|
||||
var iconLibrary = Script.require(ICON_LIBRARY_URL + "?" + Date.now());
|
||||
var ICON_SIZE = 40;
|
||||
var iconSelection = 0;
|
||||
var icon;
|
||||
var ICON_HORIZONTAL_ANCHOR = 50;
|
||||
var ICON_VERTICAL_ANCHOR = 70;
|
||||
var ICON_SHOW_TIME = 500;// ms
|
||||
var UPDATE_TIME = 50; // ms
|
||||
var isRunning = false;
|
||||
var colorsIDs = [];
|
||||
var isXPressed = false;
|
||||
var isYPressed = false;
|
||||
var isZPressed = false;
|
||||
var currentDirection = "Y";
|
||||
var directionID;
|
||||
var mainLoop;
|
||||
var keys = [];
|
||||
var UIkeys = ["x","X","y","Y","z","Z","ALT","SHIFT","CONTROL","DELETE"];
|
||||
|
||||
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
||||
var button;
|
||||
|
||||
button = tablet.addButton({
|
||||
icon: LOCATION_ROOT_URL + "blocks-inactive.svg?" + Date.now(),
|
||||
activeIcon: LOCATION_ROOT_URL + "blocks-active.svg?" + Date.now(),
|
||||
text: "BLOCKS",
|
||||
sortOrder: 12
|
||||
});
|
||||
|
||||
var screenSize = Controller.getViewportDimensions();
|
||||
|
||||
Script.include("/~/system/libraries/toolBars.js");
|
||||
|
||||
var colorToolBar = new ToolBar(ICON_HORIZONTAL_ANCHOR,ICON_VERTICAL_ANCHOR, ToolBar.VERTICAL, "placeBlocks-colorToolbar");
|
||||
|
||||
var LIST_NAME = "SelectionExample",
|
||||
ITEM_TYPE = "entity",
|
||||
HIGHLIGHT_STYLE = {
|
||||
outlineUnoccludedColor: { red: 0, green: 255, blue: 255 },
|
||||
outlineUnoccludedAlpha: 0.8,
|
||||
outlineOccludedColor: { red: 0, green: 255, blue: 255 },
|
||||
outlineOccludedAlpha: 0.8,
|
||||
outlineWidth: 2
|
||||
};
|
||||
|
||||
Selection.enableListHighlight(LIST_NAME, HIGHLIGHT_STYLE);
|
||||
|
||||
Script.setInterval(function () {
|
||||
reset = true;
|
||||
}, RESET_TIME);
|
||||
|
||||
// functions
|
||||
function prefetchIcons() {
|
||||
for (var t = 0; t < iconLibrary.iconData.length; t++) {
|
||||
if (iconLibrary.iconData[t].inactive !== null) {
|
||||
TextureCache.prefetch(iconLibrary.iconData[t].inactive);
|
||||
TextureCache.prefetch(iconLibrary.iconData[t].active);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createMainloop() {
|
||||
mainLoop = Script.setInterval(function () {
|
||||
if (isRunning) {
|
||||
if (hoverID) {
|
||||
if (isControlPressed) {
|
||||
HIGHLIGHT_STYLE = {
|
||||
outlineUnoccludedColor: { red: 0, green: 255, blue: 255 },
|
||||
outlineUnoccludedAlpha: 0.8,
|
||||
outlineOccludedColor: { red: 0, green: 255, blue: 255 },
|
||||
outlineOccludedAlpha: 0.8,
|
||||
outlineWidth: 2
|
||||
};
|
||||
}
|
||||
if (isAltPressed) {
|
||||
HIGHLIGHT_STYLE = {
|
||||
outlineUnoccludedColor: { red: 255, green: 255, blue: 0 },
|
||||
outlineUnoccludedAlpha: 0.8,
|
||||
outlineOccludedColor: { red: 255, green: 255, blue: 0 },
|
||||
outlineOccludedAlpha: 0.8,
|
||||
outlineWidth: 2
|
||||
};
|
||||
}
|
||||
if (isShiftPressed) {
|
||||
HIGHLIGHT_STYLE = {
|
||||
outlineUnoccludedColor: { red: 255, green: 0, blue: 255 },
|
||||
outlineUnoccludedAlpha: 0.8,
|
||||
outlineOccludedColor: { red: 255, green: 0, blue: 255 },
|
||||
outlineOccludedAlpha: 0.8,
|
||||
outlineWidth: 2
|
||||
};
|
||||
}
|
||||
Selection.enableListHighlight(LIST_NAME, HIGHLIGHT_STYLE);
|
||||
if (isShiftPressed || isAltPressed || isControlPressed) {
|
||||
Selection.clearSelectedItemsList(LIST_NAME);
|
||||
Selection.addToSelectedItemsList(LIST_NAME, ITEM_TYPE, hoverID);
|
||||
if (currentDirection === "X") {
|
||||
addDirection(hoverID,"X");
|
||||
}
|
||||
if (currentDirection === "Y") {
|
||||
addDirection(hoverID,"Y");
|
||||
}
|
||||
if (currentDirection === "Z") {
|
||||
addDirection(hoverID,"Z");
|
||||
}
|
||||
} else {
|
||||
if (directionID) {
|
||||
Entities.deleteEntity(directionID);
|
||||
}
|
||||
Selection.clearSelectedItemsList(LIST_NAME);
|
||||
}
|
||||
}
|
||||
}
|
||||
}, UPDATE_TIME);
|
||||
}
|
||||
|
||||
function loadColors() {
|
||||
for (var i = 0; i < iconLibrary.iconData.length; i++) {
|
||||
if (iconLibrary.iconData[i].type === "color") {
|
||||
icon = JSON.parse(iconLibrary.iconData[i].color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function addIcons() {
|
||||
if (colorToolBar === undefined) {
|
||||
colorToolBar = new ToolBar(ICON_HORIZONTAL_ANCHOR,
|
||||
ICON_VERTICAL_ANCHOR,
|
||||
ToolBar.VERTICAL,
|
||||
"placeBlocks-colorToolbar");
|
||||
}
|
||||
var overlayID;
|
||||
for (var t = 0; t < iconLibrary.iconData.length; t++) {
|
||||
if (iconLibrary.iconData[t].inactive !== null) {
|
||||
if (iconLibrary.iconData[t].type === "color") {
|
||||
overlayID = colorToolBar.addTool({
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: ICON_SIZE,
|
||||
height: ICON_SIZE,
|
||||
imageURL: LOCATION_ROOT_URL + "Icons/" + iconLibrary.iconData[t].inactive,
|
||||
alpha: 1,
|
||||
visible: true
|
||||
});
|
||||
colorsIDs.push(overlayID);
|
||||
}
|
||||
if (iconLibrary.iconData[t].type === "action") {
|
||||
overlayID = colorToolBar.addTool({
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: ICON_SIZE,
|
||||
height: ICON_SIZE,
|
||||
imageURL: LOCATION_ROOT_URL + "Icons/" + iconLibrary.iconData[t].inactive,
|
||||
alpha: 1,
|
||||
visible: true
|
||||
});
|
||||
colorsIDs.push(overlayID);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function deleteAll() {
|
||||
var allEnts = Entities.findEntities(MyAvatar.position,SEARCH_RADIUS);
|
||||
for (var k in allEnts) {
|
||||
var deleteProps = Entities.getEntityProperties(allEnts[k]);
|
||||
if (deleteProps.name === "buildSystem" && deleteProps.description === MyAvatar.displayName) {
|
||||
if (MyAvatar.displayName !== "anonymous") {
|
||||
Entities.deleteEntity(deleteProps.id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function addDirection(currentBlockID,dir) {
|
||||
var directionRotation;
|
||||
var directionColor;
|
||||
var directionDimensions;
|
||||
|
||||
if (directionID) {
|
||||
Entities.deleteEntity(directionID);
|
||||
}
|
||||
if (dir === "X") {
|
||||
directionRotation = Quat.fromPitchYawRollRadians(0,0,Math.PI/2);
|
||||
directionColor = {r: 255,g: 0,b: 0};
|
||||
directionDimensions = {x: 0.003,y: 100,z: 0.003};
|
||||
}
|
||||
if (dir === "Y") {
|
||||
directionRotation = Quat.fromPitchYawRollRadians(0,0,0);
|
||||
directionColor = {r: 0,g: 255,b: 0};
|
||||
directionDimensions = {x: 0.003,y: 100,z: 0.003};
|
||||
}
|
||||
if (dir === "Z") {
|
||||
directionRotation = Quat.fromPitchYawRollRadians(Math.PI/2,0,0);
|
||||
directionColor = {r: 0,g: 0,b: 255};
|
||||
directionDimensions = {x: 0.003,y: 100,z: 0.003};
|
||||
}
|
||||
|
||||
directionID = Entities.addEntity({
|
||||
type: "Shape",
|
||||
shape: "Cylinder",
|
||||
name: "y-axis",
|
||||
parentID: currentBlockID,
|
||||
localPosition: {x: 0,y: 0,z: 0},
|
||||
localRotation: directionRotation,
|
||||
lifetime: 3,
|
||||
color: directionColor,
|
||||
alpha: 1,
|
||||
dimensions: directionDimensions,
|
||||
ignoreForCollisions: true,
|
||||
userData: "{ \"grabbableKey\": { \"grabbable\": false, \"triggerable\": false}}"
|
||||
},"local");
|
||||
}
|
||||
|
||||
function newBlock() {
|
||||
var cubePos = Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.7, z: -2 }));
|
||||
Entities.addEntity({
|
||||
type: "Box",
|
||||
name: "buildSystem",
|
||||
description: MyAvatar.displayName,
|
||||
position: cubePos,
|
||||
color: { r: 50, g: 50, b: 50 },
|
||||
rotation: MyAvatar.orientation,
|
||||
dimensions: { x: 0.1, y: 0.1, z: 0.1 },
|
||||
grab: {triggerable: true,grabbable: false},
|
||||
lifetime: -1
|
||||
});
|
||||
}
|
||||
|
||||
function deleteBlock() {
|
||||
if (hoverID) {
|
||||
var deleteProps = Entities.getEntityProperties(hoverID);
|
||||
if (deleteProps.name === "buildSystem" && deleteProps.description === MyAvatar.displayName) {
|
||||
Entities.deleteEntity(hoverID);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function showHelpPage() {
|
||||
var METERS_TO_INCHES = 39.3701;
|
||||
webPageID = Entities.addEntity({
|
||||
type: "Web",
|
||||
name: "blocks-help",
|
||||
sourceUrl: LOCATION_ROOT_URL + "Blocks-help.html",
|
||||
position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.8, z: -1.4 })),
|
||||
rotation: MyAvatar.orientation,
|
||||
dimensions: {
|
||||
x: 0.7,
|
||||
y: 1,
|
||||
z: 0.01
|
||||
},
|
||||
dpi: 1920 / (3 * METERS_TO_INCHES),
|
||||
lifetime: 60 // Delete after 5 minutes.
|
||||
});
|
||||
}
|
||||
|
||||
// events
|
||||
|
||||
function wheelEvent(event) {
|
||||
if (isRunning) {
|
||||
if (hoverID) {
|
||||
var currentProps = Entities.getEntityProperties(hoverID);
|
||||
var newDir;
|
||||
var newDim;
|
||||
var newPos;
|
||||
var newRot;
|
||||
var direction = 1;
|
||||
|
||||
if (event.delta > 0) {
|
||||
direction = 1;
|
||||
} else {
|
||||
direction = -1;
|
||||
}
|
||||
|
||||
if (isShiftPressed) {
|
||||
if (currentDirection === "X") {
|
||||
if (direction > 0) {
|
||||
newDim =
|
||||
{
|
||||
x: currentProps.dimensions.x + STEP_SIZE,
|
||||
y: currentProps.dimensions.y,
|
||||
z: currentProps.dimensions.z
|
||||
};
|
||||
} else {
|
||||
newDim =
|
||||
{
|
||||
x: currentProps.dimensions.x - STEP_SIZE,
|
||||
y: currentProps.dimensions.y,
|
||||
z: currentProps.dimensions.z
|
||||
};
|
||||
}
|
||||
}
|
||||
if (currentDirection === "Y") {
|
||||
if (direction > 0) {
|
||||
newDim =
|
||||
{
|
||||
x: currentProps.dimensions.x,
|
||||
y: currentProps.dimensions.y + STEP_SIZE,
|
||||
z: currentProps.dimensions.z
|
||||
};
|
||||
} else {
|
||||
newDim =
|
||||
{
|
||||
x: currentProps.dimensions.x,
|
||||
y: currentProps.dimensions.y - STEP_SIZE,
|
||||
z: currentProps.dimensions.z
|
||||
};
|
||||
}
|
||||
}
|
||||
if (currentDirection === "Z") {
|
||||
if (direction > 0) {
|
||||
newDim =
|
||||
{
|
||||
x: currentProps.dimensions.x,
|
||||
y: currentProps.dimensions.y,
|
||||
z: currentProps.dimensions.z + STEP_SIZE
|
||||
};
|
||||
} else {
|
||||
newDim =
|
||||
{
|
||||
x: currentProps.dimensions.x,
|
||||
y: currentProps.dimensions.y,
|
||||
z: currentProps.dimensions.z - STEP_SIZE
|
||||
};
|
||||
}
|
||||
}
|
||||
Entities.editEntity(hoverID,{
|
||||
dimensions: newDim
|
||||
});
|
||||
}
|
||||
|
||||
if (isControlPressed) {
|
||||
if (currentDirection === "X") {
|
||||
newRot = Quat.multiply(currentProps.rotation, Quat.fromPitchYawRollDegrees(5 * direction,0,0));
|
||||
}
|
||||
if (currentDirection === "Y") {
|
||||
newRot = Quat.multiply(currentProps.rotation, Quat.fromPitchYawRollDegrees(0,5 * direction,0));
|
||||
}
|
||||
if (currentDirection === "Z") {
|
||||
newRot = Quat.multiply(currentProps.rotation, Quat.fromPitchYawRollDegrees(0,0,5 * direction));
|
||||
}
|
||||
Entities.editEntity(hoverID,{
|
||||
rotation: newRot
|
||||
});
|
||||
}
|
||||
|
||||
if (isAltPressed) {
|
||||
if (currentDirection === "X") {
|
||||
newDir = {
|
||||
x: direction * STEP_SIZE ,
|
||||
y: 0 ,
|
||||
z: 0 };
|
||||
newPos = Vec3.sum(currentProps.position, Vec3.multiplyQbyV(currentProps.rotation, newDir));
|
||||
}
|
||||
if (currentDirection === "Y") {
|
||||
newDir = {
|
||||
x: 0 ,
|
||||
y: direction * STEP_SIZE ,
|
||||
z: 0 };
|
||||
newPos = Vec3.sum(currentProps.position, Vec3.multiplyQbyV(currentProps.rotation, newDir));
|
||||
}
|
||||
if (currentDirection === "Z") {
|
||||
newDir = {
|
||||
x: 0,
|
||||
y: 0,
|
||||
z: direction * STEP_SIZE };
|
||||
newPos = Vec3.sum(currentProps.position, Vec3.multiplyQbyV(currentProps.rotation, newDir));
|
||||
}
|
||||
Entities.editEntity(hoverID,{
|
||||
position: newPos
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function mousePressEvent(event) {
|
||||
if (isRunning) {
|
||||
var overlay = Overlays.getOverlayAtPoint({ x: event.x, y: event.y });
|
||||
var clickedIcon = colorToolBar.clicked(overlay);
|
||||
if (colorsIDs.indexOf(clickedIcon) !== -1) {
|
||||
if (iconLibrary.iconData[iconSelection].type === "color") {
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[iconSelection].inactive,colorsIDs[iconSelection]);
|
||||
if (colorToolBar.clicked(clickedIcon)) {
|
||||
iconSelection = clickedIcon;
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[clickedIcon].active,clickedIcon);
|
||||
}
|
||||
}
|
||||
if (iconLibrary.iconData[iconSelection].type === "action") {
|
||||
iconSelection = clickedIcon;
|
||||
if (iconLibrary.iconData[iconSelection].name === "newblock") {
|
||||
newBlock();
|
||||
Script.setTimeout(function () {
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[iconSelection].inactive,colorsIDs[iconSelection]);
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[0].active,colorsIDs[0]);
|
||||
iconSelection = 0;
|
||||
}, ICON_SHOW_TIME);
|
||||
|
||||
}
|
||||
if (iconLibrary.iconData[iconSelection].name === "deleteall") {
|
||||
deleteAll();
|
||||
Script.setTimeout(function () {
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[iconSelection].inactive,colorsIDs[iconSelection]);
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[0].active,colorsIDs[0]);
|
||||
iconSelection = 0;
|
||||
}, ICON_SHOW_TIME);
|
||||
}
|
||||
if (iconLibrary.iconData[iconSelection].name === "help") {
|
||||
showHelpPage();
|
||||
Script.setTimeout(function () {
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[iconSelection].inactive,colorsIDs[iconSelection]);
|
||||
colorToolBar.setImageURL(ICON_URL +
|
||||
iconLibrary.iconData[0].active,colorsIDs[0]);
|
||||
iconSelection = 0;
|
||||
}, ICON_SHOW_TIME);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function hoverOverEntity(entityID) {
|
||||
if (isRunning) {
|
||||
if (entityID !== hoverID || hoverID === undefined) {
|
||||
hoverProps = Entities.getEntityProperties (entityID);
|
||||
if (hoverProps.name === "buildSystem") {
|
||||
hoverID = entityID;
|
||||
} else {
|
||||
hoverID = undefined;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function mousePressOnEntity(entityID, event) {
|
||||
if (isRunning) {
|
||||
var objectProps = {};
|
||||
if (event.isPrimaryButton && reset) {
|
||||
reset = false;
|
||||
objectProps = Entities.getEntityProperties(entityID);
|
||||
if (objectProps.type === "Box" && objectProps.name === "buildSystem") {
|
||||
var newPosition = objectProps.position;
|
||||
originalPosition = objectProps.position;
|
||||
objectSize = objectProps.dimensions;
|
||||
var objectRot = objectProps.rotation;
|
||||
var surfaceNormal = event.normal;
|
||||
var mainAxisFront = Quat.getFront(objectRot);
|
||||
var mainAxisRight = Quat.getRight(objectRot);
|
||||
var mainAxisUp = Quat.getUp(objectRot);
|
||||
var directionz = 0;
|
||||
var directiony = 0;
|
||||
var directionx = 0;
|
||||
var dotFront = Vec3.dot(surfaceNormal,mainAxisFront);
|
||||
var dotRight = Vec3.dot(surfaceNormal,mainAxisRight);
|
||||
var dotUp = Vec3.dot(surfaceNormal,mainAxisUp);
|
||||
|
||||
if (Math.abs(dotRight) > 0.98) {
|
||||
if (dotRight > 0) {
|
||||
directionx = objectProps.dimensions.x;
|
||||
} else {
|
||||
directionx = -objectProps.dimensions.x;
|
||||
}
|
||||
}
|
||||
|
||||
if (Math.abs(dotUp) > 0.98) {
|
||||
if (dotUp > 0) {
|
||||
directiony = objectProps.dimensions.y;
|
||||
} else {
|
||||
directiony = -objectProps.dimensions.y;
|
||||
}
|
||||
}
|
||||
|
||||
if (Math.abs(dotFront) > 0.98) {
|
||||
if (dotFront > 0) {
|
||||
directionz = -objectProps.dimensions.z;
|
||||
} else {
|
||||
directionz = objectProps.dimensions.z;
|
||||
}
|
||||
}
|
||||
newDirection = { x: directionx, y: directiony, z: directionz };
|
||||
newPosition = Vec3.sum(originalPosition, Vec3.multiplyQbyV(objectRot, newDirection));
|
||||
if (iconLibrary.iconData[iconSelection].type === "color") {
|
||||
var iconColor = JSON.parse(iconLibrary.iconData[iconSelection].color);
|
||||
hoverID = Entities.addEntity({
|
||||
type: "Box",
|
||||
name: "buildSystem",
|
||||
description: MyAvatar.displayName,
|
||||
position: newPosition,
|
||||
color: iconColor,
|
||||
rotation: objectRot,
|
||||
dimensions: objectSize,
|
||||
grab: {triggerable: true,grabbable: false},
|
||||
lifetime: -1
|
||||
});
|
||||
}
|
||||
}
|
||||
if (objectProps.type === "Web" && objectProps.name === "blocks-help") {
|
||||
Entities.deleteEntity(objectProps.id);
|
||||
}
|
||||
}
|
||||
if (event.isMiddleButton) {
|
||||
if (hoverID) {
|
||||
var deleteProps = Entities.getEntityProperties(hoverID);
|
||||
if (deleteProps.name === "buildSystem" && deleteProps.description === MyAvatar.displayName) {
|
||||
Entities.deleteEntity(hoverID);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function keyPressEvent(event) {
|
||||
if (isRunning) {
|
||||
if (keys.indexOf(event.text) === -1) {
|
||||
if (UIkeys.indexOf(event.text) !== -1) {
|
||||
keys.push(event.text);
|
||||
}
|
||||
}
|
||||
if (keys.indexOf("DELETE") !== -1) {
|
||||
deleteBlock();
|
||||
}
|
||||
if (keys.indexOf("SHIFT") !== -1) {
|
||||
Controller.captureWheelEvents();
|
||||
isShiftPressed = true;
|
||||
}
|
||||
if (keys.indexOf("CONTROL") !== -1) {
|
||||
Controller.captureWheelEvents();
|
||||
isControlPressed = true;
|
||||
}
|
||||
if (keys.indexOf("ALT") !== -1) {
|
||||
Controller.captureWheelEvents();
|
||||
isAltPressed = true;
|
||||
}
|
||||
if (keys.indexOf("x") !== -1 || keys.indexOf("X") !== -1) {
|
||||
isXPressed = true;
|
||||
currentDirection = "X";
|
||||
}
|
||||
if (keys.indexOf("y") !== -1 || keys.indexOf("Y") !== -1) {
|
||||
isYPressed = true;
|
||||
currentDirection = "Y";
|
||||
}
|
||||
if (keys.indexOf("z") !== -1 || keys.indexOf("Z") !== -1) {
|
||||
isZPressed = true;
|
||||
currentDirection = "Z";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function keyReleaseEvent(event) {
|
||||
if (isRunning) {
|
||||
keys = [];
|
||||
|
||||
if (event.text === "SHIFT") {
|
||||
Controller.releaseWheelEvents();
|
||||
isShiftPressed = false;
|
||||
}
|
||||
if (event.text === "CONTROL") {
|
||||
Controller.releaseWheelEvents();
|
||||
isControlPressed = false;
|
||||
}
|
||||
if (event.text === "ALT") {
|
||||
Controller.releaseWheelEvents();
|
||||
isAltPressed = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function cleanUp() {
|
||||
Selection.removeListFromMap(LIST_NAME);
|
||||
if (webPageID) {
|
||||
Entities.deleteEntity(webPageID);
|
||||
}
|
||||
webPageID = undefined;
|
||||
if (colorToolBar !== undefined) {
|
||||
colorToolBar.cleanup();
|
||||
}
|
||||
colorToolBar = undefined;
|
||||
if (mainLoop) {
|
||||
Script.clearInterval(mainLoop);
|
||||
}
|
||||
if (isRunning) {
|
||||
Controller.keyPressEvent.disconnect(keyPressEvent);
|
||||
Controller.keyReleaseEvent.disconnect(keyReleaseEvent);
|
||||
Controller.wheelEvent.disconnect(wheelEvent);
|
||||
Controller.mousePressEvent.disconnect(mousePressEvent);
|
||||
Entities.hoverOverEntity.disconnect(hoverOverEntity);
|
||||
Entities.mousePressOnEntity.disconnect(mousePressOnEntity);
|
||||
}
|
||||
allOverlays = [];
|
||||
colorsIDs = [];
|
||||
}
|
||||
|
||||
Script.scriptEnding.connect(function () {
|
||||
cleanUp();
|
||||
button.clicked.disconnect(onClicked);
|
||||
if (tablet) {
|
||||
tablet.removeButton(button);
|
||||
}
|
||||
});
|
||||
|
||||
function onClicked() {
|
||||
if (isRunning) {
|
||||
tablet.gotoHomeScreen();
|
||||
cleanUp();
|
||||
isRunning = false;
|
||||
button.editProperties({ isActive: false });
|
||||
|
||||
} else {
|
||||
isRunning = true;
|
||||
button.editProperties({ isActive: true });
|
||||
loadColors();
|
||||
addIcons();
|
||||
createMainloop();
|
||||
Controller.keyPressEvent.connect(keyPressEvent);
|
||||
Controller.keyReleaseEvent.connect(keyReleaseEvent);
|
||||
Controller.wheelEvent.connect(wheelEvent);
|
||||
Controller.mousePressEvent.connect(mousePressEvent);
|
||||
Entities.hoverOverEntity.connect(hoverOverEntity);
|
||||
Entities.mousePressOnEntity.connect(mousePressOnEntity);
|
||||
}
|
||||
}
|
||||
|
||||
prefetchIcons();
|
||||
button.clicked.connect(onClicked);
|
BIN
applications/blocks/Icons/Black-0-0-0-a.jpg
Normal file
After Width: | Height: | Size: 914 B |
BIN
applications/blocks/Icons/Black-0-0-0.jpg
Normal file
After Width: | Height: | Size: 667 B |
113
applications/blocks/Icons/Blocks-icons.json
Normal file
|
@ -0,0 +1,113 @@
|
|||
{
|
||||
"iconData":[
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"255\",\"g\":\"0\",\"b\":\"0\"}",
|
||||
"inactive":"Red-255-0-0.jpg",
|
||||
"active":"Red-255-0-0-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"128\",\"g\":\"51\",\"b\":\"0\"}",
|
||||
"inactive":"Brown-128-51-0.jpg",
|
||||
"active":"Brown-128-51-0-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"255\",\"g\":\"0\",\"b\":\"225\"}",
|
||||
"inactive":"Purple-255-0-255.jpg",
|
||||
"active":"Purple-255-0-255-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"176\",\"g\":\"0\",\"b\":\"255\"}",
|
||||
"inactive":"Purple-176-0-255.jpg",
|
||||
"active":"Purple-176-0-255-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"0\",\"g\":\"0\",\"b\":\"255\"}",
|
||||
"inactive":"Blue-0-0-255.jpg",
|
||||
"active":"Blue-0-0-255-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"0\",\"g\":\"149\",\"b\":\"255\"}",
|
||||
"inactive":"Blue-0-149-255.jpg",
|
||||
"active":"Blue-0-149-255-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"0\",\"g\":\"255\",\"b\":\"255\"}",
|
||||
"inactive":"Cyan-0-255-255.jpg",
|
||||
"active":"Cyan-0-255-255-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"0\",\"g\":\"255\",\"b\":\"0\"}",
|
||||
"inactive":"Green-0-255-0.jpg",
|
||||
"active":"Green-0-255-0-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"255\",\"g\":\"255\",\"b\":\"0\"}",
|
||||
"inactive":"Yellow-255-255-0.jpg",
|
||||
"active":"Yellow-255-255-0-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"255\",\"g\":\"143\",\"b\":\"0\"}",
|
||||
"inactive":"Orange-255-143-0.jpg",
|
||||
"active":"Orange-255-143-0-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"255\",\"g\":\"255\",\"b\":\"255\"}",
|
||||
"inactive":"White-255-255-255.jpg",
|
||||
"active":"White-255-255-255-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"150\",\"g\":\"150\",\"b\":\"150\"}",
|
||||
"inactive":"Grey-150-150-150.jpg",
|
||||
"active":"Grey-150-150-150-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"100\",\"g\":\"100\",\"b\":\"100\"}",
|
||||
"inactive":"Grey-100-100-100.jpg",
|
||||
"active":"Grey-100-100-100-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"50\",\"g\":\"50\",\"b\":\"50\"}",
|
||||
"inactive":"Grey-50-50-50.jpg",
|
||||
"active":"Grey-50-50-50-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "color",
|
||||
"color":"{\"r\":\"0\",\"g\":\"0\",\"b\":\"0\"}",
|
||||
"inactive":"Black-0-0-0.jpg",
|
||||
"active":"Black-0-0-0-a.jpg"
|
||||
},
|
||||
{
|
||||
"type": "action",
|
||||
"name": "newblock",
|
||||
"inactive":"newblock.png",
|
||||
"active":"newblock-a.png"
|
||||
},
|
||||
{
|
||||
"type": "action",
|
||||
"name": "deleteall",
|
||||
"inactive":"deleteall.png",
|
||||
"active":"deleteall-a.png"
|
||||
},
|
||||
{
|
||||
"type": "action",
|
||||
"name": "help",
|
||||
"inactive":"help.png",
|
||||
"active":"help-a.png"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
BIN
applications/blocks/Icons/Blue-0-0-255-a.jpg
Normal file
After Width: | Height: | Size: 796 B |
BIN
applications/blocks/Icons/Blue-0-0-255.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/Blue-0-149-255-a.jpg
Normal file
After Width: | Height: | Size: 880 B |
BIN
applications/blocks/Icons/Blue-0-149-255.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/Brown-128-51-0-a.jpg
Normal file
After Width: | Height: | Size: 892 B |
BIN
applications/blocks/Icons/Brown-128-51-0.jpg
Normal file
After Width: | Height: | Size: 144 B |
BIN
applications/blocks/Icons/Cyan-0-255-255-a.jpg
Normal file
After Width: | Height: | Size: 910 B |
BIN
applications/blocks/Icons/Cyan-0-255-255.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/Fucsia-255-0-100-a.jpg
Normal file
After Width: | Height: | Size: 853 B |
BIN
applications/blocks/Icons/Fucsia-255-0-100.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/Green-0-255-0-a.jpg
Normal file
After Width: | Height: | Size: 911 B |
BIN
applications/blocks/Icons/Green-0-255-0.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/Grey-100-100-100-a.jpg
Normal file
After Width: | Height: | Size: 828 B |
BIN
applications/blocks/Icons/Grey-100-100-100.jpg
Normal file
After Width: | Height: | Size: 667 B |
BIN
applications/blocks/Icons/Grey-150-150-150-a.jpg
Normal file
After Width: | Height: | Size: 866 B |
BIN
applications/blocks/Icons/Grey-150-150-150.jpg
Normal file
After Width: | Height: | Size: 667 B |
BIN
applications/blocks/Icons/Grey-200-200-200-a.jpg
Normal file
After Width: | Height: | Size: 878 B |
BIN
applications/blocks/Icons/Grey-200-200-200.jpg
Normal file
After Width: | Height: | Size: 667 B |
BIN
applications/blocks/Icons/Grey-50-50-50-a.jpg
Normal file
After Width: | Height: | Size: 783 B |
BIN
applications/blocks/Icons/Grey-50-50-50.jpg
Normal file
After Width: | Height: | Size: 667 B |
BIN
applications/blocks/Icons/Orange-255-143-0-a.jpg
Normal file
After Width: | Height: | Size: 906 B |
BIN
applications/blocks/Icons/Orange-255-143-0.jpg
Normal file
After Width: | Height: | Size: 672 B |
BIN
applications/blocks/Icons/Purple-176-0-255-a.jpg
Normal file
After Width: | Height: | Size: 863 B |
BIN
applications/blocks/Icons/Purple-176-0-255.jpg
Normal file
After Width: | Height: | Size: 672 B |
BIN
applications/blocks/Icons/Purple-255-0-255-a.jpg
Normal file
After Width: | Height: | Size: 874 B |
BIN
applications/blocks/Icons/Purple-255-0-255.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/Red-255-0-0-a.jpg
Normal file
After Width: | Height: | Size: 856 B |
BIN
applications/blocks/Icons/Red-255-0-0.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/White-255-255-255-a.jpg
Normal file
After Width: | Height: | Size: 913 B |
BIN
applications/blocks/Icons/White-255-255-255.jpg
Normal file
After Width: | Height: | Size: 631 B |
BIN
applications/blocks/Icons/Yellow-255-255-0-a.jpg
Normal file
After Width: | Height: | Size: 933 B |
BIN
applications/blocks/Icons/Yellow-255-255-0.jpg
Normal file
After Width: | Height: | Size: 671 B |
BIN
applications/blocks/Icons/deleteall-a.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
applications/blocks/Icons/deleteall.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
applications/blocks/Icons/help-a.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
applications/blocks/Icons/help.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
applications/blocks/Icons/newblock-a.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
applications/blocks/Icons/newblock.png
Normal file
After Width: | Height: | Size: 17 KiB |
105
applications/blocks/blocks-active.svg
Normal file
|
@ -0,0 +1,105 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="385.419px"
|
||||
height="385.419px"
|
||||
viewBox="0 0 385.419 385.419"
|
||||
style="enable-background:new 0 0 385.419 385.419;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="blocks-active.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><metadata
|
||||
id="metadata1005"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs1003" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
id="namedview1001"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5594477"
|
||||
inkscape:cx="119.64334"
|
||||
inkscape:cy="189.27158"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g968"
|
||||
inkscape:pagecheckerboard="true" />
|
||||
<g
|
||||
id="g968">
|
||||
<path
|
||||
d="m 202.491,326.54361 -0.231,-107.449 -92.494,-53.907 -92.326998,53.712 0.225,108.29 92.101998,53.475 z m -83.342,26.994 0.165,-75.232 64.289,-37.558 0.165,75.067 z m -9.396,-166.706 64.603,37.658 -64.384,37.606 -64.604998,-37.8 z m -73.556998,53.77 64.410998,37.691 -0.164,75.335 -64.091998,-37.217 z"
|
||||
id="path962"
|
||||
style="fill:#000000" />
|
||||
<path
|
||||
d="m 275.48839,162.01957 -92.324,53.706 0.231,108.29 92.104,53.475 92.714,-54.121 -0.231,-107.449 z m -0.013,21.638 64.605,37.658 -64.386,37.606 -64.606,-37.801 z m -73.556,53.77 64.404,37.691 -0.164,75.335 -64.076,-37.217 z m 82.958,112.936 0.159,-75.232 64.289,-37.558 0.164,75.067 z"
|
||||
id="path964"
|
||||
style="fill:#000000" />
|
||||
<path
|
||||
d="m 286.01285,68.635283 -92.497,-53.892 -92.324,53.697 0.222,108.294997 92.102,53.479 92.717,-54.121 z m -92.509,-32.257 64.609,37.649 -64.384,37.618997 -64.609,-37.810997 z m -73.558,53.766 64.411,37.697997 -0.161,75.335 -64.095,-37.211 z m 82.95,112.941997 0.162,-75.234 64.292,-37.563997 0.164,75.072997 z"
|
||||
id="path966"
|
||||
style="fill:#000000" />
|
||||
</g>
|
||||
<g
|
||||
id="g970">
|
||||
</g>
|
||||
<g
|
||||
id="g972">
|
||||
</g>
|
||||
<g
|
||||
id="g974">
|
||||
</g>
|
||||
<g
|
||||
id="g976">
|
||||
</g>
|
||||
<g
|
||||
id="g978">
|
||||
</g>
|
||||
<g
|
||||
id="g980">
|
||||
</g>
|
||||
<g
|
||||
id="g982">
|
||||
</g>
|
||||
<g
|
||||
id="g984">
|
||||
</g>
|
||||
<g
|
||||
id="g986">
|
||||
</g>
|
||||
<g
|
||||
id="g988">
|
||||
</g>
|
||||
<g
|
||||
id="g990">
|
||||
</g>
|
||||
<g
|
||||
id="g992">
|
||||
</g>
|
||||
<g
|
||||
id="g994">
|
||||
</g>
|
||||
<g
|
||||
id="g996">
|
||||
</g>
|
||||
<g
|
||||
id="g998">
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
106
applications/blocks/blocks-inactive.svg
Normal file
|
@ -0,0 +1,106 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="385.419px"
|
||||
height="385.419px"
|
||||
viewBox="0 0 385.419 385.419"
|
||||
style="enable-background:new 0 0 385.419 385.419;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="blocks-inactive.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><metadata
|
||||
id="metadata1005"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs1003" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
id="namedview1001"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5594477"
|
||||
inkscape:cx="119.64334"
|
||||
inkscape:cy="189.27158"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g968"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="true" />
|
||||
<g
|
||||
id="g968">
|
||||
<path
|
||||
d="m 202.491,326.54361 -0.231,-107.449 -92.494,-53.907 -92.326998,53.712 0.225,108.29 92.101998,53.475 z m -83.342,26.994 0.165,-75.232 64.289,-37.558 0.165,75.067 z m -9.396,-166.706 64.603,37.658 -64.384,37.606 -64.604998,-37.8 z m -73.556998,53.77 64.410998,37.691 -0.164,75.335 -64.091998,-37.217 z"
|
||||
id="path962"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
d="m 275.48839,162.01957 -92.324,53.706 0.231,108.29 92.104,53.475 92.714,-54.121 -0.231,-107.449 z m -0.013,21.638 64.605,37.658 -64.386,37.606 -64.606,-37.801 z m -73.556,53.77 64.404,37.691 -0.164,75.335 -64.076,-37.217 z m 82.958,112.936 0.159,-75.232 64.289,-37.558 0.164,75.067 z"
|
||||
id="path964"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
d="m 286.01285,68.635283 -92.497,-53.892 -92.324,53.697 0.222,108.294997 92.102,53.479 92.717,-54.121 z m -92.509,-32.257 64.609,37.649 -64.384,37.618997 -64.609,-37.810997 z m -73.558,53.766 64.411,37.697997 -0.161,75.335 -64.095,-37.211 z m 82.95,112.941997 0.162,-75.234 64.292,-37.563997 0.164,75.072997 z"
|
||||
id="path966"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g970">
|
||||
</g>
|
||||
<g
|
||||
id="g972">
|
||||
</g>
|
||||
<g
|
||||
id="g974">
|
||||
</g>
|
||||
<g
|
||||
id="g976">
|
||||
</g>
|
||||
<g
|
||||
id="g978">
|
||||
</g>
|
||||
<g
|
||||
id="g980">
|
||||
</g>
|
||||
<g
|
||||
id="g982">
|
||||
</g>
|
||||
<g
|
||||
id="g984">
|
||||
</g>
|
||||
<g
|
||||
id="g986">
|
||||
</g>
|
||||
<g
|
||||
id="g988">
|
||||
</g>
|
||||
<g
|
||||
id="g990">
|
||||
</g>
|
||||
<g
|
||||
id="g992">
|
||||
</g>
|
||||
<g
|
||||
id="g994">
|
||||
</g>
|
||||
<g
|
||||
id="g996">
|
||||
</g>
|
||||
<g
|
||||
id="g998">
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
|
@ -98,6 +98,15 @@ var metadata = { "applications":
|
|||
"jsfile": "materialDataCreator/appMaterialDataCreator.js",
|
||||
"icon": "materialDataCreator/images/icon_materialDate_inactive.png",
|
||||
"caption": "MAT-GEN"
|
||||
},
|
||||
{
|
||||
"isActive": true,
|
||||
"directory": "blocks",
|
||||
"name": "Blocks",
|
||||
"description": "Script to create blocks in a Minecraft way",
|
||||
"jsfile": "blocks/Blocks.js",
|
||||
"icon": "blocks/blocks-inactive.svg",
|
||||
"caption": "BLOCKS"
|
||||
}
|
||||
]
|
||||
};
|
||||
};
|
||||
|
|