kaa
kaa copied to clipboard
KAA - Pythonic game engine for humans.
Usage demo: https://gist.github.com/maniek2332/6faa4559a5a6a0457cb568afe4358279
Kaaengine build v. 0.11+75.gbc2555f Add Text node and on keyboard text event we try to update text node's text. When we do that, engine crashes with ``` Traceback (most recent...
1. Create a text node with some text, add it to scene. 2. Set node.text = "" # set to empty string Expected: text disappears Actual: nothing happens
Steps to replicate: 1) Have a view that renders stuff only in specific area e.g. 100x100 box in the middle of the screen 2) Add some nodes to that view...
Try to add BodyNode directly under scene root node. The whle game crashes without any message whatsoever. Please add some check and human-readable message.
This is super big topic. Currently kaa's tree-like node structure creates an illusion that any given node in the structure can interact physically. However it is not possible, a Hitbox...