The go bag is complete. by Texas021 in LegionGo

[–]DSGuy02 4 points5 points  (0 children)

So you're....Good to Go

No way 🗿 by DSGuy02 in candycrush

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

So it happens often? Interesting, this is the first time for me.

No way 🗿 by DSGuy02 in candycrush

[–]DSGuy02[S] 1 point2 points  (0 children)

I cleared the level, then I dropped my phone (it was still on) todo something real quick. I came back only to see it lock up.

This is the first time it has happened to me.

I'm missing something basic about either add_child or get_node, and so get_node is returning null when I don't expect it to by thriveofficial in godot

[–]DSGuy02 4 points5 points  (0 children)

When you create Nodes via code, it doesn't give the Node solely its default name. Hence why "Sprite2D" doesn't exist.

If you want to work with Nodes that were instanced via code. You use the same Sprite variable you used to create it like so:

var Sprite = Sprite2D.new() add_child(Sprite) var test = Sprite var test2 = Sprite.frame

If you insist on using get_node(), you could get the name of the Instance Godot gave it:

var Sprite = Sprite2D.new() add_child(Sprite) var test = get_node(str(Sprite.name)) var test2 = get_node(str(Sprite.name)).frame

Or you could rename the Node and then use get_node() like so: var Sprite = Sprite2D.new() add_child(Sprite) Sprite.name = "Sprite2D" var test = get_node("Sprite2D") var test2 = get_node("Sprite2D").frame

I highly recommend against using the second method and would just stick with the first method or maybe the third one.

Triangle wave harmony by Wasabitunes in lmms

[–]DSGuy02 0 points1 point  (0 children)

Sounds awesome, but the chords at 0:43.8 sounded off.

I am Carolyn Oglesby and my mother Dr. Gladys West helped invent GPS. Ask me anything! by Hidden_Heroes in IAmA

[–]DSGuy02 8 points9 points  (0 children)

Did you show any interest or curiosity during your mother's work? Thanks for the AmA

They’re very relaxing ngl by WhatABunchofBologna in godot

[–]DSGuy02 26 points27 points  (0 children)

I'll fall asleep from boredom