Ignore:
Timestamp:
01/21/25 03:08:24 (5 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

Location:
imaps-frontend/src/scripts/rendered_shapes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/src/scripts/rendered_shapes/RenderedEntrance.js

    r0c6b92a r79a0317  
    88      x: attrs.x,
    99      y: attrs.y,
    10       width: attrs.width * scaleX,
    11       height: attrs.height * scaleY,
     10      width: attrs.width,
     11      height: attrs.height,
    1212      fill: "#7fef83",
    1313      stroke: "black",
  • imaps-frontend/src/scripts/rendered_shapes/RenderedRoom.js

    r0c6b92a r79a0317  
    77      x: attrs.x,
    88      y: attrs.y,
    9       width: attrs.width * scaleX,
    10       height: attrs.height * scaleY,
     9      width: attrs.width,
     10      height: attrs.height,
    1111      fill: "#A2D9FF",
    1212      stroke: "black",
  • imaps-frontend/src/scripts/rendered_shapes/RenderedStairs.js

    r0c6b92a r79a0317  
    88            x: attrs.x,
    99            y: attrs.y,
    10             width: attrs.width * scaleX,
    11             height: attrs.height * scaleY,
     10            width: attrs.width ,
     11            height: attrs.height,
    1212            fill: "rgb(199,190,133)",
    1313            stroke: "rgb(16,15,15)",
  • imaps-frontend/src/scripts/rendered_shapes/RenderedWall.js

    r0c6b92a r79a0317  
    77            x: attrs.x,
    88            y: attrs.y,
    9             width: attrs.width * scaleX,
    10             height: attrs.height * scaleY,
     9            width: attrs.width,
     10            height: attrs.height,
    1111            fill: '#4B4B4B',
    1212            stroke: 'black',
Note: See TracChangeset for help on using the changeset viewer.