Questions tagged [eclipse]
Eclipse is an open source IDE and platform for building applications. There is a wide variety of plugins for various programming languages and other development-oriented tools (such as modelling, database browsing, etc.).
58 questions
0
votes
0
answers
210
views
How to use Eclipse for C# scripting instead of Visual Studio?
https://discussions.unity.com/t/how-to-use-eclipse-for-c-scripting-instead-of-visual-studio/330038
"I use Eclipse IDE for Java development. I am trying to get it to work with C#, a programming ...
0
votes
1
answer
88
views
Looking for tips on how to optimize/debug Java/Eclipse
I made a raycasting engine with wall textures. Before adding the texture the engine was silky smooth. With textures it has small lags (or stutters) when i move around and i would like to know why. My ...
1
vote
0
answers
105
views
Why is my player falling through the Tiled map?
I am gassed. I have this game due very very soon. I made my player so that it doesn't fall through or go through tiles from Tiled that have the property "blocked". I do not know why but it is not ...
1
vote
0
answers
63
views
Slow Processing Sketch
My game runs through a processing sketch. When I export the .jar file from Eclipse, the sketch moves incredibly slow, but it runs at the proper speed in the IDE. Is there a way that I can fix the jar ...
1
vote
1
answer
727
views
How to set up flatbuffers in Android Studio - Gradle?
Just switching over from Eclipse to Android Studio. I think I'm supposed to use Gradle to automatically download dependencies from the web. Sounds great, but I can't get it working with anything, in ...
0
votes
3
answers
1k
views
How do you exit a game when you hit an enemy?
I have a game where you are going to dodge the enemies. I want to implement a feature where the game exits when the player hits an enemy. How can I do that?
0
votes
2
answers
192
views
Running Slick2d outside of the IDE
I am looking for advice how to solve an exception I am getting,
I've looked around and seen people get the same error but most people whom had it seems to run on old graphics drivers and once they ...
2
votes
1
answer
3k
views
SDL_Image setup problems on windows / mingw 64 / eclipse
I've been a software developer for a while, but I haven't done C++ in a long time and I thought I'd try it out with some game developement. I'm following the tutorial on youtube for Remaking ...
6
votes
2
answers
8k
views
How to correctly setup latest LWJGL libraries to Eclipse?
A year ago, I understood how to setup an LWJGL project in Eclipse IDE.
Now LWJGL has a lot of changes including a different file structure.
I downloaded the latest release, LWJGL 3.1.0 Build 40 from ...
0
votes
1
answer
179
views
Need help in making buttons for MenuScreen in Java
I'm making a Menu for my game and I made the MenuState(class) and made a MouseManager(class, implemented MouseListener and MouseMotionListener) and they are different class in different folder. Here ...
0
votes
0
answers
190
views
Collision detection problem in Java
I have a problem in my game. My player cannot move after I put collision detection from this video: https://www.youtube.com/watch?v=DadImcUt9Nk&index=22&list=PLah6faXAgguMnTBs3JnEJY0shAc18XYQZ
...
0
votes
2
answers
434
views
Failed to initialise the LWJGL display
I added the fix of adding this line "Dorg.lwjgl.opengl.Display.allowSoftwareOpenGL=true" to vm arguments, updated my drivers but nothing is working......my error message still remain same has shown in ...
1
vote
1
answer
185
views
C++ class hierarchy issue [closed]
I am taking the step of moving on from Java over to c++, I have been working on my own custom game engine in java for a while so have a good understanding of polymophism, inheritance etc.
Now to the ...
1
vote
0
answers
256
views
Error "glGenBuffers is ambiguous" in Eclipse Mars [closed]
I have called a function, which is part of OpenGL correctly.
uint vboId;
glGenBuffers(1, &vboId);
This is definitely correct because the program successfully ...
1
vote
2
answers
972
views
Making walls in OpenGL [closed]
How do I make walls in JOGL 2.0 in Eclipse?
So far, I've tried it with listing vertices, until I realised that was a C method while I need to work it in java.