F3XTeam / RBX-Building-Tools

A set of powerful, easy building tools for ROBLOX.
38 stars 22 forks source link

Automatically Add New Materials #27

Closed AnonymousPrayers closed 9 years ago

AnonymousPrayers commented 10 years ago

The Virtual BLOXCon did say there would be more materials coming, so here's an update that will add all of the materials directly out of Enum.Material:GetEnumItems()

GigsD4X commented 10 years ago

I say it's better to add them manually so that we can write their names out with spaces. Also, implementing #7 will require some manual work.

AnonymousPrayers commented 10 years ago

Would the section I had to add spaces not work? A table of images with an if statement inside the part where the GUI is made will add visual cues to those with them added.

AnonymousPrayers commented 10 years ago

Example for the table of images for #7 ---

labels={["SmoothPlastic"]="AssetIDForImage", ["Plastic"]="AssetIDForImage"} --ect for rest of materials

--now in the section where options are being added if labels[v.Name] then --code to add the image using the assetid labels[v.Name] end