I thought his bones would work great for generic skeleton bodies, but they have a red twinkle on them despite the name change.
Anyway to get rid of it?
Remove Red Glow from Toorum's Bones?
Re: Remove Red Glow from Toorum's Bones?
Use this in your items.lua:
This should work well in Grimrock 1.
Code: Select all
defineObject{
name = "remains",
class = "Item",
uiName = "Remains",
description = "Long ago decayed remains of a human.",
model = "assets/models/items/remains_of_toorum.fbx",
gfxIndex = 212,
weight = 5.0,
}
Re: Remove Red Glow from Toorum's Bones?
Thanks. Worked like a charm.maneus wrote:Use this in your items.lua:
This should work well in Grimrock 1.Code: Select all
defineObject{ name = "remains", class = "Item", uiName = "Remains", description = "Long ago decayed remains of a human.", model = "assets/models/items/remains_of_toorum.fbx", gfxIndex = 212, weight = 5.0, }