add more wire sizes

This commit is contained in:
Redo
2021-05-10 19:24:59 -05:00
parent 8323cd065d
commit 2245bc82f7
119 changed files with 3365 additions and 5 deletions

View File

@ -0,0 +1,46 @@
datablock fxDtsBrickData(LogicGate_DiodeDown_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Diode Down.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Diode Down";
category = "Logic Bricks";
subCategory = "Diode";
uiName = "Diode Down";
logicUIName = "Diode Down";
logicUIDesc = "";
hasPrint = 1;
printAspectRatio = "Logic";
logicForceColor = "GREEN";
logicForcePrint = "DOWNARROW";
logicBrickSize = "1 1 1";
orientationFix = 3;
isLogic = true;
isLogicGate = true;
isLogicInput = false;
logicInit = "";
logicInput = "";
logicUpdate =
"return function(gate) " @
" Gate.setportstate(gate, 1, Gate.getportstate(gate, 2)) " @
"end"
;
logicGlobal = "";
numLogicPorts = 2;
logicPortType[0] = 1;
logicPortPos[0] = "0 0 0";
logicPortDir[0] = 4;
logicPortUIName[0] = "In";
logicPortCauseUpdate[0] = true;
logicPortType[1] = 0;
logicPortPos[1] = "0 0 0";
logicPortDir[1] = 5;
logicPortUIName[1] = "Out";
};

View File

@ -0,0 +1,46 @@
datablock fxDtsBrickData(LogicGate_DiodeFlat_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Diode Flat.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Diode Flat";
category = "Logic Bricks";
subCategory = "Diode";
uiName = "Diode Flat";
logicUIName = "Diode Flat";
logicUIDesc = "";
hasPrint = 1;
printAspectRatio = "Logic";
logicForceColor = "GREEN";
logicForcePrint = "ARROW";
logicBrickSize = "1 1 1";
orientationFix = 3;
isLogic = true;
isLogicGate = true;
isLogicInput = false;
logicInit = "";
logicInput = "";
logicUpdate =
"return function(gate) " @
" Gate.setportstate(gate, 1, Gate.getportstate(gate, 2)) " @
"end"
;
logicGlobal = "";
numLogicPorts = 2;
logicPortType[0] = 1;
logicPortPos[0] = "0 0 0";
logicPortDir[0] = 3;
logicPortUIName[0] = "In";
logicPortCauseUpdate[0] = true;
logicPortType[1] = 0;
logicPortPos[1] = "0 0 0";
logicPortDir[1] = 1;
logicPortUIName[1] = "Out";
};

View File

@ -0,0 +1,46 @@
datablock fxDtsBrickData(LogicGate_DiodeUp_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Diode Up.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Diode Up";
category = "Logic Bricks";
subCategory = "Diode";
uiName = "Diode Up";
logicUIName = "Diode Up";
logicUIDesc = "";
hasPrint = 1;
printAspectRatio = "Logic";
logicForceColor = "GREEN";
logicForcePrint = "UPARROW";
logicBrickSize = "1 1 1";
orientationFix = 3;
isLogic = true;
isLogicGate = true;
isLogicInput = false;
logicInit = "";
logicInput = "";
logicUpdate =
"return function(gate) " @
" Gate.setportstate(gate, 1, Gate.getportstate(gate, 2)) " @
"end"
;
logicGlobal = "";
numLogicPorts = 2;
logicPortType[0] = 1;
logicPortPos[0] = "0 0 0";
logicPortDir[0] = 5;
logicPortUIName[0] = "In";
logicPortCauseUpdate[0] = true;
logicPortType[1] = 0;
logicPortPos[1] = "0 0 0";
logicPortDir[1] = 4;
logicPortUIName[1] = "Out";
};

View File

@ -0,0 +1,46 @@
datablock fxDtsBrickData(LogicGate_InverterDown_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Inverter Down.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Inverter Down";
category = "Logic Bricks";
subCategory = "Diode";
uiName = "Inverter Down";
logicUIName = "Inverter Down";
logicUIDesc = "";
hasPrint = 1;
printAspectRatio = "Logic";
logicForceColor = "RED";
logicForcePrint = "DOWNARROW";
logicBrickSize = "1 1 1";
orientationFix = 3;
isLogic = true;
isLogicGate = true;
isLogicInput = false;
logicInit = "";
logicInput = "";
logicUpdate =
"return function(gate) " @
" Gate.setportstate(gate, 1, not Gate.getportstate(gate, 2)) " @
"end"
;
logicGlobal = "";
numLogicPorts = 2;
logicPortType[0] = 1;
logicPortPos[0] = "0 0 0";
logicPortDir[0] = 4;
logicPortUIName[0] = "In";
logicPortCauseUpdate[0] = true;
logicPortType[1] = 0;
logicPortPos[1] = "0 0 0";
logicPortDir[1] = 5;
logicPortUIName[1] = "Out";
};

View File

