Twinklebear / LPCGame

Working on a C++ tile based 'engine' using SDL
MIT License
18 stars 1 forks source link

Tilebar no longer showing up in editor #26

Closed Twinklebear closed 11 years ago

Twinklebear commented 11 years ago

Did I break something? I haven't opened the editor for quite a while so I'm not sure why it's no longer appearing, I'll have to investigate.

btstevens89 commented 11 years ago

change

void TileBar::Draw(camera * cam)

to

void TileBar::Draw(std::weak_ptr<Camera> cam)

in tilebar.h and tilebar.cpp

or don't worry about it and i'll send a pull once i get all of my old changes synced up with your new code.

Twinklebear commented 11 years ago

Oo hah that'll do it, cool. Yea that sounds fine. I'll leave this open til we pull it in so we don't forget haha.

Twinklebear commented 11 years ago

Ok so I fixed this since I want to mess with some editor stuff coming up soonish.

btstevens89 commented 11 years ago

Yeah I've been working on a ton of editor stuff. I'm working on being able to zoom in and out with the scrollwheel. It's mostly implemented. I'll clean up my code and try to submit it tonight.

Twinklebear commented 11 years ago

O sweet! That's really cool.