File information

Last updated

Original upload

Created by

CD PROJEKT RED and yellingintothevoid

Uploaded by

yellingintothevoid

Virus scan

Safe to use

About this mod

take care not so sprain your ankle! nine colours! colours of the shoe, platform, and sole are interchangeable by editing the .yaml!

Requirements
Permissions and credits
Changelogs
Donations
⚠️ the lace socks that used to be included with this mod are now obsolete and replaced by the ones included in my Tights and Socks mod.



this is a modified port of an in-game item. it features GarmentSupport, which means that the shoes shrink items like socks to prevent them from clipping with the shoes. GS is kinda whacky but mostly works. items worn with the shoes must also support GS for shrinking to apply. to find mods that support the feature, here's a search for mods that include "gs" in their description. all vanilla items (and recolours of vanilla items) have GarmentSupport enabled.

non-platform version made by vantamasque can be found here.

                                                              

by editing the .yaml file of the shoe, you can create your own variations of its top, the sides, and the sole! for example, if you open void_Platform_Heels.yaml, you'll see the line:
    - { base_color: green,  side: green,  bottom: white, icon: 03 }

you can change this to:
    - { base_color: green,  side: black,  bottom: black, icon: 01 }

this will create an appearance where the top of the shoe is green, and both the sides and the sole are black. to create an entirely new, additional entry, simply duplicate one of the lines and change the names of the colours!

valid entries for base_color: and side: of the shoe are:
black
blue
green
grey
purple
red
sky
white
yellow


valid entries for bottom: are:
black
white


the in-game name of the item you've changed will change its name accordingly, but the icon will not. if you've changed an appearance, it will not show up in the Virtual Atelier. you will need to re-spawn it with its matching CET code:
Game.AddToInventory("Items.yv_platform_heels_(base_color)_(SIDE)_(BOTTOM)",1)

for example:
Game.AddToInventory("Items.yv_platform_heels_sky_white_black",1)

                                                              


installation:
install via Vortex or unpack the .zip files and copy their contents to the root folder of your Cyberpunk 2077 installation. this should add the .archive and the .xl files to .\archive\pc\mod and the .yaml files to .\r6\tweaks.

                                                              

also available in this Virtual Atelier.
massive thanks to manavortex for creating a Python script which i've used to generate the in-game names of all appearance combinations.


item name       ┊ Equipment-EX slot
Platform Heels  ┊ Feet

mesh path for Appearance Creator Mod (appearance names in CET code or .yaml):
base\yv\meshes\s1_platform_heels.mesh

if you load the mesh thrice and only show one of the three submeshes each, you can assign each submesh a different appearance:
submesh 1: top of the shoe
submesh 2: platform
submesh 3: sole


CET codes (shoe):
Game.AddToInventory("Items.yv_platform_heels_black_black_black",1)
Game.AddToInventory("Items.yv_platform_heels_blue_blue_black",1)
Game.AddToInventory("Items.yv_platform_heels_green_green_white",1)
Game.AddToInventory("Items.yv_platform_heels_grey_grey_black",1)
Game.AddToInventory("Items.yv_platform_heels_purple_purple_white"1)
Game.AddToInventory("Items.yv_platform_heels_red_red_black",1)
Game.AddToInventory("Items.yv_platform_heels_sky_sky_white",1)
Game.AddToInventory("Items.yv_platform_heels_white_white_black",1)
Game.AddToInventory("Items.yv_platform_heels_yellow_yellow_white"1)