-
Notifications
You must be signed in to change notification settings - Fork 19
OSC nodes #114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
OSC nodes #114
Conversation
Hi! Is there any updates on this OSC implementation? I find this very helpful instead of writing OSC integration with python script |
I had no more replies from the official devs, so I turned it into an addon for UPBGE 0.3.6. It basically added/changed some files in the It does not work in the newer version though, because the logicnodes code changed quite a bit and the addon was using the old version. The code I wrote in this PR followed the new structure, so it could be used to update the OSC nodes addon. The uplogic part should work fine in both versions. If you're interested in messing with the code, or updating it yourself, I can send the files to you! Maybe just a bit of replacing here and there could make it work, but I've had no time to develop it more. |
Thanks for your reply! I found your upbge_osc_nodes repository that needs to replace/add code to the UPBGE directory and I'm using the codes under 4.5 folder with UPBGE 0.44. so far it's not working but I will keep trying. it would be super helpful if you can send me a sample UPBGE file that shows how the nodes are setup. I'm a bit confused if it's my node setup is incorrect or it's the code that has some problem. I only want to use receive/send OSC messages, and other functionality like OSC sequencer is not required |
Oh that repo is really outdated, I didn't have the time to keep it up so I have no idea what is going on there lol. I can send you the files through email or discord, my username is |
Hi! I sent a friend request to you, and my discord id is |
Pull request - OSC nodes
Summary
Added three new OSC nodes: OSC Setup Server, OSC Receive, OSC Send.
List of changes
editor/nodes/actions
->oscsetupserver.py
,oscreceive.py
,oscsend.py
editor/nodes/__init__.py
-> Import the new nodesui/node_menu.py
-> Added the new nodes to the Network tabChecks
Further comments
ULOSCSetupServer
,ULOSCReceive
,ULOSCSend
TO-DO