Changeset 79a0317 for imaps-frontend/src/scripts/rendered_shapes
- Timestamp:
- 01/21/25 03:08:24 (5 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/src/scripts/rendered_shapes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/src/scripts/rendered_shapes/RenderedEntrance.js
r0c6b92a r79a0317 8 8 x: attrs.x, 9 9 y: attrs.y, 10 width: attrs.width * scaleX,11 height: attrs.height * scaleY,10 width: attrs.width, 11 height: attrs.height, 12 12 fill: "#7fef83", 13 13 stroke: "black", -
imaps-frontend/src/scripts/rendered_shapes/RenderedRoom.js
r0c6b92a r79a0317 7 7 x: attrs.x, 8 8 y: attrs.y, 9 width: attrs.width * scaleX,10 height: attrs.height * scaleY,9 width: attrs.width, 10 height: attrs.height, 11 11 fill: "#A2D9FF", 12 12 stroke: "black", -
imaps-frontend/src/scripts/rendered_shapes/RenderedStairs.js
r0c6b92a r79a0317 8 8 x: attrs.x, 9 9 y: attrs.y, 10 width: attrs.width * scaleX,11 height: attrs.height * scaleY,10 width: attrs.width , 11 height: attrs.height, 12 12 fill: "rgb(199,190,133)", 13 13 stroke: "rgb(16,15,15)", -
imaps-frontend/src/scripts/rendered_shapes/RenderedWall.js
r0c6b92a r79a0317 7 7 x: attrs.x, 8 8 y: attrs.y, 9 width: attrs.width * scaleX,10 height: attrs.height * scaleY,9 width: attrs.width, 10 height: attrs.height, 11 11 fill: '#4B4B4B', 12 12 stroke: 'black',
Note:
See TracChangeset
for help on using the changeset viewer.