Hola sofia, este juego fue creado durante un game jam organizado por https://twitter.com/esaulgd el jam fue organizado alrededor de la crisis de venezuela, te recomiendo ponerte en contacto con el por que tendra a acceso a mas informacion que la que yo un participante tiene.
Miguel Obando
13
Posts
3
Topics
14
Followers
9
Following
A member registered Apr 05, 2015
Recent community posts
One Script Jam community · Created a new topic [Progress Stream] My Twitch channel where i am showing my progress
Hello,
I will be showing my progress on my twitch channel, https://www.twitch.tv/obandoxxx i mainly talk on spanish. Sorry the shameless spam.
Regards
I am trying really hard to avoid that and doing collision by hand comparing Vector distances, but i think this wont take me far, i literally sort all boxes by distance and take the fist one,
var boxesCandidates = boxes.Where(r =>
{
if (r.id == _hoverBox.id) return false;
var relativeY = r.startPosition.y - _hoverBox.startPosition.y;
return verticalAxis > 0 ? relativeY > 0 : relativeY < 0;
});
boxesCandidates = SortByDistances(boxesCandidates, false);
var candidate = boxesCandidates.First();
SetHoverBox(candidate);
PD: Sorry for not been really helpful
One Script Jam community · Replied to Sarrixx in Could we have other mono behavior classes during development that later we will remove
One Script Jam community · Created a new topic Could we have other mono behavior classes during development that later we will remove