Questions tagged [selection]
Selection methods, eg. in RTS games
35 questions
2 votes
1 answer
121 views
How would I implement the edge loop function from Blender (and how does it work)?
I'm a fairly new game developer, and I've been working on a custom mesh editing system. I've been able to implement edge bevelling (almost, stuck on a division by zero problem), Catmull-Clark ...
0 votes
1 answer
792 views
Unity3D multiple objects user rectangle selection
I wish to allow the user to select multiple units by click and drag as most RTS do. The issue I have is that the tutorials are either in 2D or only use the ...
2 votes
1 answer
854 views
Making 2 Player UI
For practice, I'm trying to remake the character select screen from Street Fighter II. I managed get it working with a Grid Layout Group, ScriptableObjects, and some scripts to have the 1P cursor ...
1 vote
1 answer
325 views
Handling mouse input depending on selected unit and clicked tile
I am making a turn-based tactical game (think something like X-Com) and I am currently trying to figure out how to handle mouse input in a clean way without a mess of if-statements. I have a lot of ...
1 vote
1 answer
184 views
In PhaserJS, how do I get a clicked Physics.P2 body's data?
I have a sprite with Phaser.Physics.P2 enabled, using a custom shape loaded with loadPolygon() from a ...
4 votes
1 answer
174 views
Selecting the closest point in perspective view mode
I'm trying to improve my algorithm for selecting points in perspective view mode (OpenGL/Qt/C++). The current implementation works as follows. The user clicks on a certain ...
12 votes
3 answers
1k views
How to hide a post-processed mesh outline when/where the mesh is hidden
I'm working on setting up an active outline in my 3d engine, a highlight effect for selected 3d characters or scenery in the screen. After working with the stencil buffer and getting some ...
2 votes
2 answers
15k views
How do I trigger OnSelect() via the ISelectHandler in my class?
I'm trying to figure out how I can make a custom UI element identify when it has been selected or deselected. Classes such as Selectable inherit from the ...