Questions tagged [extension]
The extension tag has no summary.
11 questions
0
votes
1
answer
629
views
Why is this Godot extension class still considered abstract?
I'm working on building an extension to MultiplayerPeer for Godot, using GDExtension. As is my custom, even if I don't end up pushing it to the final product, I always start with a Nullary Pattern ...
0
votes
0
answers
139
views
How can I modify the GUI of a default Unity window?
How can I modify the GUI of a default Unity window?
E.g. I am trying to modify the Animation window. Here is what I am trying to do for the beginning:
...
0
votes
1
answer
111
views
How can I see whether my sprite is .png or .jpg in the Inspector view or some place alike in Unity?
How can I see whether my sprite is .png or .jpg in the Inspector view or some place alike in Unity?
Here is an example of me ...
3
votes
2
answers
812
views
(XNA) Possible to hide, compress, or rename .XNB files?
I'm fairly new to XNA (only a week into C# and XNA at this point) but I have been developing games for a while now, and the program I used did not require any/many external files in creating an ...
4
votes
2
answers
6k
views
Why is GL_TEXTURE_MAX_ANISOTROPY_EXT undefined?
So I'm writing my texture class in my opengl game, I get to the part where I would normally set GL_TEXTURE_MAX_ANISOTROPY_EXT, and I'm shocked to discover that it's undefined! This exact same ...
-2
votes
1
answer
410
views
Music and SFX Question on Memory Efficiency [closed]
What should I recommend: MP3 or WAV for the SFX? Also, what should I do to handle the memory in music or SFX?
3
votes
1
answer
2k
views
Why hasn't OBJ been extended to support skinning?
Out of every format I know, the only one that works accross all applications perfectly is OBJ. I think it is an excellent format and I would use it for everything - except it does not support skinning....
0
votes
2
answers
4k
views
Should I use GL_GENERATE_MIPMAP_SGIS or GL_GENERATE_MIPMAP?
I'm using Windows 7 and most people in the group of this specific OpenGL project is too, there's only one member on Windows XP. We are all using Visual Studio 2010 though. I don't know if the OpenGL ...
7
votes
3
answers
9k
views
Can I write plugin/extension to Unity editor?
Is there possiblity to write my own plugin/extension to Unity editor ? I want to write plugin to generate map for me from xml file.
16
votes
5
answers
1k
views
How to balance a non-symmetric "extension" based game?
Most strategy games have fixed units and possible behaviours.
However, think of a game like Magic The Gathering : each card is a set of rules.
Regularly, new sets of card types are created.
I ...
4
votes
3
answers
645
views
Use of classes for lua extensions
I'm asking about a very small domain. One-off extension scripts. IE, defining a new weapon for scorched earth.
When providing and API for small extension I've seen two approaches.
The API exposes ...