| @@ -1300,6 +1300,21 @@ const attributionData = { | |||||
| "powwow1" | "powwow1" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/clothing/Sandals/", | |||||
| files: [ | |||||
| { name: "Flip Flop-Front.svg", source: "https://blendswap.com/blend/18141" }, | |||||
| { name: "Flip Flop-Front Corner.svg", source: "https://blendswap.com/blend/18141" }, | |||||
| { name: "Flip Flop-Side.svg", source: "https://blendswap.com/blend/18141" }, | |||||
| { name: "Flip Flop-Back Corner.svg", source: "https://blendswap.com/blend/18141" }, | |||||
| { name: "Flip Flop-Back.svg", source: "https://blendswap.com/blend/18141" }, | |||||
| { name: "Flip Flop-Bottom.svg", source: "https://blendswap.com/blend/18141" }, | |||||
| { name: "Flip Flop-Top.svg", source: "https://blendswap.com/blend/18141" }, | |||||
| ], | |||||
| authors: [ | |||||
| "mgrgas" | |||||
| ] | |||||
| }, | |||||
| { | { | ||||
| prefix: "./media/characters/abbott-absol/", | prefix: "./media/characters/abbott-absol/", | ||||
| files: [ | files: [ | ||||
| @@ -21336,6 +21351,10 @@ const attributionData = { | |||||
| "name": "powwow1", | "name": "powwow1", | ||||
| "url": "https://www.cgtrader.com/powwow1" | "url": "https://www.cgtrader.com/powwow1" | ||||
| }, | }, | ||||
| "mgrgas": { | |||||
| "name": "mgrgas", | |||||
| "url": "https://blendswap.com/profile/378021" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -32,6 +32,21 @@ function makeClothing() { | |||||
| } | } | ||||
| ] | ] | ||||
| const dataSandals = [ | |||||
| { | |||||
| name: "Flip Flop", | |||||
| sides: { | |||||
| "Front": { height: math.unit(0.06615997105836868, "meters") }, | |||||
| "Front Corner": { height: math.unit(0.06615997105836868, "meters") }, | |||||
| "Side": { height: math.unit(0.06615997105836868, "meters") }, | |||||
| "Back Corner": { height: math.unit(0.06615997105836868, "meters") }, | |||||
| "Back": { height: math.unit(0.06615997105836868, "meters") }, | |||||
| "Bottom": { height: math.unit(0.5377234816551208, "meters") }, | |||||
| "Top": { height: math.unit(0.5377234816551208, "meters") } | |||||
| } | |||||
| } | |||||
| ] | |||||
| results.push({ | results.push({ | ||||
| name: "Boots", | name: "Boots", | ||||
| constructor: () => makeAutoVehicleGroup( | constructor: () => makeAutoVehicleGroup( | ||||
| @@ -50,6 +65,15 @@ function makeClothing() { | |||||
| ) | ) | ||||
| }) | }) | ||||
| results.push({ | |||||
| name: "Sandals", | |||||
| constructor: () => makeAutoVehicleGroup( | |||||
| dataSandals, | |||||
| "Sandals", | |||||
| "clothing" | |||||
| ) | |||||
| }) | |||||
| results.sort((b1, b2) => { | results.sort((b1, b2) => { | ||||
| e1 = b1.constructor(); | e1 = b1.constructor(); | ||||
| e2 = b2.constructor(); | e2 = b2.constructor(); | ||||
| @@ -22,9 +22,9 @@ SIDE = [1, 1, 2, "Side"] | |||||
| BACK_CORNER = [1.5, 1, 2, "Back Corner"] | BACK_CORNER = [1.5, 1, 2, "Back Corner"] | ||||
| BACK = [2, 1, 2, "Back"] | BACK = [2, 1, 2, "Back"] | ||||
| BOTTOM = [0, 2, 1, "Bottom"] | BOTTOM = [0, 2, 1, "Bottom"] | ||||
| TOP = [0, 0, 1, "Top"] | |||||
| TOP = [2, 0, 1, "Top"] | |||||
| sides = [FRONT, FRONT_CORNER, SIDE, BACK_CORNER, BACK, BOTTOM, TOP] | |||||
| sides = [BOTTOM] | |||||
| path = "/tmp/macrovision/" | path = "/tmp/macrovision/" | ||||