Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hey there! Thanks for this tool, but I was wondering how to apply shaders to this tool. I tried applying it under line 185 as suggested in the comments, but I get a "ATLTransform object is not iterable".

if is_talking: 
    trans.matrixcolor = ...
    ....
    trans.shader = outline() # <- this is defined as a transform

Implementing the shader by hand also didn't work...

if is_talking:
    trans.matrixcolor = ...
    ...
    trans.shader = "remix.smoothstep_outline" # there is no outline

Never mind! It turns out it was an issue with the shader I was using. My bad.