Add alpha property on Shape entity

Add the "Alpha" property on the "Shape" entity editor.

propertyID: "shapeAlpha",
propertyName: "alpha",
This commit is contained in:
Alezia Kurdis 2020-03-16 23:19:04 -04:00 committed by GitHub
parent f29cde66cd
commit 1b3744ac73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -142,7 +142,17 @@ const GROUPS = [
label: "Color",
type: "color",
propertyID: "color",
}
},
{
label: "Alpha",
type: "number-draggable",
min: 0,
max: 1,
step: 0.01,
decimals: 2,
propertyID: "shapeAlpha",
propertyName: "alpha",
},
]
},
{