├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── icons ├── raycast-network-example.png └── raycast-scene-example.png ├── modules ├── FindMaya.cmake └── LICENSE ├── plug-ins └── .gitinclude ├── raycast.mel ├── raycast.mod ├── scripts └── AEraycastTemplate.mel └── src ├── CMakeLists.txt ├── main.cpp ├── raycastNode.cpp └── raycastNode.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/README.md -------------------------------------------------------------------------------- /icons/raycast-network-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/icons/raycast-network-example.png -------------------------------------------------------------------------------- /icons/raycast-scene-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/icons/raycast-scene-example.png -------------------------------------------------------------------------------- /modules/FindMaya.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/modules/FindMaya.cmake -------------------------------------------------------------------------------- /modules/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/modules/LICENSE -------------------------------------------------------------------------------- /plug-ins/.gitinclude: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raycast.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/raycast.mel -------------------------------------------------------------------------------- /raycast.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/raycast.mod -------------------------------------------------------------------------------- /scripts/AEraycastTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/scripts/AEraycastTemplate.mel -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/raycastNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/src/raycastNode.cpp -------------------------------------------------------------------------------- /src/raycastNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-raycast/HEAD/src/raycastNode.h --------------------------------------------------------------------------------