What does your shader look like? And does your “logo” texture have an alpha channel / transparency?
Usually for something like a “logo” it’ll have a transparency and you use a lerp() to blend between the background and the logo, which is the same way it works if you were to use a logo as a sprite or with an otherwise transparent material. However if the art goes all the way to the edge of the texture, you’ll additionally need to clamp the area you blend by the 0.0 to 1.0 range of the logo’s UVs.
Thanks for answer! This shader is based on default standard surface shader, so I didn’t write much code yet.
Now then I’ll separate logo map to one for albedo, the other for alpha, and gonna study further about clamping uvs. Again, thanks for answer.
um… for preparing non-transparent logo? I’m trying to make kinda “interface” shader for co-oping with designer. (unfortunately I’m new to shader things) I’ll discuss about that. Thanks for advise!