This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

I have a huge code for generating sprites, and their number annoys me a little ...

Can I create a universal link where the filename is equal to the selected variable

Example:
Old code

sprite1.texture = load ("res: // Assets / Magic RPG / Sword / Effects / 1.png")

Idea

var link = 1
sprite1.texture = load ("res: // Assets / Magic RPG / Sword / Effects / link.png")
in Engine by (71 points)

1 Answer

0 votes
Best answer

Well, it is easy.

Firstly honestly i don't got your problem, but probably you're wanting like this:

var link = 1
sprite1.texture = load ("res: // Assets / Magic RPG / Sword / Effects /"sprite" + str(link) + ".png")

But you should change name of your sprites, example:

1.sprite1.png
2.sprite2.png

etc etc..

i hope this will help you.

by (72 points)
edited by

I have already tried this option, but now I will try to change the names of the sprites

Yes, also I am using this way. It is easy for me, you should change :)

This worked with new sprite names.
Thank you so much!

Your welcome

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.