├── .gitignore ├── LICENSE ├── README.md ├── docs ├── flockmodifier.jpg └── index.html ├── example ├── FlockModifier_Example.c4d ├── FlockModifier_Example2.c4d └── FlockModifier_Example3.c4d ├── project └── projectdefinition.txt ├── res ├── Oflock.tif ├── Oflockrepeller.tif ├── Oflocktarget.tif ├── c4d_symbols.h ├── description │ ├── Oflock.res │ ├── Oflockrepeller.res │ ├── Oflocktarget.res │ ├── oflock.h │ ├── oflockrepeller.h │ └── oflocktarget.h ├── strings_de-DE │ ├── c4d_strings.str │ └── description │ │ ├── Oflock.str │ │ ├── Oflockrepeller.str │ │ └── Oflocktarget.str └── strings_en-US │ ├── c4d_strings.str │ └── description │ ├── Oflock.str │ ├── Oflockrepeller.str │ └── Oflocktarget.str └── source ├── helpers.h ├── main.cpp ├── main.h └── object ├── oflockmodifier.cpp ├── oflockrepeller.cpp └── oflocktarget.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/README.md -------------------------------------------------------------------------------- /docs/flockmodifier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/docs/flockmodifier.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/docs/index.html -------------------------------------------------------------------------------- /example/FlockModifier_Example.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/example/FlockModifier_Example.c4d -------------------------------------------------------------------------------- /example/FlockModifier_Example2.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/example/FlockModifier_Example2.c4d -------------------------------------------------------------------------------- /example/FlockModifier_Example3.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/example/FlockModifier_Example3.c4d -------------------------------------------------------------------------------- /project/projectdefinition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/project/projectdefinition.txt -------------------------------------------------------------------------------- /res/Oflock.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/Oflock.tif -------------------------------------------------------------------------------- /res/Oflockrepeller.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/Oflockrepeller.tif -------------------------------------------------------------------------------- /res/Oflocktarget.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/Oflocktarget.tif -------------------------------------------------------------------------------- /res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/c4d_symbols.h -------------------------------------------------------------------------------- /res/description/Oflock.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/description/Oflock.res -------------------------------------------------------------------------------- /res/description/Oflockrepeller.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/description/Oflockrepeller.res -------------------------------------------------------------------------------- /res/description/Oflocktarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/description/Oflocktarget.res -------------------------------------------------------------------------------- /res/description/oflock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/description/oflock.h -------------------------------------------------------------------------------- /res/description/oflockrepeller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/description/oflockrepeller.h -------------------------------------------------------------------------------- /res/description/oflocktarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/description/oflocktarget.h -------------------------------------------------------------------------------- /res/strings_de-DE/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_de-DE/c4d_strings.str -------------------------------------------------------------------------------- /res/strings_de-DE/description/Oflock.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_de-DE/description/Oflock.str -------------------------------------------------------------------------------- /res/strings_de-DE/description/Oflockrepeller.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_de-DE/description/Oflockrepeller.str -------------------------------------------------------------------------------- /res/strings_de-DE/description/Oflocktarget.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_de-DE/description/Oflocktarget.str -------------------------------------------------------------------------------- /res/strings_en-US/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_en-US/c4d_strings.str -------------------------------------------------------------------------------- /res/strings_en-US/description/Oflock.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_en-US/description/Oflock.str -------------------------------------------------------------------------------- /res/strings_en-US/description/Oflockrepeller.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_en-US/description/Oflockrepeller.str -------------------------------------------------------------------------------- /res/strings_en-US/description/Oflocktarget.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/res/strings_en-US/description/Oflocktarget.str -------------------------------------------------------------------------------- /source/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/source/helpers.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/source/main.h -------------------------------------------------------------------------------- /source/object/oflockmodifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/source/object/oflockmodifier.cpp -------------------------------------------------------------------------------- /source/object/oflockrepeller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/source/object/oflockrepeller.cpp -------------------------------------------------------------------------------- /source/object/oflocktarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwilleke80/FlockModifier/HEAD/source/object/oflocktarget.cpp --------------------------------------------------------------------------------