Unanswered Questions
11
votes
1answer
1k views
How can one compile Darwinia under Linux?
Introversion is now offering the Darwinia+Multiwinia source for sale, stating
Note: You will need Windows and Visual Studio 2008 to build the games. We have tested that the code compiles correctly ...
7
votes
0answers
142 views
Atmospheric scattering sky from space artifacts
I am in the process of implementing atmospheric scattering of a planets from space. I have been using Sean O'Neil's shaders from http://http.developer.nvidia.com/GPUGems2/gpugems2_chapter16.html as a ...
7
votes
1answer
992 views
What does Skyrim Creation Kit's NPC class do?
I'm trying to change it with the setclass console command Based on the UESP wiki it looks like it just governs stat gain for leveling, but based on the Elder Scrolls wiki it seems to only control ...
6
votes
0answers
65 views
Deferred decals normal problem
I've been working on a deferred decal system. So far I have finished the projection part, meaning I can click something in the scene and it will properly project a decal onto the surface of the ...
6
votes
1answer
398 views
Separating logic and data in browser game
I've been thinking this over for days and I'm still not sure what to do. I'm trying to refactor a combat system in PHP (...sorry.) Here's what exists so far:
There are two (so far) types of entities ...
6
votes
1answer
670 views
How should I structure my turn based engine to allow flexibility for players/AI and observation?
I've just started making a Turn Based Strategy engine in GameMaker's GML language... And I was cruising along nicely until it came time to handle the turn cycle, and determining who is controlling ...
5
votes
0answers
66 views
How do I get the compression on specific dynamic body
Sorry, I could not find any tag that would suit my question.
Let me first show you the image and then write what I want to do:
I'm using box2D. As you can see there are three dynamic bodies ...
5
votes
0answers
101 views
How do I blend 2 lightmaps for day/night cycle in Unity?
Before I say anything else: I'm using dual lightmaps, meaning I need to blend both a near and a far.
So I've been working on this for a while now, I have a whole day/night cycle set up for renderers ...
5
votes
1answer
85 views
How do I make Windows store recognize multiple resolutions?
I'm currently developing a XNA Game for Windows phone 8, it works with every emulator resolution (WXGA, WVGA, 720p). However, when I upload the XAP to the Windows phone store it tells me that only ...
5
votes
1answer
230 views
Can a rules engine produce manageable and complex AI?
I am currently in the middle of creating an AI village simulation in Java. Having implemented a simple rules engine for dialog, I am wondering if this DSL can be extended for AI. I have previously ...
5
votes
1answer
266 views
FBO rendering different result between Galaxy S2 and S3
I'm working on a pong game and have recently set up FBO rendering so that I can apply some post-processing shaders. This proceeds as so:
Bind texture A to framebuffer
Draw balls
Bind texture B to ...
5
votes
4answers
801 views
Sprite Animation in Android with OpenGL ES
How to do a sprite animation in android using OpenGL ES?
What i have done :
Now I am able to draw a rectangle and apply my texture(Spritesheet) to it
What I need to know :
Now the rectangle shows ...
5
votes
0answers
185 views
Rendering Unity across multiple monitors
At the moment I am trying to get unity to run across 2 monitors. I've done some research and know that this is, strictly, possible. There is a workaround where you basically have to fluff your window ...
5
votes
2answers
501 views
Alternatives to multiple sprite batches for achieving 2D particle system depth
In my 2D XNA game, I render all my sprites with a single sprite batch using SpriteSortMode.BackToFront and BlendState.AlphaBlend.
I'm adding a particle system based on the App Hub particles sample. ...
4
votes
0answers
36 views
Can I use DllImport/PInvoke in libraries loaded as Assets in Unity Free?
I am interested in using utilising third-party libraries in Unity Free.
I know Unity can use managed libraries as Assets, but only the Pro version supports using native libraries. (DllImport within ...