Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+2)

Thanks! I really appreciate the feedback.

Not sure how simply you want me to explain it. But if all you're looking to do is to use the basic ones I provided, you use them like any other renpy text tag. Just drop the kinetic_text_tags.rpy into your project's 'game' folder with your other .rpy files. And to use a tag like the bounce tag in your script, just type "{bt}" where you want it to start and "{/bt}" where you want it to end. So like "Here's some {bt}wavy text{/bt}". And some of them allow for modifiers as well. Such as doing "{bt=30}" will increase the amplitude of the waves. 

I maybe should've documentated the parameters I set better, but for the bounce, rotate and scare tags, it's mostly just affects how extreme the effect is and is just an integer. The fade in takes how many characters into the line it is and a float representing how long the fade in should last for each character, the parameters separated by a '-'.  Swap takes two strings of equal length separated by an '@' as well as how quickly to swap between them. And the gradient ones... you'll probably want to study up on hex color codes before using that one. xP

Going over how they work might be more advanced. But I provided a lot of comments in the kinetic_text_tags.rpy file to help explain what's going on. And if you have any specific questions about how it works or how to change something to your liking, feel free to ask!

Thank you for responding!

Hi, again.
I just did what you told me about dragging kinetic_text_tags.rpy into my folder called game, well, I tried to test if it worked, but Renpy identifies it as something that doesn't exist, I think I didn't identify it because I did something wrong, but I don't know what exactly I did wrong.

What should I do? Here is the error:
I'm sorry, but an uncaught exception occurred.
While processing text tag {bt=30} in u'{bt=30} {bt}Pfff-{/bt}'..:
  File "game/script.rpy", line 135, in script.
    a"{bt=30} {bt}Pfff-{/bt}"
Exception: Unknown text tag u'bt=30'.

Oh, I think it's because you forgot to end the first tag before starting a new one. You have a "{bt=30}text {bt=30}" When you should do a "{bt=30}text{/bt}" The `{/ bt}` Will end the previous instance of the tag and doesn't require the =30 or whatever to signal it. But with all my text tags, you must include the {/} at some point.

Least that's what I think it happening. If I saw your script I'd probably have a better idea on what's going wrong.