Ok, not new to coding, new to Python, the idea is I’m wanting to make a simple game that combines a few even simpler elements that these two engines can do easily. I’m not sure on which community forum this should go so I’ll probably duel post this. Basically, I want to create a state machine that will switch between the two engines in a single program, or at least set one to the foreground and set one to the background, and then be able to to send information between the two, simple number values, walked up to and talked to character in Panda3D, which will generate a state code 2314 or something, that’s then sent to the state machine which then understand this to correlate with a specific scene to play out in Ren’Py, the state will then change to having Ren’py being displayed, then the scen’ll play out, and upon its resolution another State code is returned, and the state machine will send that to Panda3D to make any changes to the game world or whatever (It’d be nice if the background darkened a bit and the character art where just overlaid on top, but one step at a time and that’ll probably be the Ren’py guys realm of expertise) The real question is simply having the two engines running in a single program, as I don’t know how to even start going about having them run concurrently. I imagine might be something simple I’m just blanking on. Also, Yeah Unity’s cool and all, been using it for years, but I wan’t to work on my Python.
- Panda3D action committed generating state code
- State code received by state machine and understood to coralate with a scene in Ren’Py
- State machine will then send a code to Ren’Py to begin playing said scene.
- Upon scenes resolution a Ren’Py will generate a new state code, say unique choices where made, the code would coralate to the decisions made.
- Sent to state machine, which then understands that, then sent to Panda3D
- Say a char dies in the Ren’Py scene, unique code of that event received by Panda3D, there body falls over in Panda