Questions tagged [transparency]
Any part of an object or graphic that light does not fully reflect off of, and thus can be seen through. Also applies to translucency effects.
153 questions
0
votes
1
answer
116
views
Trouble with Transparent Pixel Blending in PNG
When drawing transparent PNG data on to the renderer, pixel data of any previous drawing (layer beneath) is replaced with the renderer's drawing color (green).
I have tried setting blend mode in the ...
0
votes
1
answer
47
views
Problems supplying per-vertex alpha data to Monogame shader
I am trying to make a trail renderer in Monogame. What I have currently is a procedurally created trail-mesh with properly applied UV coordinates, and what I have left to do is apply a per-vertex '...
0
votes
1
answer
371
views
Textures still show as opaque even when alpha is multiplied by zero
I'm having a some problems with blending in OpenGLES2.0
I'm drawing a texture above a framebuffer (with ARGB channels). When I draw a transparent texture over a solid color, the alpha channel is ...
0
votes
1
answer
381
views
Transparent Composite Object In Unity HDRP
Potentially a big question, but it seems like it should be simple enough. I have an object in my game composed of multiple parts (connected GameObjects with their own renderers). I want to make this ...
1
vote
0
answers
117
views
How to create intersection shader that simulates squishing?
I want to create a shader that will make spheres/circles look like a blob when colliding.
I don't understand shadergraph at all, but I tried to follow intersection shader tutorials.
The problem is ...
0
votes
1
answer
133
views
How to make texture appear only once, in the center of a cube's top face?
I'm making a platformer game and I need a texture to be only on the top face of a cube and in the centre. Can I do this without scripts or do I need scripts? Also, my texture is transparent and I need ...
0
votes
0
answers
159
views
How can I correctly draw semi transparent textures in a VBO in C++/openGL
I am using C++ glew/glfw to make a game, and I currently have different areas of the map and different entity classes using their own VBO's. So far this decision has been informed from a large part of ...
2
votes
1
answer
903
views
How can I implement semi-transparent/semi-opaque voxels in a voxel game?
I am creating a voxel game with OpenGL, and I would like to implement water. My voxel world is divided into chunks of 16x256x16 cubes (or voxels). Each chunk has its own VAO with two VBOs, the first ...
0
votes
1
answer
364
views
How to change the alpha of a tilemap if the player is in it in Unity
I'm working on a 2D game and would like to have it so when I'm entering a building, the roof fades away. This is my current attempt, I'd just like to know how to set the alpha of a tilemap through c#.
...
0
votes
0
answers
63
views
How do I make it look like the ring here is going around the spire?
I have game objects which I'm placing relative to a tilemap using the GameObject brush from the 2D Tilemap Extras package.
Unfortunately, I'm not sure what is necessary to acheive the visual look I'm ...
0
votes
0
answers
128
views
Increase opacity of a floor plane along the path travelled by a cube
I have a plane object (a normal Unity 3D Plane, but it can be a complex floor in the future) and a cube is moving on the plane.
Currently, the plane is transparent. I want to make the plane opaque as ...
2
votes
1
answer
3k
views
Can't make simple shader transparent in Unity
I have already visited a lot of links, but non of them did not help me.
I just want to make a window as a plane (face) with texture with transparency.
.shader:
<...
1
vote
0
answers
432
views
How can transparency be implemented in a Minecraft-like game without sorting the vertices?
I'm working on a minecraft clone with OpenGL and I've been trying to implement the rendering of textures with transparency for several days now with out succes.
What techniques can be used to achieve ...
1
vote
2
answers
424
views
Does OIT Rendering work for semi-transparent textures with opaque parts?
I'm Work ing on a minecraft-like game (in OpenGL with c++) and I'm tryping to Implement Transparency for Blocks like windows, ice, leafs and water. I've tried to implement Weighted Blended Order-...
0
votes
1
answer
1k
views
Deferred shader for transparency. Working or not?
many people are saying defered shader is not accurate for transparency. I've done some with a small demo (Directx11) and would like to know the limit of this strategy when rendering opaque+transparent ...
1
vote
0
answers
220
views
How do I make a mask that dictates which layers are visible in Unity?
I'm trying to create an effect where the player progresses from one level to the next by a portal appearing as a rip in the fabric of time, and the portal grows until it'd half the screen, then ...
0
votes
1
answer
1k
views
Rendering order objects with transparency?
I do not know if this question might have been asked before, but which method for rendering transparency is more efficient in terms of less lag?:
Rendering the scene from front to back with respect ...
0
votes
1
answer
617
views
Sprite transparency fails when rendered through shader
I am currently trying to implement a shader to a sprite of mine, but the transparency is completely removed when the texture goes through a Sample Texture 2D node.
The sprite under the Sample Texture ...
0
votes
0
answers
401
views
Spawning projectile: it's there but does not show
Here is the code and very simple.
I can see the object in the blue print and has nothing except the object itself.
so all the issue should be on the C++ code.
...
0
votes
1
answer
320
views
How to set transparency in DirectX 7 surfaces, which contain 32BPP BMP files?
The following is my working code. Everything functions and I can animate my sprite but the sprite has no transparency color. It has a white background on every frame. I am using DirectX 7.0 and 32BPP ...
3
votes
1
answer
2k
views
How front-to-back blending works?
I would like to implement dual depth peeling in my engine. I read the original paper and examined the corresponding source code. I understand the algorithm, except how the blending works, especially ...
1
vote
0
answers
563
views
Custom shader with stencil breaks Unity built-in masking
my custom shader works like a charm for what I wanted it, but if it is referenced in the scene, Unity built-in masking stops working (both the Sprite Mask component and the rect-based Mask stop ...
1
vote
2
answers
212
views
Add oceans to an earth model with only continents?
I have the following earth model, it only has continents:
I wanted to add water but as you can see, some of the continents are now hidden due to the water sphere being more round than continents:
I ...
0
votes
0
answers
313
views
How to highlight intersection between objects?
I'm new to Unity and I'm developing an augmented reality app.
My situation is as follows: I have two objects in the scene, a neighborhood model and a cube. The mockup will be the object I am going to ...
0
votes
2
answers
990
views
Rendering to Texture with Transparency in Monogame?
Please forgive me if I'm asking a question that has been answered before, but for the life of me, search as I might, I couldn't find a problem exactly like this anywhere.
I'm trying to render a ...
1
vote
1
answer
2k
views
Unity Vertex Color Shader with Transparency
I'm trying to achieve a simple effect: I have a cube mesh and I want some of the vertices to change color. In this case, I want it to form some sort of a gradient where the unchanged vertices are set ...
0
votes
0
answers
154
views
Alpha blending works when rendering to an FBO, but not when rendering to the screen buffer
My rendering pipeline goes something like this-
Bind multisampled FBO
Render GameObjects
Render Transparent Objects
Blit multisampled FBO to normal FBO
perform any Post processing
Render a quad ...
0
votes
1
answer
2k
views
How to get rid of the white border/background on my png image?
I am making a game using pyGame; it is basically a space invader game, with a tank.
As we can see, this tank image I have has white borders / a white background, which I really want to get rid of.
I ...
1
vote
0
answers
598
views
Throwing away inner faces of cubes of a transparent voxel structure in Unity3D?
I want to create a "Building site is (not) obstructed." indicator for my building system.
How can I throw away those faces which would be hidden if the material would be opaque?
1
vote
0
answers
41
views
Transparency problem / Expanding material fixes it magically?
i stumbled upon a problem, can't figure out what's the reason and how to solve it.
I have glass-windows which use just the standard (specular setup) shader.
in the first place when the model is added ...
1
vote
4
answers
2k
views
How are semitransparent polygons rendered in the correct order?
It is my understanding that while opaque triangles can be rendered in any order thanks to the Z buffer (especially when rendering in hardware), semitransparent triangles cannot. Instead, they need to ...
0
votes
1
answer
68
views
How to get 60fps animation in terms of rounding/truncating position/alpha floats
I am wondering what gives the best animation performance running at 60fps with lots of objects. I have seen in a few places such as this that you should round or truncate your values so you don't get <...
0
votes
1
answer
199
views
How can I write an additive mesh shader that splits the RGB channels while accounting for depth?
I'm trying to create a sort of "hologram" effect. So far, what I have is an additive, three-pass shader that uses ColorMask for each pass to separate the RGB channels. The problem is that doing so ...
1
vote
0
answers
416
views
How to implement weighted blended order independent transparency in OpenGL?
I want to implement weighted blended OIT in my C++ OpenGL 3D game, but I didn't find any C++ examples about weighted blended order independent transparency.
Paper
How to clear accumTexture(...
7
votes
1
answer
9k
views
How to write a transparent shader for a sprite that ignores transparent sprites behind it?
I have multiple UI Sprites that have their alpha set so you can see what's behind them. I would like to make these UI Sprites ignore other UI Sprites.
So take this first picture. There are 4 UI ...
0
votes
1
answer
2k
views
DX11: Alpha blending not working with textured quads
A bit novice on directx11.
I am rendering some textured quads out of PNG files (with alpha transparency) and get some inconsistency with my alpha blending. I have a background changing color ...
0
votes
0
answers
151
views
Hardware Fragment Sorting?
I'm writing a rendering engine in OpenGL.
I Want to do order independent transparency.
I had heard somewhere that some GPUs have support for actually sorting the fragments of all the objects in the ...
0
votes
1
answer
104
views
Partially transparent surface over opaque surface causes strange artifacts
I have a world with many unit square tiles, each made up of a 3d terrain chunk and a 2d water chunk (a square). Each chunk stretches from [0, 0] to [1, 1] (inclusive) in its tile space. This means ...
2
votes
0
answers
175
views
Multipart character sprite and transparency
In my 2D platform game I have characters made of multiple separate pieces that can move independently in a hierarchy, so that I could move the limbs and head, change facial expressions etc., or add ...
1
vote
1
answer
193
views
How can I improve the display of my png files?
I develop a mini Android game available from my github (also the release apk file). The game is for kids and you are supposed to catch falling object and get points for that. Now I just created png ...
7
votes
5
answers
53k
views
How can I make my Camera's RenderTexture output have a transparent background?
I'm writing a 3D game using Unity 2017.1.0b1. I have a disabled Camera that takes a "snapshot" of the current scene and stores it in a RenderTexture when a button is clicked. I then display the ...
2
votes
2
answers
1k
views
Fade in rendering mode doesn't work as intended
The picture shows an object made out of one model. The object works as intended when rendering with opaque rendering mode, but I want the object to fade in/out during animation. The glitch seems to ...
0
votes
1
answer
475
views
Unity - occlude a transparent part of a generated mesh with a non transparent part
I am making a procedurally generated voxel world made of blocks. Some of the blocks have non cubic shapes (ramps), and some of the blocks are transparent (water).
All the blocks are part of the same ...
2
votes
2
answers
2k
views
Modern OpenGL, billboarding, alpha transparency
I'm having some transparency issues when rendering billboards in modern OpenGL.
I've created two billboard sprites, each one with alpha transparency, just for testing.
When I render two sprites ...
0
votes
2
answers
1k
views
LibGDX FrameBuffer no Transparency when drawing
I try to draw severeal Sprites to a FrameBuffer. The Sprites are PNGs with transparency. ...
0
votes
1
answer
4k
views
Unity Custom Sprite Shader: Don't write transparent pixels into Depth Buffer
For performance reasons, i have to create my own billboards to replace some geometry. I modified the standard sprite shader to Cull Back and ...
3
votes
1
answer
535
views
UE4 How to Avoid Boundary Seams with Multiple Refractive Meshes
We use multiple box meshes to create our game world in Unreal Engine 4, but we also use those boxes with translucent/sss materials with refraction. The problem is there are seams between those boxes ...
4
votes
2
answers
6k
views
Can I clip a collection of geometry to render only inside a particular worldspace volume?
I am making a VR app in Unity. I have a giant map that I want to display on a virtual table. The map is too large to fit on the table, and I cannot change its size. (It is a third party asset, and ...
1
vote
2
answers
16k
views
Why isn't my image's transparency honoured in the Unity sprite?
I'm following through Jesse Freeman's Lynda course Unity 5 2D Essential Training. The exercise files contain sprites with transparency. Here's a screenshot of one such sprite on the trainers screen (...
0
votes
1
answer
581
views
Storing rendering data for voxel game 1 VAO and VBO or 1 for every chunk
I have a minecraft style voxel game with placing and digging blocks. it runs at 400+ fps on my computer but when I added semi-transparent water it started running at ~40 fps. so a time per frame ...