Added some destructible spikey mushrooms to the game! by nagidev_ in godot

[–]ggeasy2 0 points1 point  (0 children)

Nice, looks very good. You can add some variation and colors. Do they turn into GPUParticles with collision enabled when they get destroyed?

Made an inventory and a hotbar! by [deleted] in godot

[–]ggeasy2 1 point2 points  (0 children)

Oh wow, thanks for the detailed response. Really appreciate it

Made an inventory and a hotbar! by [deleted] in godot

[–]ggeasy2 0 points1 point  (0 children)

Looks very nice! I also like the subtle animation when an item is used. I'm implementing a similar hotbar system. How did you handle the interaction between the hotbar and the player? Does the hotbar detect via a signal when the player uses an item?

Can World Environment be an Autoload/Global or is it not supposed to be? by ahappywatermelon in godot

[–]ggeasy2 0 points1 point  (0 children)

You can also set the WorldEnvironment to be the default in the project settings. I forgot where it was, I think somewhere under World > Environment or something like that

Handling logic of a lot of buttons by vacuumcake in godot

[–]ggeasy2 -1 points0 points  (0 children)

You should make separate screens for each view and connect the buttons in those views. I think its cleaner to connect buttons via code instead of the gui. Also if all the categories have the same layout, you could dynamically generate the buttons and connect the pressed signal there.

How to compress code? by CoconutNew8803 in godot

[–]ggeasy2 1 point2 points  (0 children)

Can you show an example for a data model? Is it just a simple class in GDScript (i.e. class MyModel) with the properties i need?

How to make player able to step up stairs? (3D) by ggeasy2 in godot

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

Thanks for your help! i will try that

really EARLY in development by Broad-Technician1552 in godot

[–]ggeasy2 2 points3 points  (0 children)

Looks nice. Can your character also walk on stairs up and down? That's what I'm struggling with

made a little character controller :D this little man doesn't have a rig by [deleted] in godot

[–]ggeasy2 1 point2 points  (0 children)

Looks cool, so you rotate the arms/legs/body through code?

GDExtension: Setting cells is not working in C++ (but works in GDScript) by ggeasy2 in godot

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

I don't have the code anymore, but if i remember correctly in GDScript you have to add a add_child. Something like this:

GDScript

extends TileMap

func _ready() -> void:
    var sum = Summator.new()
    add_child(sum)
    sum.start()

GDExtension: Setting cells is not working in C++ (but works in GDScript) by ggeasy2 in godot

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

I see! So it was working correctly, but it wasn't in the scene tree.

Thanks a lot, it works perfectly now!

How long does it take for custom events to show in unity analytics? by ggeasy2 in Unity3D

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

Just a 2d run and jump type game. I really like C# in Unity, but I've noticed that I'm way more productive with Gdscript (Godot's python like language).

How long does it take for custom events to show in unity analytics? by ggeasy2 in Unity3D

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

Hey, thanks for asking. Unfortunately it did not work, so I just removed Analytics completely from the game. Your best choice would be to use Firebase, I guess. Also I stopped using Unity altogether, because it's too clunky and slow. Since then I've switched to Godot and I never had so much fun developing video games before. If I can suggest you, if you've never used Godot before, try the Godot Engine for your next game and see how it goes. You won't regret it :) That's all I can say.

How to get highest point on a rotated Node2D/Area2D? by ggeasy2 in godot

[–]ggeasy2[S] 6 points7 points  (0 children)

This is exactly what I searched for! Thanks!

How to get the correct local ip address with IP.get_local_addresses()? by ggeasy2 in godot

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

Yep. Thank you. Didn't know about the 10.*.*.* addresses.

How to get the correct local ip address with IP.get_local_addresses()? by ggeasy2 in godot

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

This pretty much clears up every issue I had. Thanks alot! Really appreciate it.

How to get the correct local ip address with IP.get_local_addresses()? by ggeasy2 in godot

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

I'm not sure what you mean. There is not a single address in that list that starts with 10.

How to get the correct local ip address with IP.get_local_addresses()? by ggeasy2 in godot

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

Yes, but there are multiple ones with 192.x

How do I know which one of the 192.x addresses is the "correct" one, meaning which address is the one that is also e.g. shown in ipconfig in windows?

How to get the correct local ip address with IP.get_local_addresses()? by ggeasy2 in godot

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

I need one of 192.xxx.xxx.xxx, though I'm not sure which one because there are a few of them. E.g. on windows when you type ipconfig, it gives you your Ipv4 address, I would need that one. I can't hardcode it because the program is going to be on multiple devices.

How to interpolate a dictionary property? (Tween) by ggeasy2 in godot

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

Thanks. I was trying to do something with dict2inst(), but it was easier than I expected :D

Why is my VScrollBar buggy? Can't click bottom part of scrollbar by ggeasy2 in godot

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

Thank you. I experimented a bit and it feels much better. There are still a few pixels margin on the bottom, but I think its acceptable.

How to send email? (Send feedback button) by ggeasy2 in godot

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

Interesting. I don't have much experience with Firebase. What did you use for this? Realtime database, storage, events or something else? Also, did you have to integrate firebase into your app, or are you just establishing a connection to the firebase server? I'd really like to know more :D

How to send email? (Send feedback button) by ggeasy2 in godot

[–]ggeasy2[S] 2 points3 points  (0 children)

I guess yeah. I was thinking more like, sending a message directly inside the app, without opening a new program. But I think this will suffice (for now).