├── .gitignore ├── Directory.Build.props ├── EB_GUIDE_GTF ├── CMakeLists.txt ├── concepts │ ├── BasicExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BasicExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── 8b9351c1-3bb1-4a01-b2c6-a6872922bcc6.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 0bce8796-116b-49ce-9e25-42f7b06fe6cc.gdata │ │ │ ├── packages │ │ │ │ └── c4b6a050-5732-4f21-be5e-a366b8d98a23.gdata │ │ │ ├── resources │ │ │ │ ├── BasicExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 18aed481-7ccb-4a3a-ab9b-33e679f668f8 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 360dd9ae-f727-444a-aff2-ed700e7ff723.gdata │ │ │ │ │ │ └── f78c357b-2769-4bd3-93b1-8e316ec2ea21.gdata │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── BasicPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── BufferSwapHooksExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BufferSwapHooksExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 213637f5-75ab-43fa-b66e-485da637e2eb.gdata │ │ │ │ ├── 442ffd93-cc12-45b7-8c11-d4750da84eb5.gdata │ │ │ │ └── d3a8246a-fc27-4845-81e5-95c9c0014261.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 79945a47-cd54-439d-a223-acb499e81d5a.gdata │ │ │ ├── packages │ │ │ │ └── dc60963f-723f-4feb-87b5-05fa4f9059a2.gdata │ │ │ ├── resources │ │ │ │ ├── BufferSwapHooksExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 53663cc9-1e71-4469-a863-91a994084079 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── a7860f6e-3dce-43d8-80c0-ae6a4f02e4d0.gdata │ │ │ │ │ │ └── f62a33a0-f4dd-465e-94ae-34d10eb67fdd.gdata │ │ │ │ └── 87b22cf9-e9dd-4f42-9bfd-71c883cd1125 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 8c932b12-9c51-4a9a-bd31-be002527f433.gdata │ │ │ │ │ └── b57dd4a2-57c0-4a15-a3aa-398f1b0e70a3.gdata │ │ │ ├── templates │ │ │ │ ├── 740846e9-bc76-4da8-835d-586ad4dec9d5.gdata │ │ │ │ └── b787a2b7-20c5-4050-a39f-e8d67bd6fbef.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── BufferSwapHooks.cpp │ │ │ ├── BufferSwapHooks.h │ │ │ ├── BufferSwapHooksPlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ConfigurationImporterExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ConfigurationImporterExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── d4315087-1c5e-4094-a225-e341ec2b48ba.gdata │ │ │ ├── packages │ │ │ │ └── f5806e8e-e7bb-487b-8381-e3d42d00f920.gdata │ │ │ ├── resources │ │ │ │ ├── ConfigurationImporterExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── customConfiguration.json │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 20ca6f97-0b5c-4682-95c4-22d43e631111.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ConfigurationImporterPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CoreStageExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── CoreStageExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── a8daa817-3d30-47a8-8d1e-7d27def0d2e4.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── fc25b226-3f79-40e7-b9f3-50277c4a4111.gdata │ │ │ ├── packages │ │ │ │ └── 3ac13d10-e3fb-4b1b-95b9-05c6c9e04235.gdata │ │ │ ├── resources │ │ │ │ ├── CoreStageExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ └── c1609a54-2e4e-4f40-9c8b-ad83f3103656 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 1825c3a4-94b5-4639-981e-32dc89d3f1db.gdata │ │ │ │ │ └── 1b932166-c14f-4c90-a2e8-af5c9b91d535.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── EarlyStage.cpp │ │ │ ├── EarlyStage.h │ │ │ ├── EarlyStageProvider.cpp │ │ │ ├── EarlyStageProvider.h │ │ │ ├── LateStage.cpp │ │ │ ├── LateStage.h │ │ │ ├── LateStageProvider.cpp │ │ │ ├── LateStageProvider.h │ │ │ ├── PrepareStageImpl.cpp │ │ │ ├── PrepareStageImpl.h │ │ │ ├── StagePlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── DependencyResolverExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── DependencyResolverExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 21eaaa14-184e-46fe-8ed7-51d4797092d9.gdata │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── b32f7681-0032-4a23-8aea-fdde0b729556.gdata │ │ │ ├── packages │ │ │ │ └── b1cc00a0-4e1a-4ec4-a445-1e80c8a2aade.gdata │ │ │ ├── resources │ │ │ │ ├── DependencyResolverExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 3cc5639b-90ea-41ab-b02b-13caa1f067b4 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 02b8bced-a1f8-451c-a16f-fd6cc2d41e28.gdata │ │ │ │ │ │ └── 3fef4d80-1714-4449-894e-c9f9ab4ba72a.gdata │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── DependencyResolvingPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── TemperatureConverter.h │ │ │ ├── TemperatureConverterToFahrenheit.cpp │ │ │ ├── TemperatureConverterToFahrenheit.h │ │ │ ├── TemperatureConverterToKelvin.cpp │ │ │ ├── TemperatureConverterToKelvin.h │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ModelStageExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ModelStageExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ │ └── b138a406-cc15-4515-8b0a-909d5508b586.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── dfbeb8b1-3298-43d3-99da-37e37ebaba69.gdata │ │ │ ├── packages │ │ │ │ └── a8abe445-f7c8-4fbd-83db-b22663658493.gdata │ │ │ ├── resources │ │ │ │ ├── ModelStageExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ └── ea1c3dfc-66f4-4c39-80d3-21804443f65d │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 22a5e2cc-c44c-4d45-85b4-b0b10fa03e3a.gdata │ │ │ │ │ └── 851d964d-a82e-4c71-8ff6-0c8473ad5725.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── EarlyStage.cpp │ │ │ ├── EarlyStage.h │ │ │ ├── EarlyStageProvider.cpp │ │ │ ├── EarlyStageProvider.h │ │ │ ├── LateStage.cpp │ │ │ ├── LateStage.h │ │ │ ├── LateStageProvider.cpp │ │ │ ├── LateStageProvider.h │ │ │ ├── PreparedStageImpl.cpp │ │ │ ├── PreparedStageImpl.h │ │ │ ├── StagePlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── SettingsExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── SettingsExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ │ └── fe958205-d62b-4901-854c-b805bb29bd97.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 3d772d4b-0a60-42c7-90d7-3f616d6ab9c5.gdata │ │ │ ├── packages │ │ │ │ └── 609b137a-3146-4d7a-ae29-0ff1dfd0681c.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── SettingsExample.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ └── 9ddb2831-4d37-44de-b605-3bee18f10a52 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 48b3b188-a9d3-4a86-a7cc-6bd92ce7001d.gdata │ │ │ │ │ └── dac9d7a0-50d9-462c-8ac4-71ef8b097458.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── SettingsPlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ └── TraceOutputExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ ├── TraceOutputExample.ebguide │ │ ├── configuration │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ ├── 8af2afda-fcf3-48a1-8763-b0a2cc9c6ce8.gdata │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ ├── contexts.gdata │ │ ├── datapool.gdata │ │ ├── descriptors.json │ │ ├── eventgroups.gdata │ │ ├── events.gdata │ │ ├── languages.gdata │ │ ├── modelinterfaces │ │ │ └── userdefined │ │ │ │ └── 1cd28857-f2e2-4727-bb6a-fff229c429af.gdata │ │ ├── packages │ │ │ └── e4612a94-71de-4b44-bebb-df45726777be.gdata │ │ ├── resources │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ ├── TraceOutputExample.dll │ │ │ ├── fonts │ │ │ │ └── PT_Sans.ttf │ │ │ └── images │ │ │ │ └── EB.png │ │ ├── skins.gdata │ │ ├── statemachines │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── 81c4bd74-abf8-458a-ade2-8d9a0ba2aca1 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ ├── 103df030-cb12-4af7-96c1-1e9e648158e9.gdata │ │ │ │ └── ca7a53a4-a3db-40f3-9616-39e6fb1a8f80.gdata │ │ ├── templates │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ ├── CustomTraceOutput.cpp │ │ ├── CustomTraceOutput.h │ │ ├── CustomTraceOutputExport.cpp │ │ └── include │ │ └── export │ │ ├── aspects │ │ ├── languages.h │ │ └── skins.h │ │ ├── global │ │ ├── datapool │ │ │ └── items.h │ │ └── events │ │ │ └── all_events.h │ │ └── local │ │ ├── datapool │ │ └── items.h │ │ └── events │ │ ├── all_events.h │ │ └── group_Default.h ├── model_extensions │ ├── BezierCurveExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BezierCurveExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 6f3adbd0-3bae-4b12-953a-f64e6074cba2.gdata │ │ │ ├── packages │ │ │ │ └── 5effba37-8a1b-48be-917a-c73646acc546.gdata │ │ │ ├── resources │ │ │ │ ├── BezierCurveExample.dll │ │ │ │ ├── BezierCurveExampleDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── BezierCurve.h │ │ │ ├── BezierCurvePlugin.cpp │ │ │ ├── BezierFunction.h │ │ │ ├── Curve.h │ │ │ ├── DelayedFixedCurve.cpp │ │ │ ├── DelayedFixedCurve.h │ │ │ ├── Properties.cpp │ │ │ ├── Properties.h │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── BloomEffect │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BloomEffect.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 47e2f7f9-78f1-4509-8b4c-2b31ef27ceab.gdata │ │ │ ├── packages │ │ │ │ └── 4c24fc79-fb99-4c37-bb29-e2e767354814.gdata │ │ │ ├── resources │ │ │ │ ├── BloomEffect.dll │ │ │ │ ├── BloomEffectDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── BloomEffectPlugin.cpp │ │ │ ├── BloomEffectRenderer.cpp │ │ │ ├── BloomEffectRenderer.h │ │ │ ├── GLES3Shader.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CrepuscularEffect │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── CrepuscularEffect.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 3630a1e7-6e40-4132-aa25-5b2235e7c76e.gdata │ │ │ ├── packages │ │ │ │ └── 3fa890d0-aeec-4fc2-b3f2-efa90b9867a4.gdata │ │ │ ├── resources │ │ │ │ ├── CrepuscularEffect.dll │ │ │ │ ├── CrepuscularEffectDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── CrepuscularPlugin.cpp │ │ │ ├── CrepuscularRenderer.cpp │ │ │ ├── CrepuscularRenderer.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── OpenGLES3Shader.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CustomMaterial │ │ ├── model │ │ │ ├── CustomMaterial.ebguide │ │ │ ├── configuration │ │ │ │ ├── c8f797aa-a76c-458d-9998-dc81bc86248b.gdata │ │ │ │ └── ef10148c-3aa1-4f0e-8a06-c957d040c84b.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── ebpkg │ │ │ │ └── default.template.package │ │ │ │ │ └── 1.0.0-0 │ │ │ │ │ ├── [Content_Types].xml │ │ │ │ │ ├── _rels │ │ │ │ │ └── .rels │ │ │ │ │ ├── content │ │ │ │ │ └── ebguide6.12.0 │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── EB.png │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── model.json │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ │ │ ├── default.template.package.nuspec │ │ │ │ │ ├── metadata.json │ │ │ │ │ └── package │ │ │ │ │ └── services │ │ │ │ │ └── metadata │ │ │ │ │ └── core-properties │ │ │ │ │ └── ffda397b9abe4527a2ea2a58e6c2709b.psmdcp │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 0ea8e370-3566-4941-97de-4e87c1126407.gdata │ │ │ ├── namespaces │ │ │ │ └── 96c0af61-dbe3-4aa4-bb27-cefb573d6c94 │ │ │ │ │ ├── datapool.gdata │ │ │ │ │ ├── events.gdata │ │ │ │ │ ├── namespace.gdata │ │ │ │ │ └── templates │ │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ ├── packages │ │ │ │ └── 91205a42-5985-49c4-97c7-6965fcd27f5c.gdata │ │ │ ├── resources │ │ │ │ ├── 3D_arrow_anim_20210223_142836 │ │ │ │ │ ├── Cube.0010.ebmesh │ │ │ │ │ ├── Cube.0011.ebmesh │ │ │ │ │ ├── Cube.0020.ebmesh │ │ │ │ │ ├── Cube.0021.ebmesh │ │ │ │ │ ├── Cube0.ebmesh │ │ │ │ │ ├── Cube1.ebmesh │ │ │ │ │ ├── Sphere.0010.ebmesh │ │ │ │ │ └── Sphere.0020.ebmesh │ │ │ │ ├── 3D_arrow_sphere_only_20210224_162226 │ │ │ │ │ └── Sphere.0020.ebmesh │ │ │ │ ├── 3D_arrow_sphere_only_flipped_20210308_093017 │ │ │ │ │ └── Sphere.0020.ebmesh │ │ │ │ ├── 3D_arrow_with_uv_20210920_140114 │ │ │ │ │ └── Cube1.ebmesh │ │ │ │ ├── GGX Arrow Emissive Strength Map.png │ │ │ │ ├── GGX Arrow Emissive.png │ │ │ │ ├── GGX.png │ │ │ │ ├── MaterialWidgetDescriptors.json │ │ │ │ ├── PBRPhong.png │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── Phong.png │ │ │ │ ├── gradient.png │ │ │ │ ├── shaders │ │ │ │ │ ├── custom_emissive_map.frag │ │ │ │ │ ├── custom_glas.frag │ │ │ │ │ ├── custom_glas_ggx_clearcoat.frag │ │ │ │ │ ├── custom_opacity.frag │ │ │ │ │ └── deform.vert │ │ │ │ └── warehouse.ebibl │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 0e40af39-e105-4944-af1f-893a3a62f12c │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 3c41cee0-9553-4bc8-b281-b75c8e2956fd.gdata │ │ │ │ │ └── 3d894134-d53e-4904-aa51-04ee67d9dcad.gdata │ │ │ └── templates │ │ │ │ ├── 9bd29285-8f5d-45da-860e-a159fb70a3c9.gdata │ │ │ │ ├── a3ea7de0-b910-4469-9383-7763cd0a3ed3.gdata │ │ │ │ ├── d3089878-2b18-4e08-ad33-53a4047ecee9.gdata │ │ │ │ └── e56140a4-9b9f-421c-8e80-a00f10c80115.gdata │ │ ├── readme.md │ │ └── src │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CustomShaderGLES2 │ │ ├── model │ │ │ ├── CustomShaderGLES2.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4979f596-6f25-4121-919e-fa172c6753b8.gdata │ │ │ ├── packages │ │ │ │ └── 65ceb984-edb1-4f9b-9a37-f67f49c0c280.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ShaderWidgetDescriptors.json │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ ├── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── Nummer_bold_RGB.png │ │ │ │ │ ├── bar_image.png │ │ │ │ │ └── coloration_image.png │ │ │ │ └── shaders │ │ │ │ │ ├── f_boxblur.glsl │ │ │ │ │ ├── f_coloration.glsl │ │ │ │ │ ├── f_custom_shader_default.glsl │ │ │ │ │ ├── f_progressbar.glsl │ │ │ │ │ ├── v_boxblur.glsl │ │ │ │ │ ├── v_custom_shader_default.glsl │ │ │ │ │ └── v_default.glsl │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ └── 5ef56ca6-67c0-4d91-81e0-0b3381f7bd73.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 5af0dbe6-a955-45f9-99f1-91af4fe8c7d7.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CustomShaderGLES3 │ │ ├── model │ │ │ ├── CustomShaderGLES3.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4979f596-6f25-4121-919e-fa172c6753b8.gdata │ │ │ ├── packages │ │ │ │ └── 65ceb984-edb1-4f9b-9a37-f67f49c0c280.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ShaderWidgetDescriptors.json │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ ├── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── Nummer_bold_RGB.png │ │ │ │ │ ├── bar_image.png │ │ │ │ │ └── coloration_image.png │ │ │ │ └── shaders │ │ │ │ │ ├── f_boxblur.glsl │ │ │ │ │ ├── f_coloration.glsl │ │ │ │ │ ├── f_custom_shader_default.glsl │ │ │ │ │ ├── f_progressbar.glsl │ │ │ │ │ ├── v_boxblur.glsl │ │ │ │ │ ├── v_custom_shader_default.glsl │ │ │ │ │ └── v_default.glsl │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ └── 5ef56ca6-67c0-4d91-81e0-0b3381f7bd73.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 5af0dbe6-a955-45f9-99f1-91af4fe8c7d7.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── DownscalingWidgetFeature │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── DownscalingWidgetFeature.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4669a0c3-d23c-406b-8d93-ae931d6c8189.gdata │ │ │ ├── packages │ │ │ │ └── bc398e99-82a0-450f-afc3-d39ab13e80a9.gdata │ │ │ ├── resources │ │ │ │ ├── DownscalingWidgetFeature.dll │ │ │ │ ├── DownscalingWidgetFeatureDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── extern.jpg │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── DownscalingFeature.cpp │ │ │ ├── DownscalingFeature.h │ │ │ ├── DownscalingFeaturePlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ExtendedContainerWidget │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ExtendedContainerWidget.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 6608d6ac-1446-4b32-b482-485c804771e5.gdata │ │ │ ├── packages │ │ │ │ └── 0ef8a8e9-c649-472a-a4b9-ad100a4b0c64.gdata │ │ │ ├── resources │ │ │ │ ├── ExtendedContainerWidget.dll │ │ │ │ ├── ExtendedContainerWidgetDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ExtendedContainerPlugin.cpp │ │ │ ├── ExtendedContainerWidget.cpp │ │ │ ├── ExtendedContainerWidget.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── RenderObject.cpp │ │ │ ├── RenderObject.h │ │ │ ├── RenderObjectStackFrame.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── FocusPolicyWidgetFeature │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── FocusPolicyWidgetFeature.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── fad1e807-0491-4c15-aece-f0e1fca7df40.gdata │ │ │ ├── packages │ │ │ │ └── c953637b-21ed-49ed-9225-fd77a7e93d30.gdata │ │ │ ├── resources │ │ │ │ ├── FocusPolicyWidgetFeature.dll │ │ │ │ ├── FocusPolicyWidgetFeatureDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 6ab593c7-e0c4-4fa3-8950-35d1d85945af.gdata │ │ │ │ ├── 880b1913-33e4-4201-aab5-5a187b2dce25.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── FocusPolicyWidgetFeature.cpp │ │ │ ├── FocusPolicyWidgetFeature.h │ │ │ ├── FocusPolicyWidgetFeaturePlugin.cpp │ │ │ ├── RandomFocusFeature.cpp │ │ │ ├── RandomFocusFeature.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── FocusedWidgetFeature │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── FocusedWidgetFeature.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 3019bdce-19e7-43c3-9fd3-3dc6d57f3153.gdata │ │ │ ├── packages │ │ │ │ └── 2fd770c9-b182-476b-af1e-18cad7c3b4a9.gdata │ │ │ ├── resources │ │ │ │ ├── FocusedWidgetFeature.dll │ │ │ │ ├── FocusedWidgetFeatureDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── FocusedWidgetFeature.cpp │ │ │ ├── FocusedWidgetFeature.h │ │ │ ├── FocusedWidgetFeaturePlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── GaussianBlur │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── GaussianBlur.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4979f596-6f25-4121-919e-fa172c6753b8.gdata │ │ │ ├── packages │ │ │ │ └── 87d793dd-215d-4d8c-a00c-8ba3db15db87.gdata │ │ │ ├── resources │ │ │ │ ├── GaussianBlur.dll │ │ │ │ ├── GaussianBlurDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ └── 5ef56ca6-67c0-4d91-81e0-0b3381f7bd73.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── GaussianBlur.cpp │ │ │ ├── GaussianBlur.h │ │ │ ├── GaussianBlurCommand.cpp │ │ │ ├── GaussianBlurCommand.h │ │ │ ├── GaussianBlurPlugin.cpp │ │ │ ├── GaussianBlurRenderObject.cpp │ │ │ ├── GaussianBlurRenderObject.h │ │ │ ├── GaussianBlurStackFrame.cpp │ │ │ ├── GaussianBlurStackFrame.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── LabelShape │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── LabelShape.ebguide │ │ │ ├── configuration │ │ │ │ ├── 10fa33fc-c892-4fac-a968-e8d0ed2f99e3.gdata │ │ │ │ └── 6313f6d7-64c1-4ec2-948d-ad831fabad30.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 1e189ae8-de69-4179-83fb-400f5849a506.gdata │ │ │ ├── packages │ │ │ │ └── 331c7b11-55eb-4df7-b7dd-c5ba3f627100.gdata │ │ │ ├── resources │ │ │ │ ├── LabelShape.dll │ │ │ │ ├── LabelShapeDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 9112cfd8-ebf6-4143-a4c8-c7afe3a0fe94 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 1350d5f9-9326-491e-863c-a308118efeff.gdata │ │ │ │ │ └── 959c45f9-b143-4ea5-906b-cb3d13c5a2c0.gdata │ │ │ └── templates │ │ │ │ ├── 6f669daf-5466-40a2-8339-f3caf73b9950.gdata │ │ │ │ └── 97bfae15-8eec-4a27-be28-646b2cd5f0f1.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── LabelShapeAdder.cpp │ │ │ ├── LabelShapeAdder.h │ │ │ ├── LabelShapePlugin.cpp │ │ │ ├── SineLabelShape.cpp │ │ │ ├── SineLabelShape.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── Multisample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── Multisample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 9de05b54-e519-4987-85bf-f87adc640232.gdata │ │ │ │ └── bdb959b6-8fde-4e3b-aa95-45ccdad17336.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 76fa6618-c9ac-408a-8139-7d732da79682.gdata │ │ │ ├── packages │ │ │ │ └── cb2bcacf-2c00-439d-bb26-31f184d29fd1.gdata │ │ │ ├── resources │ │ │ │ ├── Multisample.dll │ │ │ │ ├── MultisampleDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── b839a985-cc8a-4f1f-b13b-c26ba814dda1 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 442c95ab-b742-4104-a158-fb8650d3a827.gdata │ │ │ │ │ └── be453906-6416-465c-ae96-ae7dbde2af5b.gdata │ │ │ └── templates │ │ │ │ ├── 9b236a75-7a1b-405e-92c8-ef4969c1b4fb.gdata │ │ │ │ ├── d0cc6c2b-4cf3-4482-8e51-a14cd535817a.gdata │ │ │ │ └── f22f375f-74a5-4677-854b-56ad0cc8b440.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── Multisample.cpp │ │ │ ├── Multisample.h │ │ │ ├── MultisampleCommand.cpp │ │ │ ├── MultisampleCommand.h │ │ │ ├── MultisamplePlugin.cpp │ │ │ ├── MultisampleRenderObject.cpp │ │ │ ├── MultisampleRenderObject.h │ │ │ ├── MultisampleStackFrame.cpp │ │ │ ├── MultisampleStackFrame.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── PostprocessingEffectExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── PostprocessingEffectExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 10fa33fc-c892-4fac-a968-e8d0ed2f99e3.gdata │ │ │ │ └── 6313f6d7-64c1-4ec2-948d-ad831fabad30.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 1e189ae8-de69-4179-83fb-400f5849a506.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── PostprocessingEffectExample.dll │ │ │ │ ├── PostprocessingEffectExampleDescriptor.json │ │ │ │ ├── Teapot_20180723_125953 │ │ │ │ │ └── Teapot0010.ebmesh │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 9112cfd8-ebf6-4143-a4c8-c7afe3a0fe94 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 1350d5f9-9326-491e-863c-a308118efeff.gdata │ │ │ │ │ └── 959c45f9-b143-4ea5-906b-cb3d13c5a2c0.gdata │ │ │ └── templates │ │ │ │ ├── 42cb342a-4f18-486a-ba53-7fc9518be23d.gdata │ │ │ │ ├── 6f669daf-5466-40a2-8339-f3caf73b9950.gdata │ │ │ │ └── 97bfae15-8eec-4a27-be28-646b2cd5f0f1.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── PostprocessingEffectPlugin.cpp │ │ │ ├── PostprocessingExampleEffectFactory.cpp │ │ │ ├── PostprocessingExampleEffectFactory.h │ │ │ ├── PostprocessingExampleEffectPasses.cpp │ │ │ ├── PostprocessingExampleEffectPasses.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── RippleEffect │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── RippleEffect.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── ed876c6f-f565-42d2-9c9b-d32dee048a1e.gdata │ │ │ ├── packages │ │ │ │ └── 3905b8dc-9cd0-40c1-9d24-7fd4e134a492.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── RippleEffect.dll │ │ │ │ ├── RippleEffectDescriptor.json │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ ├── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── example.png │ │ │ │ └── logs │ │ │ │ │ └── FbxImportLog_1_14_2018 5_22_08 PM.txt │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 2a0f5cff-ccba-43db-8bb3-bd9c32edf65d.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── RippleEffect.cpp │ │ │ ├── RippleEffect.h │ │ │ ├── RippleEffectPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ScriptFunction │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ScriptFunction.ebguide │ │ │ ├── configuration │ │ │ │ ├── 1bbc5878-c220-4949-82cf-16f039212f17.gdata │ │ │ │ └── 81cc0bc6-3ba9-42de-957f-355eba32bb91.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 7a7be416-1ca6-4b5e-96e8-df5a55b6fd67.gdata │ │ │ ├── packages │ │ │ │ └── 663138b1-0d2e-4910-aaea-8a3dcd7be664.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ScriptFunction.dll │ │ │ │ ├── ScriptFunctionDescriptor.json │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── dd2421cb-7bbc-4151-97b9-a2bff137e365 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 2c9c3499-90c7-43ca-9bcc-dc48f46a24fe.gdata │ │ │ │ │ └── ccd9b887-5ec1-4934-ab44-51d2c0d4c9ae.gdata │ │ │ └── templates │ │ │ │ ├── 596fd040-17b6-4fd8-af99-a5bc58984079.gdata │ │ │ │ ├── 622fe64a-b36f-4319-8af5-d92528456bf8.gdata │ │ │ │ └── bc8b1908-2dbd-4d08-9acf-5f19ea17de0c.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── ScriptFunctionNames.h │ │ │ ├── ScriptFunctionPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── TGAImageLoader │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── TGAImageLoader.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── bb0c87d3-21cd-4bf2-8284-102bdb87f62c.gdata │ │ │ ├── packages │ │ │ │ └── e32f9fef-25a3-4f10-b11a-ec370eb7e398.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── TGAImageLoader.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── compressedImage.tga │ │ │ │ │ ├── decompressedImage.tga │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icon_base.png │ │ │ │ │ ├── icon_events.png │ │ │ │ │ └── icon_external_image.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── 669a97de-0e37-4273-a305-3645d71c4470.gdata │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ ├── 6a626597-78a8-49d7-a591-14b29c5ec41f.gdata │ │ │ │ │ ├── 8aa5d387-6509-4603-af23-79df320688be.gdata │ │ │ │ │ └── dadb168c-7a5c-4cfd-9dcd-148af4ad2e3e.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 3a24ef7a-dbb9-40b0-985c-1a45dac0f9ea.gdata │ │ │ │ ├── 4ba5e50b-dc6c-4c10-8165-b319a5cef09c.gdata │ │ │ │ ├── 7e16277d-99a1-41b2-99fc-ddee370c1aa3.gdata │ │ │ │ ├── bad749ae-e164-4670-bd0b-647bce039801.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── DecoderImpl.cpp │ │ │ ├── DecoderImpl.h │ │ │ ├── InitializedStageImpl.cpp │ │ │ ├── InitializedStageImpl.h │ │ │ ├── Tga.cpp │ │ │ ├── Tga.h │ │ │ ├── TgaImageLoaderPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ └── TriangleWidget │ │ ├── CMakeLists.txt │ │ ├── model │ │ ├── TriangleWidget.ebguide │ │ ├── configuration │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ ├── contexts.gdata │ │ ├── datapool.gdata │ │ ├── descriptors.json │ │ ├── eventgroups.gdata │ │ ├── events.gdata │ │ ├── languages.gdata │ │ ├── modelinterfaces │ │ │ └── userdefined │ │ │ │ └── eec98145-1ada-4ec2-a019-129d57fd91b9.gdata │ │ ├── packages │ │ │ └── 7ffa55e2-e146-402c-9560-f0b52994450e.gdata │ │ ├── resources │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ ├── TriangleWidget.dll │ │ │ ├── TriangleWidgetDescriptor.json │ │ │ ├── fonts │ │ │ │ └── PT_Sans.ttf │ │ │ └── images │ │ │ │ └── EB.png │ │ ├── skins.gdata │ │ ├── statemachines │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ └── templates │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ ├── GLES20Shader.h │ │ ├── GLES3Shader.h │ │ ├── LoadedStageImpl.cpp │ │ ├── LoadedStageImpl.h │ │ ├── TrianglePlugin.cpp │ │ ├── TriangleRenderer.cpp │ │ ├── TriangleRenderer.h │ │ └── include │ │ └── export │ │ ├── aspects │ │ ├── languages.h │ │ └── skins.h │ │ ├── global │ │ ├── datapool │ │ │ └── items.h │ │ └── events │ │ │ └── all_events.h │ │ └── local │ │ ├── datapool │ │ └── items.h │ │ └── events │ │ ├── all_events.h │ │ └── group_Default.h ├── model_interactions │ ├── ApplicationInteractionExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ApplicationInteractionExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── a55ba420-d6e6-4449-af1f-74c4ca361747.gdata │ │ │ ├── packages │ │ │ │ └── a9209a76-2fb9-45c1-93ee-26417e9491f9.gdata │ │ │ ├── resources │ │ │ │ ├── ApplicationInteractionExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── app_dp.png │ │ │ │ │ ├── extern.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icon_base.png │ │ │ │ │ ├── icon_datapool_items.png │ │ │ │ │ ├── icon_dp.png │ │ │ │ │ ├── icon_events.png │ │ │ │ │ ├── icon_external_image.png │ │ │ │ │ ├── icon_mandelbrot.png │ │ │ │ │ ├── icon_windowed_list.png │ │ │ │ │ ├── interaction_dp.png │ │ │ │ │ └── interaction_events.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── 669a97de-0e37-4273-a305-3645d71c4470.gdata │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 2749e2e7-23f0-40f9-916f-20657e735c9c.gdata │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ ├── 5f48e0da-d292-4c1c-8888-abe6f40e78c5.gdata │ │ │ │ │ ├── 6a626597-78a8-49d7-a591-14b29c5ec41f.gdata │ │ │ │ │ ├── 718e667b-bb22-4b66-8eac-27ee279c088f.gdata │ │ │ │ │ ├── 8aa5d387-6509-4603-af23-79df320688be.gdata │ │ │ │ │ ├── b5a23149-f790-43bd-ab21-8335ef9d4538.gdata │ │ │ │ │ └── dadb168c-7a5c-4cfd-9dcd-148af4ad2e3e.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 3a24ef7a-dbb9-40b0-985c-1a45dac0f9ea.gdata │ │ │ │ ├── 4ba5e50b-dc6c-4c10-8165-b319a5cef09c.gdata │ │ │ │ ├── 7e16277d-99a1-41b2-99fc-ddee370c1aa3.gdata │ │ │ │ ├── abc16f1e-4157-4f01-912f-28c58856d605.gdata │ │ │ │ ├── bad749ae-e164-4670-bd0b-647bce039801.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ApplicationInteractionPlugin.cpp │ │ │ ├── Mandelbrot2MemImageConverter.cpp │ │ │ ├── Mandelbrot2MemImageConverter.h │ │ │ ├── MandelbrotImage.cpp │ │ │ ├── MandelbrotImage.h │ │ │ ├── MandelbrotSet.cpp │ │ │ ├── MandelbrotSet.h │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ ├── all_events.h │ │ │ │ └── group_Application.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Application.h │ │ │ └── group_Default.h │ ├── DatapoolExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── DatapoolExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 59ac7f5a-8b58-4cda-8d6f-d0619c97d89a.gdata │ │ │ │ └── d1493b80-b1e8-42a1-a890-1c70f5db2287.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── c8ba9b9a-4083-4376-b7b5-277f41da1bcc.gdata │ │ │ ├── packages │ │ │ │ └── 55df8049-0106-439e-b924-d1c8008d0f71.gdata │ │ │ ├── resources │ │ │ │ ├── DatapoolExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── d2274670-c66d-476d-bc31-9357d5349e92 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 9ee640ec-5684-45db-988b-a772c15fd855.gdata │ │ │ │ │ └── a1ef1bb8-5526-44da-be69-b4bd2ed301f3.gdata │ │ │ └── templates │ │ │ │ ├── 0d87f242-dbbe-451f-b029-3d13688d6ac1.gdata │ │ │ │ ├── 23e7baac-65cf-4ba0-beae-e2917811287a.gdata │ │ │ │ └── d5d59616-5174-41c3-95e0-650c21bf2aa0.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── DatapoolPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── EventExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── EventExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 3196d92d-a8e8-4190-b93f-f38d429f3082.gdata │ │ │ │ └── 7577beec-e511-427b-b4f5-57af984f13ad.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 986dd3eb-2064-49b4-bc6c-be9f442c2aeb.gdata │ │ │ ├── packages │ │ │ │ └── a2537319-1b82-42c0-9da5-0cab63b29816.gdata │ │ │ ├── resources │ │ │ │ ├── EventExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 619c62fa-8931-4a23-b62e-bf9ccd1bceea │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 849f7c34-b9f8-4df4-83ea-cf073d93187b.gdata │ │ │ │ │ ├── b7d618dd-ef9a-4140-963a-cbb2c5c93c09.gdata │ │ │ │ │ ├── c7443d01-52f5-4fef-a621-cd3cb3614f87.gdata │ │ │ │ │ └── cdd506e8-f09f-4312-abd0-b6b2bce2c699.gdata │ │ │ └── templates │ │ │ │ ├── c0f1c727-95c8-4441-8262-f18240012cb1.gdata │ │ │ │ └── d39ab86b-55e4-41b8-a278-7e8cefa331f9.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── EventPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ ├── all_events.h │ │ │ │ └── group_global.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Default.h │ │ │ └── group_global.h │ ├── ExternalKeyInputExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ExternalKeyInputExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 3196d92d-a8e8-4190-b93f-f38d429f3082.gdata │ │ │ │ └── 7577beec-e511-427b-b4f5-57af984f13ad.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── e7483415-35cb-4638-945a-e0183956702d.gdata │ │ │ ├── packages │ │ │ │ └── 9f294324-107f-4244-a938-4a7498152618.gdata │ │ │ ├── resources │ │ │ │ ├── ExternalKeyInputExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 619c62fa-8931-4a23-b62e-bf9ccd1bceea │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 849f7c34-b9f8-4df4-83ea-cf073d93187b.gdata │ │ │ │ │ └── c7443d01-52f5-4fef-a621-cd3cb3614f87.gdata │ │ │ └── templates │ │ │ │ ├── c0f1c727-95c8-4441-8262-f18240012cb1.gdata │ │ │ │ └── d39ab86b-55e4-41b8-a278-7e8cefa331f9.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ExternalKeyInputPlugin.cpp │ │ │ ├── RunningStageImpl.cpp │ │ │ ├── RunningStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Default.h │ │ │ └── group_Key.h │ ├── ExternalTouchInputExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ExternalTouchInputExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 3196d92d-a8e8-4190-b93f-f38d429f3082.gdata │ │ │ │ └── 7577beec-e511-427b-b4f5-57af984f13ad.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── f849688b-91d8-47e8-9a6b-bd16bd052e0d.gdata │ │ │ ├── packages │ │ │ │ └── 3b2e944e-09a0-4cbc-929e-17cb806e0d72.gdata │ │ │ ├── resources │ │ │ │ ├── ExternalTouchInputExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 619c62fa-8931-4a23-b62e-bf9ccd1bceea │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 849f7c34-b9f8-4df4-83ea-cf073d93187b.gdata │ │ │ │ │ └── c7443d01-52f5-4fef-a621-cd3cb3614f87.gdata │ │ │ └── templates │ │ │ │ ├── c0f1c727-95c8-4441-8262-f18240012cb1.gdata │ │ │ │ └── d39ab86b-55e4-41b8-a278-7e8cefa331f9.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ExternalTouchInputPlugin.cpp │ │ │ ├── RunningStageImpl.cpp │ │ │ ├── RunningStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Default.h │ │ │ └── group_Touch.h │ ├── RawImageFromMemoryExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── RawImageFromMemoryExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 934cb976-8979-434d-89d3-f47fc4d2cf46.gdata │ │ │ ├── packages │ │ │ │ └── 4374bbe0-129f-4d3c-96ad-e60a99158ff7.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── RawImageFromMemoryExample.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── app_dp.png │ │ │ │ │ ├── extern.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icon_base.png │ │ │ │ │ ├── icon_datapool_items.png │ │ │ │ │ ├── icon_dp.png │ │ │ │ │ ├── icon_events.png │ │ │ │ │ ├── icon_external_image.png │ │ │ │ │ ├── icon_mandelbrot.png │ │ │ │ │ ├── icon_windowed_list.png │ │ │ │ │ ├── interaction_dp.png │ │ │ │ │ └── interaction_events.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── 669a97de-0e37-4273-a305-3645d71c4470.gdata │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ ├── 6a626597-78a8-49d7-a591-14b29c5ec41f.gdata │ │ │ │ │ ├── 8aa5d387-6509-4603-af23-79df320688be.gdata │ │ │ │ │ └── dadb168c-7a5c-4cfd-9dcd-148af4ad2e3e.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 3a24ef7a-dbb9-40b0-985c-1a45dac0f9ea.gdata │ │ │ │ ├── 4ba5e50b-dc6c-4c10-8165-b319a5cef09c.gdata │ │ │ │ ├── 7e16277d-99a1-41b2-99fc-ddee370c1aa3.gdata │ │ │ │ ├── bad749ae-e164-4670-bd0b-647bce039801.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── Mandelbrot2MemImageConverter.cpp │ │ │ ├── Mandelbrot2MemImageConverter.h │ │ │ ├── MandelbrotImage.cpp │ │ │ ├── MandelbrotImage.h │ │ │ ├── MandelbrotSet.cpp │ │ │ ├── MandelbrotSet.h │ │ │ ├── RawImageFromMemoryPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ScreenshotExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ScreenshotExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── e14c6c0b-4cac-4c69-9b53-3083a8951ad7.gdata │ │ │ ├── packages │ │ │ │ └── b39186fb-d4d2-41ba-b5d7-c1f40a5e1718.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ScreenshotExample.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── Screenshot.cpp │ │ │ ├── Screenshot.h │ │ │ ├── ScreenshotPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ └── WindowListExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ ├── WindowListExample.ebguide │ │ ├── configuration │ │ │ ├── 59ac7f5a-8b58-4cda-8d6f-d0619c97d89a.gdata │ │ │ └── d1493b80-b1e8-42a1-a890-1c70f5db2287.gdata │ │ ├── contexts.gdata │ │ ├── datapool.gdata │ │ ├── descriptors.json │ │ ├── eventgroups.gdata │ │ ├── events.gdata │ │ ├── languages.gdata │ │ ├── modelinterfaces │ │ │ └── userdefined │ │ │ │ └── 800f72c6-8d9e-4a48-bda0-1688ac9f8920.gdata │ │ ├── packages │ │ │ └── 72d209dd-8335-45f4-a7af-e7b216c28309.gdata │ │ ├── resources │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ ├── WindowListExample.dll │ │ │ ├── fonts │ │ │ │ └── PT_Sans.ttf │ │ │ └── images │ │ │ │ └── logo.png │ │ ├── skins.gdata │ │ ├── statemachines │ │ │ └── d2274670-c66d-476d-bc31-9357d5349e92 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ ├── a1ef1bb8-5526-44da-be69-b4bd2ed301f3.gdata │ │ │ │ └── b626692a-8da1-4992-9ec2-699783714772.gdata │ │ └── templates │ │ │ ├── 0d87f242-dbbe-451f-b029-3d13688d6ac1.gdata │ │ │ ├── 36192fc9-a3a9-4a7f-9edf-a98a14c704eb.gdata │ │ │ ├── 66cd612b-4677-466a-8e21-fe50d179234c.gdata │ │ │ └── d5d59616-5174-41c3-95e0-650c21bf2aa0.gdata │ │ ├── readme.md │ │ └── src │ │ ├── RunStageImpl.cpp │ │ ├── RunStageImpl.h │ │ ├── WindowListPlugin.cpp │ │ └── include │ │ └── export │ │ ├── aspects │ │ ├── languages.h │ │ └── skins.h │ │ ├── global │ │ ├── datapool │ │ │ └── items.h │ │ └── events │ │ │ └── all_events.h │ │ └── local │ │ ├── datapool │ │ └── items.h │ │ └── events │ │ ├── all_events.h │ │ └── group_Default.h └── readme.md ├── EB_GUIDE_Monitor ├── EB_GUIDE_Monitor_examples.sln ├── MonitorRemoteViewPlugin │ ├── MonitorRemoteViewPlugin.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── Utilities │ │ ├── Cancellation │ │ │ ├── Cancellation.cs │ │ │ └── ICancellation.cs │ │ ├── ContinuousScreenshot │ │ │ ├── AlreadyRunningException.cs │ │ │ ├── ContinuousScreenshotController.cs │ │ │ ├── ContinuousScreenshotControllerFactory.cs │ │ │ ├── ContinuousScreenshotRunner.cs │ │ │ ├── IContinuousScreenshotController.cs │ │ │ ├── IContinuousScreenshotControllerFactory.cs │ │ │ ├── IContinuousScreenshotRunner.cs │ │ │ └── SceneIdMismatchException.cs │ │ ├── Delayer │ │ │ ├── Delayer.cs │ │ │ └── IDelayer.cs │ │ ├── FrameDelayConverter │ │ │ ├── FrameDelayConverter.cs │ │ │ └── IFrameDelayConverter.cs │ │ └── ImageClick │ │ │ ├── ClickAdorner.cs │ │ │ ├── IMouseClickHandler.cs │ │ │ └── MouseClickBehavior.cs │ ├── ViewModels │ │ ├── RemoteViewViewModel.cs │ │ └── RemoteViewViewModelFactory.cs │ ├── Views │ │ ├── RemoteView.xaml │ │ └── RemoteView.xaml.cs │ └── readme.md ├── MonitorUiExtension │ ├── MonitorUiExtension.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── ViewModels │ │ ├── ExtensionComponentViewModel.cs │ │ └── ExtensionViewModelFactory.cs │ ├── Views │ │ ├── ExtensionComponentView.xaml │ │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── MonitorUiExtensionDatapool │ ├── MonitorUiExtensionDatapool.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── ViewModels │ │ ├── ExtensionComponentViewModel.cs │ │ ├── ExtensionViewModelFactory.cs │ │ └── VisibleValueViewModel.cs │ ├── Views │ │ ├── ExtensionComponentView.xaml │ │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── MonitorUiExtensionEvents │ ├── MonitorUiExtensionEvents.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── ViewModels │ │ ├── ExtensionComponentViewModel.cs │ │ └── ExtensionViewModelFactory.cs │ ├── Views │ │ ├── ExtensionComponentView.xaml │ │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── MonitorUiExtensionMacro │ ├── MacroService │ │ ├── Delay.cs │ │ ├── IMacro.cs │ │ ├── IMacroFactory.cs │ │ ├── IMacroRecordSession.cs │ │ ├── IMacroRecordSessionFactory.cs │ │ ├── IMacroRecorder.cs │ │ ├── IMacroService.cs │ │ ├── IMacroStep.cs │ │ ├── IMacroToScriptBuilder.cs │ │ ├── MacroDelayStep.cs │ │ ├── MacroRecordSession.cs │ │ ├── MacroRecordSessionFactory.cs │ │ ├── MacroRecorderBase.cs │ │ ├── MacroService.cs │ │ ├── Macros │ │ │ ├── MessageMacro.cs │ │ │ └── MessageMacroFactory.cs │ │ ├── Recorders │ │ │ ├── MessageStep.cs │ │ │ └── SentMessageRecorder.cs │ │ └── ScriptBuilder │ │ │ ├── Converters │ │ │ ├── DelayStepToScriptConverter.cs │ │ │ ├── IMacroStepToScriptConverter.cs │ │ │ ├── IMessageToScriptConverter.cs │ │ │ ├── MacroStepConverterAttribute.cs │ │ │ ├── MessageConverterAttribute.cs │ │ │ ├── MessageConverters │ │ │ │ ├── FireEventConverter.cs │ │ │ │ ├── InsertListItemConverter.cs │ │ │ │ ├── MessageConverterBase.cs │ │ │ │ ├── RemoveListItemConverter.cs │ │ │ │ ├── WriteListItemConverter.cs │ │ │ │ └── WriteScalarConverter.cs │ │ │ └── MessageStepToScriptConverter.cs │ │ │ ├── ScriptBuilder.cs │ │ │ └── Template │ │ │ ├── MonitorScriptTemplate.cs │ │ │ ├── MonitorScriptTemplate.tt │ │ │ ├── MonitorScriptTemplate1.cs │ │ │ └── ScriptAction.cs │ ├── MonitorUiExtensionMacro.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UI │ │ ├── ExtensionResourceProvider.cs │ │ ├── Resources.xaml │ │ ├── ViewModels │ │ │ ├── MacroViewModel.cs │ │ │ └── MacroViewModelFactory.cs │ │ └── Views │ │ │ ├── MacroView.xaml │ │ │ └── MacroView.xaml.cs │ └── readme.md └── MonitorUiExtensionTargetViewer │ ├── App.config │ ├── MonitorUiExtensionTargetViewer.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── ExtensionResourceProvider.cs │ └── Resources.xaml │ ├── ViewModels │ ├── ExtensionComponentOptions.cs │ ├── ExtensionComponentViewModel.cs │ └── ExtensionViewModelFactory.cs │ ├── Views │ ├── ExtensionComponentView.xaml │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── EB_GUIDE_Studio ├── AnnotationsServicePlugin │ ├── AnnotationsServicePlugin.csproj │ ├── Model │ │ ├── AnnotationData.cs │ │ ├── AnnotationDeleter.cs │ │ ├── AnnotationPluginData.cs │ │ ├── AnnotationTypeProvider.cs │ │ ├── AnnotationsMappingModule.cs │ │ ├── IAnnotationData.cs │ │ ├── IAnnotationPluginData.cs │ │ ├── TypeMemberNames.cs │ │ └── TypeNames.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service │ │ ├── AnnotationService.cs │ │ └── IAnnotationService.cs │ └── readme.md ├── AnnotationsUiPlugin │ ├── AnnotationsUiPlugin.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── View │ │ ├── AnnotationResourceProvider.cs │ │ ├── AnnotationView.xaml │ │ ├── AnnotationView.xaml.cs │ │ └── Resources.xaml │ ├── ViewModel │ │ ├── AnnotationComponentFactory.cs │ │ ├── AnnotationComponentViewModel.cs │ │ └── AnnotationViewModel.cs │ └── readme.md ├── CommandLinePlugin │ ├── CommandLinePlugin.csproj │ ├── CountEventsCommandLineAction.cs │ ├── CountEventsCommandLineOption.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── EB_GUIDE_Studio_examples.sln ├── ExportStatisticsPlugin │ ├── ExportStatisticsPlugin.csproj │ ├── ExportStatisticsPrinter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── JsonImporterPlugin │ ├── Deserializer │ │ ├── IJsonFileReader.cs │ │ └── JsonFileReader.cs │ ├── ImportMenuItemProvider.cs │ ├── ImportOptions.cs │ ├── JsonImporterPlugin.csproj │ ├── MainMenuBarItemProvider.cs │ ├── Model │ │ ├── ImportModelDataResult.cs │ │ ├── JsonDpItem.cs │ │ ├── JsonEvent.cs │ │ ├── JsonEventParameter.cs │ │ └── JsonModelData.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── ExampleModel.json │ ├── Service │ │ ├── IJsonModelService.cs │ │ └── JsonModelService.cs │ └── readme.md ├── MenuActionPlugin │ ├── CustomMenuItemProvider.cs │ ├── MainMenuBarItemProvider.cs │ ├── MenuActionPlugin.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── ProjectMetadataPlugin │ ├── IProjectMetadata.cs │ ├── IProjectMetadataService.cs │ ├── ProjectMetadata.cs │ ├── ProjectMetadataPlugin.csproj │ ├── ProjectMetadataService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── TGAImageLoaderPlugin │ ├── AppResources.xaml │ ├── DataTypeCode.cs │ ├── Decoders │ │ ├── RgbBufferDecoder.cs │ │ ├── RgbDecoder.cs │ │ └── RgbRleDecoder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TGAImageLoaderPlugin.csproj │ ├── TgaAssetDropHandler.cs │ ├── TgaAssetFormats.cs │ ├── TgaAssetResourceProvider.cs │ ├── TgaAssetViewModel.cs │ ├── TgaAssetViewModelFactory.cs │ ├── TgaHeader.cs │ ├── TgaPathToThumbnailConverter.cs │ ├── TgaReader.cs │ ├── UnsupportedPixelFormatException.cs │ └── readme.md ├── TagFilterPlugin │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Readme.md │ ├── Resources.xaml │ ├── TagFilterPlugin.csproj │ ├── TagFilterResourceProvider.cs │ ├── VariantSupportTagItemSourceProvider.cs │ ├── VariantTagItem.cs │ ├── VariantTagItemOptions.cs │ ├── VariantTagItemSerializer.cs │ └── VariantTagItemSource.cs └── ValidationPlugin │ ├── FindItemsWithLanguageSupportValidator.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ValidationPlugin.csproj │ └── readme.md ├── LICENSE.txt └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /EB_GUIDE_GTF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/BasicExample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/BasicExample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/BasicExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/resources/BasicExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/model/tracing.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/BasicPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/BasicPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/Tracing.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/include/export/aspects/languages.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/include/export/global/datapool/items.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/include/export/local/datapool/items.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BasicExample/src/include/export/local/events/all_events.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/tracing.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/BufferSwapHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/BufferSwapHooks.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/BufferSwapHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/BufferSwapHooks.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/BufferSwapHooksPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/BufferSwapHooksPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/Tracing.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/CoreStageExample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/CoreStageExample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/CoreStageExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/CoreStageExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/model/tracing.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStage.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStage.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStageProvider.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/EarlyStageProvider.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStage.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStage.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStageProvider.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/LateStageProvider.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/PrepareStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/PrepareStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/PrepareStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/PrepareStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/StagePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/StagePlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/Tracing.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/aspects/languages.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/tracing.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/TemperatureConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/src/TemperatureConverter.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/DependencyResolverExample/src/Tracing.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/ModelStageExample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/ModelStageExample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/ModelStageExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/ModelStageExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/model/tracing.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStage.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStage.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStageProvider.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/EarlyStageProvider.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStage.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStage.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStageProvider.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/LateStageProvider.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/PreparedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/PreparedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/PreparedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/PreparedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/StagePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/StagePlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/Tracing.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/aspects/languages.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/SettingsExample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/SettingsExample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/SettingsExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/SettingsExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/model/tracing.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/SettingsPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/src/SettingsPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/src/Tracing.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/aspects/languages.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/local/datapool/items.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/TraceOutputExample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/TraceOutputExample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/TraceOutputExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/TraceOutputExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/model/tracing.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/CustomTraceOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/src/CustomTraceOutput.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/CustomTraceOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/src/CustomTraceOutput.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/CustomTraceOutputExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/src/CustomTraceOutputExport.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/BezierCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/BezierCurve.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/BezierCurvePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/BezierCurvePlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/BezierFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/BezierFunction.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Curve.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/DelayedFixedCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/DelayedFixedCurve.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/DelayedFixedCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/DelayedFixedCurve.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Properties.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Properties.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/Tracing.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/BloomEffect.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/BloomEffect.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/BloomEffect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/BloomEffect.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/BloomEffectPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/src/BloomEffectPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/BloomEffectRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/src/BloomEffectRenderer.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/BloomEffectRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/src/BloomEffectRenderer.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/GLES3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/src/GLES3Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/CrepuscularPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/CrepuscularPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/CrepuscularRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/CrepuscularRenderer.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/CrepuscularRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/CrepuscularRenderer.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/OpenGLES3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/OpenGLES3Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/CustomMaterial.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/CustomMaterial.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/PBRPhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/PBRPhong.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/Phong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/Phong.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/gradient.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/warehouse.ebibl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/warehouse.ebibl -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomMaterial/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/RenderObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/RenderObject.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/RenderObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/RenderObject.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/Renderer.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/Renderer.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/src/FocusedWidgetFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/src/FocusedWidgetFeature.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/GaussianBlur.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/GaussianBlur.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/GaussianBlur.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/GaussianBlur.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GLES20Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GLES20Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GLES3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GLES3Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlur.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlur.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurCommand.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurCommand.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurRenderObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurRenderObject.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurRenderObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurRenderObject.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurStackFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurStackFrame.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/GaussianBlurStackFrame.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/LabelShape.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/LabelShape.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/LabelShape.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/LabelShape.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/LabelShapeAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/src/LabelShapeAdder.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/LabelShapeAdder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/src/LabelShapeAdder.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/LabelShapePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/src/LabelShapePlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/SineLabelShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/src/SineLabelShape.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/SineLabelShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/src/SineLabelShape.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/LabelShape/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/Multisample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/Multisample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/Multisample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/Multisample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/GLES20Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/GLES20Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/GLES3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/GLES3Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/Multisample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/Multisample.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/Multisample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/Multisample.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleCommand.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleCommand.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/MultisamplePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/MultisamplePlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleRenderObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleRenderObject.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleRenderObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleRenderObject.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleStackFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleStackFrame.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/MultisampleStackFrame.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/Multisample/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/src/GLES20Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/src/GLES20Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/src/GLES3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/src/GLES3Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/RippleEffect.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/RippleEffect.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/RippleEffect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/RippleEffect.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/example.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/GLES20Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/GLES20Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/GLES3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/GLES3Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/RippleEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/RippleEffect.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/RippleEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/RippleEffect.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/RippleEffectPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/RippleEffectPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/aspects/skins.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/ScriptFunction.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/ScriptFunction.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/ScriptFunctionNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/src/ScriptFunctionNames.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/ScriptFunctionPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/ScriptFunction/src/ScriptFunctionPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/TGAImageLoader.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/TGAImageLoader.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/home.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/DecoderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/DecoderImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/DecoderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/DecoderImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/InitializedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/InitializedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/InitializedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/InitializedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/Tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/Tga.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/Tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/Tga.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/TgaImageLoaderPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/TgaImageLoaderPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/TriangleWidget.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/TriangleWidget.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/GLES20Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/src/GLES20Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/GLES3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/src/GLES3Shader.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/LoadedStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/src/LoadedStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/LoadedStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/src/LoadedStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/TrianglePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/src/TrianglePlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/TriangleRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/src/TriangleRenderer.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/TriangleRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_extensions/TriangleWidget/src/TriangleRenderer.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/DatapoolExample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/DatapoolExample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/src/DatapoolPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/src/DatapoolPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/DatapoolExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/EventExample.ebguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/EventExample.ebguide -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/resources/EventExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/resources/EventExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/EventPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/src/EventPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/EventExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/src/MandelbrotSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/src/MandelbrotSet.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/Screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/Screenshot.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/Screenshot.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/ScreenshotPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/ScreenshotPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/CMakeLists.txt -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/contexts.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/model/contexts.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/datapool.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/model/datapool.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/model/descriptors.json -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/eventgroups.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/model/eventgroups.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/events.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/model/events.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/languages.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/model/languages.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/skins.gdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/model/skins.gdata -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/src/RunStageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/src/RunStageImpl.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/src/RunStageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/src/RunStageImpl.h -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/src/WindowListPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/model_interactions/WindowListExample/src/WindowListPlugin.cpp -------------------------------------------------------------------------------- /EB_GUIDE_GTF/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_GTF/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/EB_GUIDE_Monitor_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/EB_GUIDE_Monitor_examples.sln -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/MonitorRemoteViewPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/MonitorRemoteViewPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Resources/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Resources/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Utilities/Delayer/Delayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Utilities/Delayer/Delayer.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Utilities/Delayer/IDelayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Utilities/Delayer/IDelayer.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Utilities/ImageClick/ClickAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Utilities/ImageClick/ClickAdorner.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/ViewModels/RemoteViewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/ViewModels/RemoteViewViewModel.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Views/RemoteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Views/RemoteView.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Views/RemoteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/Views/RemoteView.xaml.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorRemoteViewPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorRemoteViewPlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/MonitorUiExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/MonitorUiExtension.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/Resources/ExtensionResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/Resources/ExtensionResourceProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/Resources/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/Resources/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/ViewModels/ExtensionComponentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/ViewModels/ExtensionComponentViewModel.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/ViewModels/ExtensionViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/ViewModels/ExtensionViewModelFactory.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/Views/ExtensionComponentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/Views/ExtensionComponentView.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/Views/ExtensionComponentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/Views/ExtensionComponentView.xaml.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtension/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionDatapool/MonitorUiExtensionDatapool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionDatapool/MonitorUiExtensionDatapool.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionDatapool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionDatapool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionDatapool/Resources/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionDatapool/Resources/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionDatapool/Views/ExtensionComponentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionDatapool/Views/ExtensionComponentView.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionDatapool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionDatapool/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionEvents/MonitorUiExtensionEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionEvents/MonitorUiExtensionEvents.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionEvents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionEvents/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionEvents/Resources/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionEvents/Resources/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionEvents/Views/ExtensionComponentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionEvents/Views/ExtensionComponentView.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionEvents/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionEvents/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/Delay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/Delay.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacro.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroFactory.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroRecordSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroRecordSession.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroRecorder.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/IMacroStep.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroDelayStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroDelayStep.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroRecordSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroRecordSession.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroRecorderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroRecorderBase.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/MacroService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/Macros/MessageMacro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MacroService/Macros/MessageMacro.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/MonitorUiExtensionMacro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/MonitorUiExtensionMacro.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/ExtensionResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/ExtensionResourceProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/ViewModels/MacroViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/ViewModels/MacroViewModel.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/Views/MacroView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/Views/MacroView.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/Views/MacroView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/UI/Views/MacroView.xaml.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionMacro/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionMacro/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/App.config -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/Resources/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/Resources/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/AnnotationsServicePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/AnnotationsServicePlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationData.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationDeleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationDeleter.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationPluginData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationPluginData.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationTypeProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationsMappingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/AnnotationsMappingModule.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/IAnnotationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/IAnnotationData.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/IAnnotationPluginData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/IAnnotationPluginData.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/TypeMemberNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/TypeMemberNames.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Model/TypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Model/TypeNames.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Service/AnnotationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Service/AnnotationService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/Service/IAnnotationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/Service/IAnnotationService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsServicePlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsServicePlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/AnnotationsUiPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/AnnotationsUiPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/View/AnnotationResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/View/AnnotationResourceProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/View/AnnotationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/View/AnnotationView.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/View/AnnotationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/View/AnnotationView.xaml.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/View/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/View/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/ViewModel/AnnotationComponentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/ViewModel/AnnotationComponentFactory.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/ViewModel/AnnotationComponentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/ViewModel/AnnotationComponentViewModel.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/ViewModel/AnnotationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/ViewModel/AnnotationViewModel.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/AnnotationsUiPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/AnnotationsUiPlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/CommandLinePlugin/CommandLinePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/CommandLinePlugin/CommandLinePlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/CommandLinePlugin/CountEventsCommandLineAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/CommandLinePlugin/CountEventsCommandLineAction.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/CommandLinePlugin/CountEventsCommandLineOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/CommandLinePlugin/CountEventsCommandLineOption.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/CommandLinePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/CommandLinePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/CommandLinePlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/CommandLinePlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/EB_GUIDE_Studio_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/EB_GUIDE_Studio_examples.sln -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ExportStatisticsPlugin/ExportStatisticsPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ExportStatisticsPlugin/ExportStatisticsPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ExportStatisticsPlugin/ExportStatisticsPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ExportStatisticsPlugin/ExportStatisticsPrinter.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ExportStatisticsPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ExportStatisticsPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ExportStatisticsPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ExportStatisticsPlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Deserializer/IJsonFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Deserializer/IJsonFileReader.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Deserializer/JsonFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Deserializer/JsonFileReader.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/ImportMenuItemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/ImportMenuItemProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/ImportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/ImportOptions.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/JsonImporterPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/JsonImporterPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/MainMenuBarItemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/MainMenuBarItemProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Model/ImportModelDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Model/ImportModelDataResult.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonDpItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonDpItem.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonEvent.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonEventParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonEventParameter.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonModelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Model/JsonModelData.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Resources/ExampleModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Resources/ExampleModel.json -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Service/IJsonModelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Service/IJsonModelService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/Service/JsonModelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/Service/JsonModelService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/JsonImporterPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/JsonImporterPlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/MenuActionPlugin/CustomMenuItemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/MenuActionPlugin/CustomMenuItemProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/MenuActionPlugin/MainMenuBarItemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/MenuActionPlugin/MainMenuBarItemProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/MenuActionPlugin/MenuActionPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/MenuActionPlugin/MenuActionPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/MenuActionPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/MenuActionPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/MenuActionPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/MenuActionPlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ProjectMetadataPlugin/IProjectMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ProjectMetadataPlugin/IProjectMetadata.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ProjectMetadataPlugin/IProjectMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ProjectMetadataPlugin/IProjectMetadataService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ProjectMetadataPlugin/ProjectMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ProjectMetadataPlugin/ProjectMetadata.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ProjectMetadataPlugin/ProjectMetadataPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ProjectMetadataPlugin/ProjectMetadataPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ProjectMetadataPlugin/ProjectMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ProjectMetadataPlugin/ProjectMetadataService.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ProjectMetadataPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ProjectMetadataPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ProjectMetadataPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ProjectMetadataPlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/AppResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/AppResources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/DataTypeCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/DataTypeCode.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/Decoders/RgbBufferDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/Decoders/RgbBufferDecoder.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/Decoders/RgbDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/Decoders/RgbDecoder.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/Decoders/RgbRleDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/Decoders/RgbRleDecoder.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TGAImageLoaderPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TGAImageLoaderPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetDropHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetDropHandler.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetFormats.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetResourceProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetViewModel.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaAssetViewModelFactory.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaHeader.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaPathToThumbnailConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaPathToThumbnailConverter.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/TgaReader.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/UnsupportedPixelFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/UnsupportedPixelFormatException.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TGAImageLoaderPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TGAImageLoaderPlugin/readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/Readme.md -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/Resources.xaml -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/TagFilterPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/TagFilterPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/TagFilterResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/TagFilterResourceProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/VariantSupportTagItemSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/VariantSupportTagItemSourceProvider.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/VariantTagItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/VariantTagItem.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/VariantTagItemOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/VariantTagItemOptions.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/VariantTagItemSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/VariantTagItemSerializer.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/TagFilterPlugin/VariantTagItemSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/TagFilterPlugin/VariantTagItemSource.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ValidationPlugin/FindItemsWithLanguageSupportValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ValidationPlugin/FindItemsWithLanguageSupportValidator.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ValidationPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ValidationPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ValidationPlugin/ValidationPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ValidationPlugin/ValidationPlugin.csproj -------------------------------------------------------------------------------- /EB_GUIDE_Studio/ValidationPlugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/EB_GUIDE_Studio/ValidationPlugin/readme.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/HEAD/readme.md --------------------------------------------------------------------------------