Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix TileMap::map_to_world description #43193

Merged
merged 1 commit into from
Jan 29, 2021
Merged

Docs: Fix TileMap::map_to_world description #43193

merged 1 commit into from
Jan 29, 2021

Conversation

kleonc
Copy link
Member

@kleonc kleonc commented Oct 29, 2020

Description of TileMap::map_to_world wrongly stated it returns a global position. This fix is analogous to #25136.
Relevant source code:

godot/scene/2d/tile_map.cpp

Lines 1535 to 1537 in d5bda59

Vector2 TileMap::map_to_world(const Vector2 &p_pos, bool p_ignore_ofs) const {
return _map_to_world(p_pos.x, p_pos.y, p_ignore_ofs);
}

godot/scene/2d/tile_map.cpp

Lines 1470 to 1492 in d5bda59

Vector2 TileMap::_map_to_world(int p_x, int p_y, bool p_ignore_ofs) const {
Vector2 ret = get_cell_transform().xform(Vector2(p_x, p_y));
if (!p_ignore_ofs) {
switch (half_offset) {
case HALF_OFFSET_X:
case HALF_OFFSET_NEGATIVE_X: {
if (ABS(p_y) & 1) {
ret += get_cell_transform()[0] * (half_offset == HALF_OFFSET_X ? 0.5 : -0.5);
}
} break;
case HALF_OFFSET_Y:
case HALF_OFFSET_NEGATIVE_Y: {
if (ABS(p_x) & 1) {
ret += get_cell_transform()[1] * (half_offset == HALF_OFFSET_Y ? 0.5 : -0.5);
}
} break;
case HALF_OFFSET_DISABLED: {
// Nothing to do.
}
}
}
return ret;
}

@kleonc kleonc requested a review from a team as a code owner October 29, 2020 20:39
@Calinou Calinou added bug cherrypick:3.x Considered for cherry-picking into a future 3.x release documentation labels Oct 29, 2020
@Calinou Calinou added this to the 4.0 milestone Oct 29, 2020
Copy link
Member

@akien-mga akien-mga left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for the delay reviewing this, the fix is correct 👍

I force pushed a rebased commit to fix the Windows CI which failed for unrelated reasons.

@akien-mga akien-mga merged commit a4aaead into godotengine:master Jan 29, 2021
@akien-mga
Copy link
Member

Thanks! And congrats for your first merged Godot contribution 🎉

@akien-mga
Copy link
Member

Cherry-picked for 3.2.4.

@akien-mga akien-mga removed the cherrypick:3.x Considered for cherry-picking into a future 3.x release label Feb 2, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants