|
Hello! I'm looking for some help with a very confusing problem. I have a top down game with an inventory and collection system. When a player hovers over an item, it turns either green or red based on whether it is within range to pick up or not. This works fine, but when I want to return the object to it's original colors, I run into some problems. Here is my code: My print function, just for debugging, returns exactly what I would expect. For each object it returns exactly the number of materials on that object, but nothing changes at all. When the scene loads, the object is it's own color, when I mouse over it changes to red/green, but when this fires nothing at all happens. I get no error message. Anyone have any ideas that can point me in the right direction? Thanks a lot!
(comments are locked)
|
|
I got it to work using something similar to what Thomas suggested. I feel it is a bit sloppy, but it gets the job done and only needs to be applied to the parent object.
(comments are locked)
|
|
What I'm doing for this is that I have a really simple behavior attached to anything inside of my prefab that includes a MeshRenderer - this component has a public List that matches per-index the materials that are set when the object Starts. This allows me to revert every material (in position in the materials array) back to it's original shader. This works but performance is not great (draw calls shoot up.) What I've been thinking about doing is implementing a RenderTexture from a camera matching the current camera, that renders only the item I'm interested in (as a clone) with the new materials applied; or "possibly" using the alpha from Camera A to modulate what the user sees under the cursor. Haven't really sorted all of that out yet.
Apr 27 '12 at 04:40 PM
tingham
(comments are locked)
|
