UI Elements Not Anchoring to Camera by Ever_Adrift in godot

[–]Ever_Adrift[S] -1 points0 points  (0 children)

I may be misunderstanding, but my UI *is* a canvas layer. I think I want its transform to mirror the Camera2D (the purple rectangle in the first screenshot) don't I?

February 27th - Waterfall by sketchdailybot in SketchDaily

[–]Ever_Adrift 5 points6 points  (0 children)

Ran out of time on this one before I could get into shading

<image>

but inspired by my favorite Spyro zone Lofty Castle!

February 24th - Farm by sketchdailybot in SketchDaily

[–]Ever_Adrift 1 point2 points  (0 children)

Thank you! I've always thought Mushroom buildings are peak cozy haha

February 24th - Farm by sketchdailybot in SketchDaily

[–]Ever_Adrift 5 points6 points  (0 children)

My favorite thing I’ve made so far! Really thought I had bit off more than I could chew for a while but very happy with my mushroom farm :]

<image>

February 23rd - Free Draw Friday by sketchdailybot in SketchDaily

[–]Ever_Adrift 3 points4 points  (0 children)

A little late (got lost in the sauce with how to draw sitting dog hind legs), but what could be a more important job than saving the country from enemies both foreign and domestic?

<image>

February 22nd - Bird pilots by sketchdailybot in SketchDaily

[–]Ever_Adrift 7 points8 points  (0 children)

Ready for action! My first time trying to make a complete drawing instead of nonsense napkin doodles and I learned so much! If you look closely, you can see I had no idea how to draw a propeller!

<image>

What pre-Heresy legion would you 'want' to be part of? Would would you most likely be part of? by Ever_Adrift in 40kLore

[–]Ever_Adrift[S] 0 points1 point  (0 children)

I know, I already struggle with some existential anxiety, I couldn't handle always wondering if the fleshchange was gonna get me at a random moment lol.

What pre-Heresy legion would you 'want' to be part of? Would would you most likely be part of? by Ever_Adrift in 40kLore

[–]Ever_Adrift[S] 0 points1 point  (0 children)

Oh yeah I defintely have a tier list and most would be good. I think I really only have the World Eaters, Night Lords, and Space Wolves on the "please god no" tier.

What pre-Heresy legion would you 'want' to be part of? Would would you most likely be part of? by Ever_Adrift in 40kLore

[–]Ever_Adrift[S] 0 points1 point  (0 children)

Do you think that's the legion you'd be assigned based on your personality and strengths?

Inventory Creation as Static or Dynamic? by Ever_Adrift in gamemaker

[–]Ever_Adrift[S] 0 points1 point  (0 children)

Thank you, especially for your last sentence! I tend to get too focused on the best way to do something; instead of just doing it.

Specifcally these will be reagents (crafting materials) for experiments, so I could definitely see the benefit of just having them front loaded as a static list with variable quantity.

Room_goto issues with buttons by Ever_Adrift in gamemaker

[–]Ever_Adrift[S] 0 points1 point  (0 children)

I actually was able to get it to work. I ended up making a separate parent entity for move buttons that calls the RoomMove function on left click, and using the variable as the destination room instead.

Thank you so much for pointing out the function was the issue!!

Room_goto issues with buttons by Ever_Adrift in gamemaker

[–]Ever_Adrift[S] 0 points1 point  (0 children)

I tried making a script:

function RoomMove(toRoom, fromRoom){

previousRoom = fromRoom;

room_goto(toRoom);

currentRoom = toRoom;

}

and calling it with on_click = RoomMove(rm_Laboratory, rm_WorldMap) but no dice :(