@ -0,0 +1,46 @@
datablock fxDtsBrickData(LogicGate_InverterFlat_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Inverter Flat.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Inverter Flat";
category = "Logic Bricks";
subCategory = "Diode";
uiName = "Inverter Flat";
logicUIName = "Inverter Flat";
logicUIDesc = "";
hasPrint = 1;
printAspectRatio = "Logic";
logicForceColor = "RED";
logicForcePrint = "ARROW";
logicBrickSize = "1 1 1";
orientationFix = 3;
isLogic = true;
isLogicGate = true;
isLogicInput = false;
logicInit = "";
logicInput = "";
logicUpdate =
"return function(gate) " @
" Gate.setportstate(gate, 1, not Gate.getportstate(gate, 2)) " @
"end"
;
logicGlobal = "";
numLogicPorts = 2;
logicPortType[0] = 1;
logicPortPos[0] = "0 0 0";
logicPortDir[0] = 3;
logicPortUIName[0] = "In";
logicPortCauseUpdate[0] = true;
logicPortType[1] = 0;
logicPortPos[1] = "0 0 0";
logicPortDir[1] = 1;
logicPortUIName[1] = "Out";
};

View File

@ -0,0 +1,46 @@
datablock fxDtsBrickData(LogicGate_InverterUp_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Inverter Up.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Inverter Up";
category = "Logic Bricks";
subCategory = "Diode";
uiName = "Inverter Up";
logicUIName = "Inverter Up";
logicUIDesc = "";
hasPrint = 1;
printAspectRatio = "Logic";
logicForceColor = "RED";
logicForcePrint = "UPARROW";
logicBrickSize = "1 1 1";
orientationFix = 3;
isLogic = true;
isLogicGate = true;
isLogicInput = false;
logicInit = "";
logicInput = "";
logicUpdate =
"return function(gate) " @
" Gate.setportstate(gate, 1, not Gate.getportstate(gate, 2)) " @
"end"
;
logicGlobal = "";
numLogicPorts = 2;
logicPortType[0] = 1;
logicPortPos[0] = "0 0 0";
logicPortDir[0] = 5;
logicPortUIName[0] = "In";
logicPortCauseUpdate[0] = true;
logicPortType[1] = 0;
logicPortPos[1] = "0 0 0";
logicPortDir[1] = 4;
logicPortUIName[1] = "Out";
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x17f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x17f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x17f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x17f";
logicBrickSize = "1 17 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x18f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x18f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x18f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x18f";
logicBrickSize = "1 18 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x19f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x19f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x19f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x19f";
logicBrickSize = "1 19 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x10_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x10.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x10";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x10";
logicBrickSize = "1 1 30";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x11_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x11.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x11";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x11";
logicBrickSize = "1 1 33";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x13_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x13.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x13";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x13";
logicBrickSize = "1 1 39";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x14_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x14.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x14";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x14";
logicBrickSize = "1 1 42";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x15_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x15.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x15";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x15";
logicBrickSize = "1 1 45";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x25f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x25f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x25f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x25f";
logicBrickSize = "1 1 25";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x26f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x26f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x26f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x26f";
logicBrickSize = "1 1 26";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x29f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x29f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x29f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x29f";
logicBrickSize = "1 1 29";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x31f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x31f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x31f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x31f";
logicBrickSize = "1 1 31";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x34f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x34f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x34f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x34f";
logicBrickSize = "1 1 34";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x35f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x35f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x35f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x35f";
logicBrickSize = "1 1 35";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x37f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x37f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x37f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x37f";
logicBrickSize = "1 1 37";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x38f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x38f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x38f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x38f";
logicBrickSize = "1 1 38";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x41f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x41f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x41f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x41f";
logicBrickSize = "1 1 41";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x43f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x43f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x43f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x43f";
logicBrickSize = "1 1 43";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x44f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x44f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x44f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x44f";
logicBrickSize = "1 1 44";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x46f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x46f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x46f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x46f";
logicBrickSize = "1 1 46";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x47f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x47f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x47f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x47f";
logicBrickSize = "1 1 47";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x1x9_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x1x9.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x1x9";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x1x9";
logicBrickSize = "1 1 27";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x20f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x20f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x20f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x20f";
logicBrickSize = "1 20 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x21f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x21f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x21f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x21f";
logicBrickSize = "1 21 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x22f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x22f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x22f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x22f";
logicBrickSize = "1 22 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x23f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x23f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x23f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x23f";
logicBrickSize = "1 23 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x25f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x25f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x25f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x25f";
logicBrickSize = "1 25 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x26f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x26f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x26f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x26f";
logicBrickSize = "1 26 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x27f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x27f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x27f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x27f";
logicBrickSize = "1 27 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x28f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x28f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x28f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x28f";
logicBrickSize = "1 28 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x30f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x30f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x30f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x30f";
logicBrickSize = "1 30 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x31f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x31f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x31f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x31f";
logicBrickSize = "1 31 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};

View File

@ -0,0 +1,17 @@
datablock fxDtsBrickData(LogicWire_1x39f_Data){
brickFile = $LuaLogic::Path @ "bricks/gen/newbricks/Wire 1x39f.blb";
iconName = $LuaLogic::Path @ "bricks/gen/newicons/Wire 1x39f";
category = "Logic Bricks";
subCategory = "Wires";
uiName = "Wire 1x39f";
logicBrickSize = "1 39 1";
orientationFix = 0;
isLogic = true;
isLogicWire = true;
};