Is there some library to use shared memory in Python over Windows? I see Linux librarys, but Windows NO
windows doesn’t have that capability…
the shared memory thing in linux can share memory between applications which is likely more than you need.
what exactly are you trying to do?
I’m trying to shared data between the scripts of a blender project. But I think that I’ll use the Game Engine properties. The problem is that I want to share a two-dimensional array, perhaps I can do a String-Array translation, because there isn’t two-dimensional array in Game Engine properties
what people have been doing in the game engine is to append their shared properties to the GameLogic module, then every script can see them.
But, Is it possible to append a bidimensional array in the GameLogic? In the Game Engine interface, there isn’t array type. Can you show me an example code? Thanks
GameLogic.blah = [ [ 0, 1, 2 ], [ 0, 1, 2 ], [ 0, 1, 2 ] ]
Simply, thank you very much