Unanswered Questions
17
votes
0answers
661 views
How can I get PagedGeometry grass to receive shadows?
I made the switch to Ogre3D (v1.7) and to using PagedGeometry. What I'm trying to do is make a simple scene with a terrain, some trees and grass. In a nutshell, I would like to achieve this kind of ...
10
votes
3answers
531 views
How can I create a 2D “gooey”/“sticky” separation effect?
I want to create an effect similar to this animation where two shapes separate over time but are connected (for a time) by something gooey that stretches and eventually breaks. Like pizza cheese, but ...
10
votes
0answers
279 views
How do I run functional tests against my Unity3D game?
Context
I am continuing some legacy code for a game in Unity3d, and I want to write some functional tests meant for regression, to ensure I don't break things when implementing new things or when ...
9
votes
3answers
373 views
BRDF and Spherical coordinate in ray tracing
I developed a ray tracer that use standard phong/blinn phong lighting model. Now I'm modifying it to support physically based rendering, so I'm implementing various BRDF models. At the moment I'm ...
9
votes
0answers
188 views
Dual Contouring - Finding the feature point, normals off
I am following this tutorial to implement Dual Contouring
http://www.sandboxie.com/misc/isosurf/isosurfaces.html
My data source is a grid 16x16x16;
I traverse this grid bottom to top, left to right, ...
9
votes
2answers
415 views
Rotating a 3rd person camera toward a target
I have a 3rd person camera that doesn't look directly at the player but somewhere in front of him.
When the user enter shooting mode, I want the camera to turn around the player to face the target.
...
8
votes
0answers
462 views
SSAO and normal issues
I'm using a SSAO alghorithm called "SAO", seen here: http://graphics.cs.williams.edu/papers/SAOHPG12/
I'm currently having issues with "smooth" normals, for example when using normal/height maps.
To ...
8
votes
1answer
774 views
Word game - board implementation?
I'm working on a boggle type game for android, using libgdx. The user is presented with a 4x4 grid of letters and must find words by dragging their finger over the letters.
Unlike boggle I want used ...
7
votes
0answers
183 views
Shader to see silhouette through alpha blended sprites
I want to achieve in Unity a see through effect like the one in these examples:
In my specific scenario there are a couple of requirements:
Sprites are using alpha blending, and sprites have ...
7
votes
1answer
383 views
How would one generate a Navigation Grid for a 3d world?
I am attempting to find a solution to this problem. I'm trying to build a navigation mesh in the format of a grid of verticies locked to x,y floored coordinates in the shape of squares for 3D space. ...
6
votes
1answer
181 views
How are Stencil Buffer Operations Applied in ShaderLab
In Unity's Shader lab, I've read that the Stencil buffer is implemented with a mask, and an object reacting to the mask.
The mask may be defined like the following:
SubShader {
Tags {
"...
6
votes
0answers
150 views
Learning how to make imposters manually in Unity - how to render an object to a texture not what camera sees?
I am trying to learn the most performant way to make an imposter in Unity manually - not using pre-fabricated solutions.
My first guess is that it should be achieved by using RenderTexture and a ...
6
votes
0answers
165 views
Oculus Rift on Motion Simulator Platform
I currently develop a VR environment for an existing (physically) large motion simulator platform. The user can sit on this motion platform and gets accelerated and tilted to induce the feeling of ...
6
votes
0answers
83 views
Spherical Area Lights do not match reference
So I'm adding spherical area lights to my application, and comparing my results with mitsuba, I am getting some differences (left is my approach, right is mitsuba - a pathtraced reference):
What I am ...
6
votes
0answers
503 views
How to make animals Playable in Skyrim
I have some experience with the Skyrim Creation Kit, and have made some small mods. I am really interested in creating new races, and have already made a mod that allows the player to create an old ...