Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

[Godot] [no payment] [programmer] I am looking for a programmer to help me in my game

A topic by MasTho0128 created Apr 01, 2020 Views: 321 Replies: 5
Viewing posts 1 to 2
(1 edit)

Hello, I am looking for a person who can help me in the Godot engine to program my game, since I have many errors and problems when trying the game and programming it, I already have designed the sprites and some of the music applied to the game and I also create them .
The game already has some advancement as the characters created an enemy and a tile set resource.
I speak Spanish but through the translator we can communicate, I also know enough English to have a little conversation.
If interested, post.
Thank you!!!
Att: Thomas \ MasTho0128

(+1)

hey Thomas the Godot forum is very good for helping people with code issues errors. 

https://godotforums.org/

But I'd be happy to look at your project and help. I have some knowledge and use godot.

What are your errors?

Hello, what is happening is that I am trying to get my character to transform himself, that is, to change his appearance, so far I have managed to change his appearance but as soon as he moves, the program is blocked

Hi

Are you changing the appearance with the animation player? You need to be, changing appearance is like changing the sprite it shouldn't block the program.

It would be better if you post your code on the forum and also check any warnings that appear below when it's blocked.

it may help you to look at this and follow, the series is great and will get you back on track.

https://youtu.be/wX145eoLFSM

What happens is that the doll wants it to transform when it touches an object, that I already managed to do. but when it transforms and the player moves the program gets stuck. I have created a kinematicbody2d scene with the new skin and it is the same character and when the power is seized one is erased and the other scene appears and I move there is attached the code of when the other scene is transformed duplicates the same of the skinless player.

func _on_alas_body_entered(body):
if(body.is_in_group("jugador")):
var nuevo_poder = get_tree().get_nodes_in_group("menu_1")[0].poder_alas.instance()
get_tree().get_nodes_in_group("menu_1")[0].add_child(nuevo_poder)
nuevo_poder.global_position = body.global_position
body.queue_free()
queue_free()

(+1)

Hi Thomas

As I said it's hard to answer without all the code, but...

I think the body.queue_free and queue free are the issue.

You are removing a body during a collision with body.queue_free and removing the whole object with queue_free.

I would remove queue_free from your code to start and see if this helps. Using queue_free removes the object and the code, so I'm assuming you don't want to do this.

Hope this helps, any further help needs to be asked in the forum.

All the best.