├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── UnrealLiveLinkCInterface ├── UnrealLiveLinkCInterface.Build.cs ├── UnrealLiveLinkCInterface.Target.cs ├── UnrealLiveLinkCInterface.cpp └── UnrealLiveLinkCInterface.h ├── examples ├── CMakeLIsts.txt └── CirclingTransform.c ├── images └── abp_manny.png ├── include ├── UnrealLiveLinkCInterfaceAPI.h └── UnrealLiveLinkCInterfaceTypes.h ├── pyUnrealLiveLink ├── CMakeLIsts.txt ├── examples │ ├── circling_transform.py │ ├── manny_run.json │ ├── manny_run.py │ └── wave_properties.py └── module.cpp └── src ├── CMakeLists.txt └── UnrealLiveLinkCInterfaceAPI.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/README.md -------------------------------------------------------------------------------- /UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.Build.cs -------------------------------------------------------------------------------- /UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.Target.cs -------------------------------------------------------------------------------- /UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.cpp -------------------------------------------------------------------------------- /UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/UnrealLiveLinkCInterface/UnrealLiveLinkCInterface.h -------------------------------------------------------------------------------- /examples/CMakeLIsts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/examples/CMakeLIsts.txt -------------------------------------------------------------------------------- /examples/CirclingTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/examples/CirclingTransform.c -------------------------------------------------------------------------------- /images/abp_manny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/images/abp_manny.png -------------------------------------------------------------------------------- /include/UnrealLiveLinkCInterfaceAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/include/UnrealLiveLinkCInterfaceAPI.h -------------------------------------------------------------------------------- /include/UnrealLiveLinkCInterfaceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/include/UnrealLiveLinkCInterfaceTypes.h -------------------------------------------------------------------------------- /pyUnrealLiveLink/CMakeLIsts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/pyUnrealLiveLink/CMakeLIsts.txt -------------------------------------------------------------------------------- /pyUnrealLiveLink/examples/circling_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/pyUnrealLiveLink/examples/circling_transform.py -------------------------------------------------------------------------------- /pyUnrealLiveLink/examples/manny_run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/pyUnrealLiveLink/examples/manny_run.json -------------------------------------------------------------------------------- /pyUnrealLiveLink/examples/manny_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/pyUnrealLiveLink/examples/manny_run.py -------------------------------------------------------------------------------- /pyUnrealLiveLink/examples/wave_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/pyUnrealLiveLink/examples/wave_properties.py -------------------------------------------------------------------------------- /pyUnrealLiveLink/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/pyUnrealLiveLink/module.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/UnrealLiveLinkCInterfaceAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickPalmer/UnrealLiveLinkCInterface/HEAD/src/UnrealLiveLinkCInterfaceAPI.c --------------------------------------------------------------------------------