├── .gitignore ├── LICENSE ├── README.md ├── actionSyncTeams.blend ├── armaturesActionsAndCollisionAvoidance.blend ├── cloth.blend ├── collisionPrediction.blend ├── dynamicFormationsAndCollisionAvoidance.blend ├── flocking.blend ├── formations.blend ├── generationNodesExample.blend ├── generationPathMeshIslands.blend ├── groundPlacementAndAnimation.blend ├── pathFollowing.blend ├── pathFollowingOnGround.blend ├── render ├── actionSyncTeams.avi ├── collisionPredictionAndAvoidance.mp4 ├── dynamicFormationsAndCollisionAvoidance.mp4 ├── flocking.mp4 ├── generationNodesExample.mp4 ├── geo-parent-cloth.mp4 ├── pathFollowing2.mp4 └── pathFollowingOnGround.mp4 ├── stadium.blend ├── trafficExample.blend ├── vertexColorGeneration.blend └── vertexColorLogo.blend /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.blend1 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/README.md -------------------------------------------------------------------------------- /actionSyncTeams.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/actionSyncTeams.blend -------------------------------------------------------------------------------- /armaturesActionsAndCollisionAvoidance.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/armaturesActionsAndCollisionAvoidance.blend -------------------------------------------------------------------------------- /cloth.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/cloth.blend -------------------------------------------------------------------------------- /collisionPrediction.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/collisionPrediction.blend -------------------------------------------------------------------------------- /dynamicFormationsAndCollisionAvoidance.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/dynamicFormationsAndCollisionAvoidance.blend -------------------------------------------------------------------------------- /flocking.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/flocking.blend -------------------------------------------------------------------------------- /formations.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/formations.blend -------------------------------------------------------------------------------- /generationNodesExample.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/generationNodesExample.blend -------------------------------------------------------------------------------- /generationPathMeshIslands.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/generationPathMeshIslands.blend -------------------------------------------------------------------------------- /groundPlacementAndAnimation.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/groundPlacementAndAnimation.blend -------------------------------------------------------------------------------- /pathFollowing.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/pathFollowing.blend -------------------------------------------------------------------------------- /pathFollowingOnGround.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/pathFollowingOnGround.blend -------------------------------------------------------------------------------- /render/actionSyncTeams.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/actionSyncTeams.avi -------------------------------------------------------------------------------- /render/collisionPredictionAndAvoidance.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/collisionPredictionAndAvoidance.mp4 -------------------------------------------------------------------------------- /render/dynamicFormationsAndCollisionAvoidance.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/dynamicFormationsAndCollisionAvoidance.mp4 -------------------------------------------------------------------------------- /render/flocking.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/flocking.mp4 -------------------------------------------------------------------------------- /render/generationNodesExample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/generationNodesExample.mp4 -------------------------------------------------------------------------------- /render/geo-parent-cloth.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/geo-parent-cloth.mp4 -------------------------------------------------------------------------------- /render/pathFollowing2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/pathFollowing2.mp4 -------------------------------------------------------------------------------- /render/pathFollowingOnGround.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/render/pathFollowingOnGround.mp4 -------------------------------------------------------------------------------- /stadium.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/stadium.blend -------------------------------------------------------------------------------- /trafficExample.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/trafficExample.blend -------------------------------------------------------------------------------- /vertexColorGeneration.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/vertexColorGeneration.blend -------------------------------------------------------------------------------- /vertexColorLogo.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnroper100/CrowdMaster-Examples/HEAD/vertexColorLogo.blend --------------------------------------------------------------------------------