I would like to use a projector to “map” several objects at once and have them keep that mapping when they are no longer in the projector.
Example:
When an image is “projected” into a camera, it gets “baked” onto the film. The image stays baked on the film even though it is no longer being exposed to that image through the camera lens (the projector).
This can actually be done with unity pro, and a bit of shader knowhow. What you do is you write a custom vertex shader that unwraps your mesh according to its UV structure and transforms it into screen space. Then you perform your regular texture projection in the same shader. Assign that shader to a material, assign that material to a projector, put that projector onto a layer, and cull the main camera from rendering that layer, then create a second camera that renders only that projector layer and tell it to render its output to a RenderTexture. You will then have a render texture with your projector sprite projected onto its UVs.
Should be relatively straight forward for anyone who knows their vertex / fragment shaders. Here is a basic one that I came up with. I would wager a guess that this method could be easily translated to light cookies as well.