Code Monkey home page Code Monkey logo

Comments (3)

chrisburnor avatar chrisburnor commented on July 17, 2024 3

That looks good! Thanks for the fast response!

Is the 0u16 argument the layer_id? Makes sense to keep that. Also, I'd recommend using an enumeration instead of a boolean for the third 'offset' argument. You could more easily extend it to different options (center, upper left, fixed offset, etc). I'd also suggest having the reverse mapping of pixel to map (useful for mouse selection).

from bevy_ecs_tilemap.

StarArawn avatar StarArawn commented on July 17, 2024

Yes, this would be useful. I can provide an API like:

// 0u16 is map id.
// Assuming tiles are 16x16.

let map_pos: UVec2 = map_query.pixel_pos_to_map_pos(0u16, Vec2::new(8.0, 8.0));
assert!(map_pos == UVec2::new(0, 0));

let pixel_pos: Vec2 = map_query.map_pos_to_pixel_pos(0u16, UVec2::new(0, 0), true); // boolean represents centered or not?
assert!(map_pos == Vec2::new(8.0, 8.0)); 

We likely will need layer_id as well since each layer can have its own tile sizes.

from bevy_ecs_tilemap.

bzm3r avatar bzm3r commented on July 17, 2024

Fixed by #268

from bevy_ecs_tilemap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.