- Uređeno
A background with interactive pieces?
Hello,
I'm already using spine for my characters, and now I'm wondering if it would be a good tool for my backgrounds. My game is like a point and click adventure. I have three requirements:
- When you hover over something in the background that you can interact with, I want it to light up.
- Sometimes these pieces will be there or hidden, depending on the player's progress in the story.
- Sometimes I want to blur the whole background (including all the pieces that may or may not be visible)
My artist has given me a PSD with all the pieces. With spine, it's pretty straightforward to have the pieces show or hide, but I don't know how I would highlight a piece when it's hovered or blur everything. It seems like a shader would be the tool for this. If this is true, how would I conditionally apply a shader to a background piece?
More importantly, is spine the wrong tool for this? I could also do this in unity without spine or some other tool, but I don't know what would be the best tool for the job.
Regarding highlighting / lighting up objects on mouse-over:
There are many ways to achieve this, using Spine or Unity.
Since there are many ways to highlight an object, what exactly do you have in mind by "light up" - shall it get brighter alltogether? Or shall it receive an outline as well? Shall it slightly grow in size?
You can do many of these things with Spine or the Spine-Unity runtime: e.g. change the slot's color to something brighter (in an animation in Spine, or programmatically using the Spine-Unity runtime), switch attachments at a slot from a normal to a hightlighted version, etc.
Regarding blurring backgrounds:
I don't know if this applies in your situation, but you could use a depth of field (DoF) camera effect to focus on e.g. a character's head (set focus depth to this object) and blur things that are further away from the focus plane. This way you could adaptively fade blur in and out and have nice transitions.
A shader will always be involved when applying blur on a normal image or scene.
You could of course also pre-process your images and apply blur in photoshop and then quickly swap images, but that way you will not get smooth blur transitions.
Since there are many ways to highlight an object, what exactly do you have in mind by "light up" - shall it get brighter alltogether? Or shall it receive an outline as well? Shall it slightly grow in size?
Light up and receive and outline, I think. This is the kind of thing I usually fiddle with without knowing in advance what will look good, so it's possible that I'd want to make it grow in size too, but I think that's less likely.
Regarding blurring backgrounds
I guess I could preprocess. I don't ever want a blurry piece but a sharp background. I want the whole thing to blur if it's blurry.
BTW, I know what a shader is for, but I have no idea how to make or use one, especially if it were to apply one to a part of a spine asset. Where can I learn how to do that?
AoF wroteBTW, I know what a shader is for, but I have no idea how to make or use one, especially if it were to apply one to a part of a spine asset. Where can I learn how to do that?
Blur will always take place as a post-process shader on a render-texture (where your objects have been completely rendered to), it will not be attached on individual objects. Typically you don't write blur shaders yourself but apply the ones that are provided by the engine as post-processing effects.
You can find a lot of material on how to use post processing effects in Unity, just search for Post Processing Stack v2.
E.g. this tutorial video could help.