LackOfContent

Results 6 comments of LackOfContent

+1 for this for an OBS Studio version of OBSRemote. The ability to manipulate the position of source elements via code would be a boon for the amount of effects...

Just as a follow up, i ran the same code on my Raspberry Pi 4B, and i received a different error. Still a connection error to 192.168.1.2, but this time...

After doing what I should have done and looked at the source code, i found 'removeListener'. I forgot that Node's 'Events' module uses removeListener and not removeEventListener. Although, could the...

Installed node-minecraft-protocol-forge and am attempting to use the auto-versioning setup since I dont have a complete JSON list of all the mods. I get the following Stack Trace... ``` "TypeError:...

actually, i found the issue. ['pc'] and [minecraftVersion] have to be swapped, so... ``` JS var versionInfo = minecraft_data.versionsByMinecraftVersion["pc"][minecraftVersion]; ``` Instead of... ``` JS var versionInfo = minecraft_data.versionsByMinecraftVersion[minecraftVersion]["pc"]; ``` The...

digging around the OBS code, it looks like the Source BG Color options are part of... [UI/forms/ColorSelect.ui](https://github.com/obsproject/obs-studio/blob/dde4d57d726ed6d9e244ffbac093d8ef54e29f44/UI/forms/ColorSelect.ui) and... [UI/source-tree.cpp](https://github.com/obsproject/obs-studio/blob/2bb780468c448da1d2ff6d33f7fdbc7badcd96ce/UI/source-tree.cpp) however, im mostly a javascript/nodejs guy, so i could be wrong...