mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-09 15:52:09 +02:00
tabs
This commit is contained in:
parent
9013eee352
commit
e0e9a7de15
6 changed files with 25 additions and 25 deletions
|
@ -190,8 +190,8 @@ TabBar {
|
|||
editTabView.currentIndex = 2
|
||||
}
|
||||
}
|
||||
|
||||
NewEntityButton {
|
||||
|
||||
NewEntityButton {
|
||||
icon: "icons/create-icons/21-cube-01.svg"
|
||||
text: "GRID"
|
||||
onClicked: {
|
||||
|
|
|
@ -196,8 +196,8 @@ TabBar {
|
|||
editTabView.currentIndex = tabIndex.properties
|
||||
}
|
||||
}
|
||||
|
||||
NewEntityButton {
|
||||
|
||||
NewEntityButton {
|
||||
icon: "icons/create-icons/21-cube-01.svg"
|
||||
text: "GRID"
|
||||
onClicked: {
|
||||
|
|
|
@ -892,8 +892,8 @@ var toolBar = (function () {
|
|||
});
|
||||
|
||||
addButton("newMaterialButton", createNewEntityDialogButtonCallback("Material"));
|
||||
|
||||
addButton("newGridButton", function () {
|
||||
|
||||
addButton("newGridButton", function () {
|
||||
createNewEntity({
|
||||
type: "Grid",
|
||||
});
|
||||
|
|
|
@ -153,7 +153,7 @@ const FILTER_TYPES = [
|
|||
"PolyLine",
|
||||
"PolyVox",
|
||||
"Text",
|
||||
"Grid",
|
||||
"Grid",
|
||||
];
|
||||
|
||||
const DOUBLE_CLICK_TIMEOUT = 300; // ms
|
||||
|
|
|
@ -646,7 +646,7 @@ const GROUPS = [
|
|||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
{
|
||||
id: "grid",
|
||||
addToGroup: "base",
|
||||
properties: [
|
||||
|
@ -663,17 +663,17 @@ const GROUPS = [
|
|||
{
|
||||
label: "Major Grid Every",
|
||||
type: "number-draggable",
|
||||
min: 0,
|
||||
step: 1,
|
||||
decimals: 0,
|
||||
min: 0,
|
||||
step: 1,
|
||||
decimals: 0,
|
||||
propertyID: "majorGridEvery",
|
||||
},
|
||||
{
|
||||
{
|
||||
label: "Minor Grid Every",
|
||||
type: "number-draggable",
|
||||
min: 0,
|
||||
step: 0.01,
|
||||
decimals: 2,
|
||||
min: 0,
|
||||
step: 0.01,
|
||||
decimals: 2,
|
||||
propertyID: "minorGridEvery",
|
||||
},
|
||||
]
|
||||
|
|
|
@ -10,17 +10,17 @@
|
|||
|
||||
const ENTITY_TYPE_ICON = {
|
||||
Box: "m",
|
||||
Grid: "V",
|
||||
Image: "",
|
||||
Light: "p",
|
||||
Material: "",
|
||||
Model: "",
|
||||
ParticleEffect: "",
|
||||
PolyVox: "",
|
||||
PolyLine: "",
|
||||
Shape: "n",
|
||||
Grid: "V",
|
||||
Image: "",
|
||||
Light: "p",
|
||||
Material: "",
|
||||
Model: "",
|
||||
ParticleEffect: "",
|
||||
PolyVox: "",
|
||||
PolyLine: "",
|
||||
Shape: "n",
|
||||
Sphere: "n",
|
||||
Text: "l",
|
||||
Text: "l",
|
||||
Web: "q",
|
||||
Zone: "o",
|
||||
Multiple: "",
|
||||
|
|
Loading…
Reference in a new issue