Taras

Results 7 issues of Taras

Here is how it looks ![image](https://user-images.githubusercontent.com/23558898/170859679-21606010-38cd-4184-84ee-616490a352f1.png) Transform handle is in pivot local position ![image](https://user-images.githubusercontent.com/23558898/170859727-348a7136-5c81-4a30-9ef7-5ecf7bd422b0.png) Also, Gizmos don't account for selected split axes ![image](https://user-images.githubusercontent.com/23558898/170859801-0064637e-e7a4-4c5b-ad66-04dd7e66cf69.png)

Is there a way to set renderers from the inspector? ![image](https://user-images.githubusercontent.com/23558898/126872129-6b3eaf7e-ee10-4f6f-a065-6eb4aeb323ac.png) I would like to control this. Sometimes not all child objects should be outlined. Sometimes renderers are not child...

question

To fix this I modified OutlinePass.cs at line ~106 ```c# cmd.SetRenderTarget(_renderer.cameraColorTarget, _renderer.cameraDepthTarget); // added line context.ExecuteCommandBuffer(cmd); CommandBufferPool.Release(cmd); ``` For such a small fix, I don't want to make a pull...

bug

URP has a camera stacking feature that allows rendering additional objects on top of the Base camera. For example, this could be used for rendering FPS weapons that don't clip...

enhancement

Would be cool to have native integration with Unity's localization package

enhancement

Title. The problem is that depth texture produced by orthographic camera is linear, not exponential like in a perspective camera. Therefore, using `LinearEyeDepth` is not correct for orthographic camera. To...