Compare commits
No commits in common. "757034f5b5245f533dfb19795cc853fcfcc50760" and "52643c2469db905b070874e8b9103c9dd8241abc" have entirely different histories.
757034f5b5
...
52643c2469
|
@ -3,8 +3,8 @@ if select && selectedunit == noone {
|
|||
var mousex = floor(mouse_x/global.tilesize.x);
|
||||
var mousey = floor(mouse_y/global.tilesize.y);
|
||||
log(mousex, mousey);
|
||||
if mousex < array_length(global.map) && mousex >= 0 {
|
||||
if mousey < array_length(global.map[mousex]) && mousey >= 0 {
|
||||
if mousex < array_length(global.map) {
|
||||
if mousey < array_length(global.map[mousex]) {
|
||||
var i;
|
||||
for (i=0; i<array_length(global.map[mousex][mousey].contents); i++) {
|
||||
if global.map[mousex][mousey].contents[i].object_index == o_unit {
|
||||
|
@ -31,8 +31,8 @@ var mousex = floor(mouse_x/global.tilesize.x);
|
|||
var mousey = floor(mouse_y/global.tilesize.y);
|
||||
//log(mousex, mousey);
|
||||
hoveredunit = selectedunit;
|
||||
if mousex < array_length(global.map) && mousex >= 0 {
|
||||
if mousey < array_length(global.map[mousex]) && mousey >= 0 {
|
||||
if mousex < array_length(global.map) {
|
||||
if mousey < array_length(global.map[mousex]) {
|
||||
var i;
|
||||
for (i=0; i<array_length(global.map[mousex][mousey].contents); i++) {
|
||||
if global.map[mousex][mousey].contents[i].object_index == o_unit {
|
||||
|
|
Loading…
Reference in New Issue