diff --git a/app/src/components/layout/sidebarRight/properties/SelectedDecalProperties.tsx b/app/src/components/layout/sidebarRight/properties/SelectedDecalProperties.tsx index e605363..3a67865 100644 --- a/app/src/components/layout/sidebarRight/properties/SelectedDecalProperties.tsx +++ b/app/src/components/layout/sidebarRight/properties/SelectedDecalProperties.tsx @@ -146,7 +146,7 @@ const SelectedDecalProperties = () => { label="Scale" value={selectedDecal.decalData.decalScale || 1} min={0.1} - max={5} + max={2} step={0.1} onChange={(value: number) => handleScaleChange(value)} /> diff --git a/app/src/modules/builder/Decal/decalCreator/decalCreator.tsx b/app/src/modules/builder/Decal/decalCreator/decalCreator.tsx index 35b54ce..fe14974 100644 --- a/app/src/modules/builder/Decal/decalCreator/decalCreator.tsx +++ b/app/src/modules/builder/Decal/decalCreator/decalCreator.tsx @@ -99,7 +99,7 @@ function DecalCreator() { decalPosition: [point.x, point.y, -0.001], decalRotation: 0, decalOpacity: 1, - decalScale: 1, + decalScale: 0.5, } addDecalOnFloor(floorIntersect.object.userData.floorUuid, decal);