Author Topic: Colorshifting icon vs spawned item model  (Read 416 times)

Is there any way to colorshift the item model without colorshifting the icon? Spawning the item with doColorShift = false; results in an initially white model, with the icon not colorshifted, but after being picked up once the model switches to match the colorshifted image model.

No. there's no way to colorshift one without colorshifting the other. If the icon has no white in it then there should be little visible effect on it though.

Did you try changing the color shifting mid game?

wait I thought there were two separate color shifts for the item and icon? that's kinda dumb

I've had the same problem with new dup, you have 2 solutions:

1) Create a new model for the item that has the color already applied, disable colorshift
2) Create a hacky package like this

package Whatever
{
   function WhateverItem::onAdd(%this, %obj)
   {
      parent::onAdd(%this, %obj);
      %obj.schedule(100, setNodeColor, "ALL", %this.colorShiftColor);
   }
};


to fix the item color after spawning, disable colorshift