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

Im loving the new changes. The interaction framework for me I prefer the last one, thats my personal taste. 

Some bugs that I have encountered on the first minutes that o played. Talking to amaïr crashes a little bit. And knocking at the door of the guards two times in a row got me stuck in a loop. But can be my cellphone. Gods know that I need a new one. 

[Edit] found another one. I can invite Rohan and Anthony to my sanctuary without cure them with their mushrooms like nothing ever happened

[Edit] another one. When you let the rats corrupt Cyril, they comeback to the beginning asking to exchange Cyril for another person or a tranquilizer for Cyril

(1 edit) (+1)

Hiya!  Thank you ! Concerning the new interactions framework, there's a lot more going on under the visuals that allows me to create new interact-able elements in a scene quickly but also to give me more freedom in terms of what can be clicked. The problem with the previous system was that it wasn't really a system but rather a jump to a bunch of choices I had to type out every time... The issue with choices within Ren'Py is that they cannot be automated because they do not operate under python. Instead of typing every time:

menu:
    "Inspect" if SuggestedActions:
        $CurrentAction="Inspect"
    "Touch" if SuggestedActions:
        $CurrentAction="Touch"
    ...

for each and every single case and action, I can now simply add a list (which can also unpack lists) in the button :

[5SensesList, "Use...",]

Then a "for in" loop makes buttons for each of these elements in the contextual menu and returns the $CurrentAction. I also added the ability to "drag and drop" (or rather the picture of the item follows your mouse because drag and drop between screens is difficult for me to achieve in Ren'Py) items from the inventory to the scene, which I think is more intuitive.

I can surely improve the contextual menu visually and I'm curious to know what you liked more in the previous method.

Thank you for the report!  I could fix all of those issues.