Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Thank you, it will take some time for me to try to recreate the problems, thank you for looking into it

Hey never heard back from you on this.  Also, I got an update notification and just re-downloaded and followed the new tutorial.  Basically, getting the same result.  On the various body parts in the sample scene, I can see the sprites changing on the sprite renderer, it appears to be using the animations, no errors or warnings.  But again, the character is invisible.  I assume its using the sprites for your pre-sliced empty spritesheets rather than actually utilizing the real Mana Seed textures I configured it to use.

(1 edit)

Okay, I was able to trace down the error in your code.  So, just fyi when I first imported this latest version there were alot of = new() initializers for dictionaries/etc that had to be corrected to their proper formats (i.e. = new Dictionary<string, string>().

As for the source of the problem, it is in Player.cs Line 255 the FillPlayerTexture method.  In your tutorial you state the path to use for the sprites should contain an ending slash, however, in the code you add that slash for the user already.  So if they follow the picture in your guide, the path will wind up with a double slash (//) and not find the texture.  And since there is no error handling for that scenario (no else statement in the method), the user is left with no rhyme or reason as to what's happening.  So the resolution was simple, removing the ending slash in the sprite path and the textures came right up.  Haven't tested it beyond that but anyways, hope this helps.  Damn good asset though, very good job!

Oh wow, thx, will make a bugfix for this

2.0a fixed the bugs you mentioned