├── BeeGameplay.gif ├── BeeControl ├── ProjectSettings │ ├── ProjectVersion.txt │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── AudioManager.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── DynamicsManager.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── NetworkManager.asset │ ├── ProjectSettings.asset │ ├── QualitySettings.asset │ ├── UnityAdsSettings.asset │ ├── Physics2DSettings.asset │ ├── EditorBuildSettings.asset │ └── UnityAnalyticsManager.asset ├── assets │ ├── UnityVS │ │ ├── Editor │ │ │ ├── SyntaxTree.VisualStudio.Unity.Bridge.dll.meta │ │ │ ├── SyntaxTree.VisualStudio.Unity.Messaging.dll.meta │ │ │ ├── UnityVS.VersionSpecific.dll │ │ │ ├── SyntaxTree.VisualStudio.Unity.Bridge.dll │ │ │ ├── SyntaxTree.VisualStudio.Unity.Messaging.dll │ │ │ └── UnityVS.VersionSpecific.dll.meta │ │ └── Editor.meta │ ├── Textures │ │ ├── Bee.png │ │ ├── Mouse.png │ │ ├── Path.png │ │ ├── UI_BG.png │ │ ├── Button.png │ │ ├── BeeMaster_DIF.png │ │ ├── BeeMaster_NRM.png │ │ ├── Exclamation.png │ │ ├── FlowerField.png │ │ ├── BeeMaster2_DIF.png │ │ ├── BeeMaster3_DIF.png │ │ ├── BeeMaster_SPEC.tga │ │ ├── GrassBGMaster_DIF.png │ │ ├── GreenLeafMaster2_DIF.tga │ │ ├── GreenLeafMaster2_NRM.png │ │ ├── GreenLeafMaster_DIF.png │ │ ├── GreenLeafMaster_NRM.png │ │ ├── GreenLeafMaster_SPEC.tga │ │ ├── HoneyCombMaster_DIF.png │ │ ├── HoneyCombMaster_NRM.png │ │ ├── TreeBranchMaster_DIF.png │ │ ├── TreeBranchMaster_NRM.png │ │ ├── GreenLeafMaster2_SPEC.tga │ │ ├── HoneyCombTileMaster_DIF.png │ │ ├── TreeBranchMaster_SPEC.tga │ │ ├── Bee.png.meta │ │ ├── Mouse.png.meta │ │ ├── UI_BG.png.meta │ │ ├── Button.png.meta │ │ ├── Path.png.meta │ │ ├── BeeMaster_DIF.png.meta │ │ ├── BeeMaster_NRM.png.meta │ │ ├── Exclamation.png.meta │ │ ├── FlowerField.png.meta │ │ ├── BeeMaster2_DIF.png.meta │ │ ├── BeeMaster3_DIF.png.meta │ │ ├── BeeMaster_SPEC.tga.meta │ │ ├── GrassBGMaster_DIF.png.meta │ │ ├── GreenLeafMaster_NRM.png.meta │ │ ├── HoneyCombMaster_NRM.png.meta │ │ ├── GreenLeafMaster2_DIF.tga.meta │ │ ├── GreenLeafMaster2_NRM.png.meta │ │ ├── GreenLeafMaster2_SPEC.tga.meta │ │ ├── GreenLeafMaster_DIF.png.meta │ │ ├── GreenLeafMaster_SPEC.tga.meta │ │ ├── HoneyCombMaster_DIF.png.meta │ │ ├── HoneyCombMaster_SPEC.tga.meta │ │ ├── HoneyCombTileMaster_DIF.png.meta │ │ ├── TreeBranchMaster_DIF.png.meta │ │ ├── TreeBranchMaster_NRM.png.meta │ │ └── TreeBranchMaster_SPEC.tga.meta │ ├── Audio │ │ ├── bee_land.wav │ │ ├── bee_loop.wav │ │ ├── bee_collide.wav │ │ ├── game_over_1.wav │ │ ├── hive_grow.wav │ │ ├── button_click_1.wav │ │ ├── splash_screen_2.wav │ │ ├── bee_collide.wav.meta │ │ ├── bee_land.wav.meta │ │ ├── bee_loop.wav.meta │ │ ├── game_over_1.wav.meta │ │ ├── hive_grow.wav.meta │ │ ├── button_click_1.wav.meta │ │ └── splash_screen_2.wav.meta │ ├── Scenes │ │ ├── Main.unity │ │ ├── Main │ │ │ ├── SkyboxProbe-0.exr │ │ │ ├── LightmapSnapshot.asset │ │ │ ├── LightmapSnapshot.asset.meta │ │ │ └── SkyboxProbe-0.exr.meta │ │ ├── Main.unity.meta │ │ └── Main.meta │ ├── Resources │ │ ├── Localization.csv │ │ └── Localization.csv.meta │ ├── Fonts │ │ ├── PoetsenOne-Regular.ttf │ │ └── PoetsenOne-Regular.ttf.meta │ ├── Prefabs │ │ ├── Meshes │ │ │ ├── BeeGameAssets.FBX │ │ │ ├── Leaf01.prefab.meta │ │ │ ├── HCombMeshes.prefab.meta │ │ │ ├── Materials │ │ │ │ ├── GreenLeaf.mat.meta │ │ │ │ ├── No Name.mat.meta │ │ │ │ ├── HoneyCombMaster_DIF.mat.meta │ │ │ │ ├── HoneyCombTileMaster_DIF.mat.meta │ │ │ │ ├── TreeBranchMaster_DIF.mat.meta │ │ │ │ ├── No Name.mat │ │ │ │ ├── GreenLeaf.mat │ │ │ │ ├── HoneyCombMaster_DIF.mat │ │ │ │ ├── TreeBranchMaster_DIF.mat │ │ │ │ └── HoneyCombTileMaster_DIF.mat │ │ │ ├── Materials.meta │ │ │ ├── Leaf01.prefab │ │ │ └── BeeGameAssets.FBX.meta │ │ ├── Bee.prefab.meta │ │ ├── Alert .prefab.meta │ │ ├── Button.prefab.meta │ │ ├── QuitHint.prefab.meta │ │ ├── Honeycomb.prefab.meta │ │ ├── LanguageMenu.prefab.meta │ │ ├── Meshes.meta │ │ └── Alert .prefab │ ├── Standard Assets │ │ ├── CrossPlatformInput │ │ │ ├── PlayerArrow.png │ │ │ └── PlayerArrow.png.meta │ │ └── CrossPlatformInput.meta │ ├── Materials │ │ ├── Bee.mat.meta │ │ ├── Bee2.mat.meta │ │ ├── Bee3.mat.meta │ │ ├── Path.mat.meta │ │ ├── Branch.mat.meta │ │ ├── Leaf01.mat.meta │ │ ├── Leaf02.mat.meta │ │ ├── Leaf03.mat.meta │ │ ├── LeafBlur.mat.meta │ │ ├── Background.mat.meta │ │ ├── HoneyComb01.mat.meta │ │ ├── HoneyComb02.mat.meta │ │ ├── HoneyCombRed.mat.meta │ │ ├── HoneycombOpen.mat.meta │ │ ├── New Material.mat.meta │ │ ├── HoneycombBorder.mat.meta │ │ ├── HoneycombClosed.mat.meta │ │ ├── GreenLeafMaster2_DIF.mat.meta │ │ ├── HoneycombBorder.mat │ │ ├── HoneyComb01.mat │ │ ├── Background.mat │ │ ├── HoneycombOpen.mat │ │ ├── HoneycombClosed.mat │ │ ├── GreenLeafMaster2_DIF.mat │ │ ├── Path.mat │ │ ├── Branch.mat │ │ ├── HoneyComb02.mat │ │ ├── Bee2.mat │ │ ├── Bee3.mat │ │ ├── Bee.mat │ │ ├── Leaf03.mat │ │ ├── HoneyCombRed.mat │ │ └── Leaf02.mat │ ├── Audio.meta │ ├── Fonts.meta │ ├── Prefabs.meta │ ├── Scenes.meta │ ├── Scripts.meta │ ├── UnityVS.meta │ ├── Materials.meta │ ├── Resources.meta │ ├── Textures.meta │ ├── Scripts │ │ ├── PlayerRank.cs │ │ ├── Utils.cs.meta │ │ ├── AlertIcon.cs.meta │ │ ├── BeeManager.cs.meta │ │ ├── Beehive.cs.meta │ │ ├── CSVReader.cs.meta │ │ ├── FlightPath.cs.meta │ │ ├── Honeycomb.cs.meta │ │ ├── PlayerRank.cs.meta │ │ ├── UIManager.cs.meta │ │ ├── AudioHelper.cs.meta │ │ ├── AudioManager.cs.meta │ │ ├── BeeController.cs.meta │ │ ├── GameplayManager.cs.meta │ │ ├── GestureManager.cs.meta │ │ ├── LanguageMenu.cs.meta │ │ ├── LevelManager.cs.meta │ │ ├── ObjectPooler.cs.meta │ │ ├── QuitOnEscape.cs.meta │ │ ├── WingController.cs.meta │ │ ├── PlaySoundOnActive.cs.meta │ │ ├── StaticTextManager.cs.meta │ │ ├── LocalizationManager.cs.meta │ │ ├── QuitOnEscape.cs │ │ ├── PlaySoundOnActive.cs │ │ ├── WingController.cs │ │ ├── StaticTextManager.cs │ │ ├── CSVReader.cs │ │ ├── LevelManager.cs │ │ ├── AudioHelper.cs │ │ ├── AudioManager.cs │ │ ├── AlertIcon.cs │ │ ├── LanguageMenu.cs │ │ ├── Utils.cs │ │ ├── GestureManager.cs │ │ ├── Honeycomb.cs │ │ ├── ObjectPooler.cs │ │ ├── UIManager.cs │ │ └── GameplayManager.cs │ └── Standard Assets.meta └── license.txt ├── Microsoft-Imagine.png └── CONTRIBUTING.md /BeeGameplay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeGameplay.gif -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.2.0f3 2 | m_StandardAssetsVersion: 0 3 | -------------------------------------------------------------------------------- /Microsoft-Imagine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/Microsoft-Imagine.png -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS/Editor/SyntaxTree.VisualStudio.Unity.Bridge.dll.meta: -------------------------------------------------------------------------------- 1 | guid: 38d405c119fcc7c4e83d4a478a40ff2f 2 | -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS/Editor/SyntaxTree.VisualStudio.Unity.Messaging.dll.meta: -------------------------------------------------------------------------------- 1 | guid: 4ad02dc83da735c4e8d945332b9202f6 2 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/Bee.png -------------------------------------------------------------------------------- /BeeControl/assets/Audio/bee_land.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Audio/bee_land.wav -------------------------------------------------------------------------------- /BeeControl/assets/Audio/bee_loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Audio/bee_loop.wav -------------------------------------------------------------------------------- /BeeControl/assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Scenes/Main.unity -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/Mouse.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/Path.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/UI_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/UI_BG.png -------------------------------------------------------------------------------- /BeeControl/assets/Audio/bee_collide.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Audio/bee_collide.wav -------------------------------------------------------------------------------- /BeeControl/assets/Audio/game_over_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Audio/game_over_1.wav -------------------------------------------------------------------------------- /BeeControl/assets/Audio/hive_grow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Audio/hive_grow.wav -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/Button.png -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /BeeControl/assets/Audio/button_click_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Audio/button_click_1.wav -------------------------------------------------------------------------------- /BeeControl/assets/Audio/splash_screen_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Audio/splash_screen_2.wav -------------------------------------------------------------------------------- /BeeControl/assets/Resources/Localization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Resources/Localization.csv -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/BeeMaster_DIF.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/BeeMaster_NRM.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/Exclamation.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/FlowerField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/FlowerField.png -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /BeeControl/assets/Fonts/PoetsenOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Fonts/PoetsenOne-Regular.ttf -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster2_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/BeeMaster2_DIF.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster3_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/BeeMaster3_DIF.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster_SPEC.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/BeeMaster_SPEC.tga -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /BeeControl/assets/Scenes/Main/SkyboxProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Scenes/Main/SkyboxProbe-0.exr -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GrassBGMaster_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/GrassBGMaster_DIF.png -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/BeeGameAssets.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Prefabs/Meshes/BeeGameAssets.FBX -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster2_DIF.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/GreenLeafMaster2_DIF.tga -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster2_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/GreenLeafMaster2_NRM.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/GreenLeafMaster_DIF.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/GreenLeafMaster_NRM.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster_SPEC.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/GreenLeafMaster_SPEC.tga -------------------------------------------------------------------------------- /BeeControl/assets/Textures/HoneyCombMaster_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/HoneyCombMaster_DIF.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/HoneyCombMaster_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/HoneyCombMaster_NRM.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/TreeBranchMaster_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/TreeBranchMaster_DIF.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/TreeBranchMaster_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/TreeBranchMaster_NRM.png -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /BeeControl/ProjectSettings/UnityAnalyticsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/ProjectSettings/UnityAnalyticsManager.asset -------------------------------------------------------------------------------- /BeeControl/assets/Scenes/Main/LightmapSnapshot.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Scenes/Main/LightmapSnapshot.asset -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster2_SPEC.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/GreenLeafMaster2_SPEC.tga -------------------------------------------------------------------------------- /BeeControl/assets/Textures/HoneyCombTileMaster_DIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/HoneyCombTileMaster_DIF.png -------------------------------------------------------------------------------- /BeeControl/assets/Textures/TreeBranchMaster_SPEC.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Textures/TreeBranchMaster_SPEC.tga -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS/Editor/UnityVS.VersionSpecific.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/UnityVS/Editor/UnityVS.VersionSpecific.dll -------------------------------------------------------------------------------- /BeeControl/assets/Standard Assets/CrossPlatformInput/PlayerArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/Standard Assets/CrossPlatformInput/PlayerArrow.png -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS/Editor/SyntaxTree.VisualStudio.Unity.Bridge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/UnityVS/Editor/SyntaxTree.VisualStudio.Unity.Bridge.dll -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS/Editor/SyntaxTree.VisualStudio.Unity.Messaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Imagine_bee-control/HEAD/BeeControl/assets/UnityVS/Editor/SyntaxTree.VisualStudio.Unity.Messaging.dll -------------------------------------------------------------------------------- /BeeControl/assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee15ba62aed19840b99c1c850572ac8 3 | timeCreated: 1432683750 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Bee.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5b95a485fc8abe45b7c2211b84ee4fe 3 | timeCreated: 1432686750 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Bee2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19125089b4a64fe4d9218f148c8f4d59 3 | timeCreated: 1432839979 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Bee3.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 153141a5b360f7743a1b20e9dc01f251 3 | timeCreated: 1433442642 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Path.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88edcc23e9ffe9544b92b1fbf522248e 3 | timeCreated: 1432770156 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Bee.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 668a834cf295a0547b8bd5dde70e74a7 3 | timeCreated: 1432686938 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Branch.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d1d0e5177aa6e4eaa7045c5998dfb7 3 | timeCreated: 1434495670 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Leaf01.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b202d3dadef37cc4ba3cd6b3de750816 3 | timeCreated: 1434416576 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Leaf02.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0005b7404a4359c45a39aca5e54e7162 3 | timeCreated: 1434476690 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Leaf03.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95cbd20bc4baf2b41aebc2f5c15456d3 3 | timeCreated: 1434476727 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/LeafBlur.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2b5a8bc2f5d8d4995056abe61d1cc8 3 | timeCreated: 1434564861 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Alert .prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4039b43fbacb4843ad142d86cd6b2fa 3 | timeCreated: 1432944477 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 440e9fb7e887a804a95a7f1144bc36ba 3 | timeCreated: 1432766680 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/QuitHint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b837672d4ef46eb468e4420dd29f5328 3 | timeCreated: 1434142992 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/Background.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 652b33fe93a100045ad6c45cc4a9f03d 3 | timeCreated: 1432683815 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/HoneyComb01.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecdda3fd5b627c7429169e5c0314409e 3 | timeCreated: 1434416864 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/HoneyComb02.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80719779825130d4cbf8b4272bed5c17 3 | timeCreated: 1434493212 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/HoneyCombRed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4a9119e414c07342924c50230f68a4c 3 | timeCreated: 1434582594 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/HoneycombOpen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3af7216353047848b4cb8da84c7c1c6 3 | timeCreated: 1432688024 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/New Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4fad61dc25c92b4b916a4752473b1ec 3 | timeCreated: 1434390691 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Honeycomb.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8e8877d143f96b49a7a90256d9da21c 3 | timeCreated: 1432688204 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/LanguageMenu.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e86af7f42ecf7b245b02ad0e84b462ec 3 | timeCreated: 1432776915 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Leaf01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fae9e21f1fd28a4fa13a73f2372aae9 3 | timeCreated: 1434416933 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Resources/Localization.csv.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5669caf0050830d44979f284d88700e4 3 | timeCreated: 1432746971 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7da9d7a83e4e1d41923cdf37fbb5034 3 | folderAsset: yes 4 | timeCreated: 1432683737 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd5128696b6a43444adab4c08b8c541d 3 | folderAsset: yes 4 | timeCreated: 1432683737 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/HoneycombBorder.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ea557519570c3146be1e360c230c0af 3 | timeCreated: 1432849458 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/HoneycombClosed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41d37f01271c5d74bafa212e7501f58c 3 | timeCreated: 1432854409 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c90affe5e2e5420448c95de63e1002ce 3 | folderAsset: yes 4 | timeCreated: 1432686525 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/HCombMeshes.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e99fbbd91f5ba24b82af4a14b88dcf5 3 | timeCreated: 1434416991 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92a64d3231f123048b41d10535820331 3 | folderAsset: yes 4 | timeCreated: 1432683750 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f84ebc8649dc6164789e31484599880c 3 | folderAsset: yes 4 | timeCreated: 1432683737 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02fe78e962405814a83b8ba6c9471d32 3 | folderAsset: yes 4 | timeCreated: 1432683679 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39df3f797d181724ea8b2680e9577c07 3 | folderAsset: yes 4 | timeCreated: 1432683803 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Materials/GreenLeafMaster2_DIF.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf6500cea3bc60b4393d353b2c52dbec 3 | timeCreated: 1434565519 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Materials/GreenLeaf.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efd4063128d782f44a3569ac89c33d2d 3 | timeCreated: 1434589118 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb972e175af56af4297e25e052538942 3 | timeCreated: 1434589118 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12fb481a6f9008b41b6866d6dc7d2738 3 | folderAsset: yes 4 | timeCreated: 1433355063 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Scenes/Main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8830a08de4a4c094ea0678b87ed40d0f 3 | folderAsset: yes 4 | timeCreated: 1432684201 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Scenes/Main/LightmapSnapshot.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bc3c1db649192f48b1fbc422de174fc 3 | timeCreated: 1432684201 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a39b00cbd404bf645b784ff7d4c46df5 3 | folderAsset: yes 4 | timeCreated: 1432683737 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73294ca15c3655e49b872bdde6c2a12e 3 | folderAsset: yes 4 | timeCreated: 1434415512 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/PlayerRank.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// 5 | /// Enumeration for the player rank. 6 | /// 7 | public enum PlayerRank 8 | { 9 | Gold, 10 | Silver, 11 | Bronze, 12 | Unranked 13 | }; -------------------------------------------------------------------------------- /BeeControl/assets/Standard Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef64a8b47663416439abfd0b96beab18 3 | folderAsset: yes 4 | timeCreated: 1434667824 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e71a3e2fb5854e43823a9da25b68e21 3 | folderAsset: yes 4 | timeCreated: 1432683679 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Materials/HoneyCombMaster_DIF.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a46fdaa2124a8a44d803ca6bec687aa9 3 | timeCreated: 1434589118 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20e4b2acf5f345f47afc84f67845986b 3 | folderAsset: yes 4 | timeCreated: 1434415512 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Materials/HoneyCombTileMaster_DIF.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 209f0ac503ceb214daad88710ab494a4 3 | timeCreated: 1434589118 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Materials/TreeBranchMaster_DIF.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2917be9d394b6364fa4802dcba66f73f 3 | timeCreated: 1434648628 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /BeeControl/assets/Standard Assets/CrossPlatformInput.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e589b1cbc61c618459881101b8a000cb 3 | folderAsset: yes 4 | timeCreated: 1434667824 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f454a62131a07f439e03086f0d3b777 3 | timeCreated: 1432250029 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/AlertIcon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c1fad9e6ac21cb49bec3505a708aa5c 3 | timeCreated: 1432943937 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/BeeManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e453af93bcc66943bf7705f2178fe4d 3 | timeCreated: 1432840852 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/Beehive.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c4f7d6cb00a5cf4fa3924124f67c0fe 3 | timeCreated: 1432687185 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/CSVReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3399bb0d58b8290479b08f40f720f639 3 | timeCreated: 1432690414 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/FlightPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6615e2e6ba015b4c95f433f1977429c 3 | timeCreated: 1432762102 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/Honeycomb.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9fee71cf838c4741b576e220ad255f8 3 | timeCreated: 1432854283 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/PlayerRank.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a5a4d6257b1ee54abb1477fc1f81914 3 | timeCreated: 1432251477 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/UIManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63ecdc739244479458c533da0164e113 3 | timeCreated: 1432250029 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/AudioHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d3c2327d23330e468040d62917c4d2c 3 | timeCreated: 1432250029 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/AudioManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd825654e34169d47a4682c5bf304c21 3 | timeCreated: 1432250030 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/BeeController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f3c2ce408e0384faca06b00aadee89 3 | timeCreated: 1432751441 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/GameplayManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51fd02da0a471fd4b98ad427aeed3e54 3 | timeCreated: 1432250029 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/GestureManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28644b4f5b9c9464e969b65eab145e55 3 | timeCreated: 1432761764 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/LanguageMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1e6e02e43d44204c929c593c551fd1c 3 | timeCreated: 1432766732 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/LevelManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f4b85f6116eeb043b5f5015e64613bf 3 | timeCreated: 1434668924 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/ObjectPooler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ecfbdb02c22eae4e9924bda02109bb7 3 | timeCreated: 1432751371 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/QuitOnEscape.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 752be42412f774744b891f1c516c4c67 3 | timeCreated: 1432250029 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/WingController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f88659419b49a9468700e138da41f00 3 | timeCreated: 1432923689 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/PlaySoundOnActive.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb070152999c78b4dab037dc1a01ad53 3 | timeCreated: 1432250030 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/StaticTextManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c412dd0e2bcb4374a906d02e3be6fa7c 3 | timeCreated: 1432755677 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/LocalizationManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5065d6fcc6f85f4297e4c140e3d83df 3 | timeCreated: 1432761010 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 100 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/QuitOnEscape.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// 5 | /// Script to detect if the escape key is pressed. If so it will quit the game. 6 | /// 7 | public class QuitOnEscape : MonoBehaviour 8 | { 9 | void LateUpdate() 10 | { 11 | // Check if the ESC key is pressed. 12 | if (Input.GetKeyDown(KeyCode.Escape)) 13 | { 14 | // Quit the application. 15 | Application.Quit(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /BeeControl/assets/Fonts/PoetsenOne-Regular.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67ac2002ff44b5d4c81de1f25316d3f0 3 | timeCreated: 1432250031 4 | licenseType: Free 5 | TrueTypeFontImporter: 6 | serializedVersion: 2 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 1 10 | characterPadding: 0 11 | includeFontData: 1 12 | use2xBehaviour: 0 13 | fontNames: [] 14 | customCharacters: 15 | fontRenderingMode: 0 16 | userData: 17 | assetBundleName: 18 | assetBundleVariant: 19 | -------------------------------------------------------------------------------- /BeeControl/assets/UnityVS/Editor/UnityVS.VersionSpecific.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d9dd8c4d202ecf4b96fb77c90795d24 3 | timeCreated: 1432683682 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 0 13 | settings: {} 14 | Editor: 15 | enabled: 1 16 | settings: 17 | DefaultValueInitialized: true 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio/bee_collide.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab74b217321a0d948854d15f934901d3 3 | timeCreated: 1435092436 4 | licenseType: Free 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | 3D: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio/bee_land.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2795d629cb26e2d43a81bf042f16f69c 3 | timeCreated: 1435092436 4 | licenseType: Free 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | 3D: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio/bee_loop.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1b70960c4a371e45ab36daeec725a93 3 | timeCreated: 1435092436 4 | licenseType: Free 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | 3D: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio/game_over_1.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf93e37fe50caae419c9a0e63f5cc1ce 3 | timeCreated: 1435092436 4 | licenseType: Free 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | 3D: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio/hive_grow.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c4d8baa781639644a15ca365cc1e3f6 3 | timeCreated: 1435094388 4 | licenseType: Free 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | 3D: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio/button_click_1.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 956f5d30ffd618446bd547264153b13f 3 | timeCreated: 1432250031 4 | licenseType: Free 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | 3D: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /BeeControl/assets/Audio/splash_screen_2.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf61222e86a79144e995abb1a50d3f96 3 | timeCreated: 1435092436 4 | licenseType: Free 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | 3D: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/PlaySoundOnActive.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// 5 | /// Script to play a sound when the game object is activated. 6 | /// 7 | public class PlaySoundOnActive : MonoBehaviour 8 | { 9 | public AudioClip sound; // Sound to be played. 10 | 11 | AudioSource source; 12 | 13 | void OnEnable() 14 | { 15 | // Check if we have a audio source, if not create a new one. 16 | if (source == null) 17 | { 18 | source = AudioHelper.CreateAudioSource(gameObject, sound); 19 | } 20 | source.Play(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/WingController.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// 5 | /// Script to control the wing animations of the bee. 6 | /// 7 | public class WingController : MonoBehaviour 8 | { 9 | public float range; // The wing's rotation range. 10 | public float speed; // The wing's rotation speed. 11 | 12 | void Update() 13 | { 14 | // Use a sinusoidal function to control the repeating wing animation. 15 | float angle = Mathf.Sin(Time.time * speed) * range; 16 | transform.localRotation = Quaternion.Euler(new Vector3(0f, 0f, angle)); 17 | } 18 | } -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/StaticTextManager.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | using System.Collections; 4 | 5 | public class StaticTextManager : MonoBehaviour 6 | { 7 | [System.Serializable] 8 | public struct TextInfo 9 | { 10 | public Text textObject; 11 | public string localizationKey; 12 | } 13 | 14 | public TextInfo[] textObjects; 15 | 16 | // Use this for initialization 17 | void Start() 18 | { 19 | UpdateText(); 20 | } 21 | 22 | void UpdateText() 23 | { 24 | foreach (TextInfo t in textObjects) 25 | { 26 | t.textObject.text = LocalizationManager.Instance.GetString(t.localizationKey); 27 | } 28 | } 29 | 30 | public void OnLanguageChanged() 31 | { 32 | UpdateText(); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ![](https://github.com/Microsoft/Imagine_bee-control/blob/master/Microsoft-Imagine.png) 2 | 3 | ## Contributing 4 | 5 | Hello and thank you for considering contributing to the Microsoft Imagine open source learn-to-code kits! 6 | 7 | ## How to help us out 8 | Our small, but determined team appreciates your help! One of the best ways to help us (and keep it simple) is to [find and log bugs](https://github.com/Microsoft/Imagine_bee-control/issues): Screenshots, links to video clips are especially valuable to helping us reproduce the issue. 9 | 10 | Spread the word to friends and family about our [learn-to-code kits](https://msdn.microsoft.com/imagine/imagine-create), have them try them out, and see what we can do to improve them. 11 | 12 | Thanks much! 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /BeeControl/license.txt: -------------------------------------------------------------------------------- 1 | Bee Control 2 | 3 | Copyright (c) 2016 Microsoft Corporation 4 | 5 | All rights reserved. 6 | 7 | MIT License 8 | 9 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/CSVReader.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System.Text.RegularExpressions; 5 | 6 | public class CSVReader 7 | { 8 | static string SPLIT_RE = @",(?=(?:[^""]*""[^""]*"")*(?![^""]*""))"; 9 | static string LINE_SPLIT_RE = @"\r\n|\n\r|\n|\r"; 10 | static char[] TRIM_CHARS = { '\"' }; 11 | 12 | public static Dictionary> Read(string file) 13 | { 14 | var list = new Dictionary>(); 15 | TextAsset data = Resources.Load(file) as TextAsset; 16 | 17 | var lines = Regex.Split(data.text, LINE_SPLIT_RE); 18 | 19 | if (lines.Length <= 1) return list; 20 | 21 | var header = Regex.Split(lines[0], SPLIT_RE); 22 | for (var i = 1; i < lines.Length; i++) 23 | { 24 | var values = Regex.Split(lines[i], SPLIT_RE); 25 | if (values.Length == 0 || values[0] == "") continue; 26 | 27 | var entry = new Dictionary(); 28 | for (var j = 1; j < header.Length && j < values.Length; j++) 29 | { 30 | string value = values[j]; 31 | value = value.TrimStart(TRIM_CHARS).TrimEnd(TRIM_CHARS).Replace("\\n", "\n"); 32 | 33 | entry[header[j]] = value; 34 | } 35 | list.Add(values[0], entry); 36 | } 37 | return list; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Bee.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47cdc6fdbf178aa47bce5256262a7fa6 3 | timeCreated: 1432686864 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Mouse.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fadafe02204258e45b6f1223390305e6 3 | timeCreated: 1433872718 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 1 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 1 48 | textureType: 8 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/UI_BG.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e531d435035faaa4380087dcd111ac53 3 | timeCreated: 1435622267 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -3 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 1 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 1 48 | textureType: 8 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Button.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e233cfb5607bc940aee067f01a0d4aa 3 | timeCreated: 1432591305 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 1 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 12, y: 12, z: 12, w: 12} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 1 48 | textureType: 8 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Path.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1acdb7622a28ece44aaf77791c7bfc37 3 | timeCreated: 1432770257 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0115c60b7ecfda24f91331b03e8e2b85 3 | timeCreated: 1434489465 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster_NRM.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f22da1a1ffdc74ca033ce0be7035ca 3 | timeCreated: 1434578503 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 1 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 1 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: 1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/Exclamation.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3a5d8d0103ca084caf3e29187be9e4e 3 | timeCreated: 1432943481 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 1 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 1 48 | textureType: 8 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/FlowerField.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37604b350e620eb4abbae2fb749c7cac 3 | timeCreated: 1432684807 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster2_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09adef3a91139fa4cbbe2493bf38db20 3 | timeCreated: 1434578496 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster3_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 823af96b46e6ab847acc52c7582fa7d3 3 | timeCreated: 1434578496 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/BeeMaster_SPEC.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6aae9b6e4f9b0d34ebcf11859c3a18b7 3 | timeCreated: 1434578496 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GrassBGMaster_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5db9f0334fac6214ead83614ccfd27a1 3 | timeCreated: 1434479371 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: 1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster_NRM.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05471b87742df1842b46ba170b98d380 3 | timeCreated: 1434502669 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 1 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 1 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: 1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/HoneyCombMaster_NRM.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 117a390d45ced15408291ca94740a35d 3 | timeCreated: 1434502159 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 1 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 1 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: 1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster2_DIF.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1953cd4665127504b909190601c0648a 3 | timeCreated: 1434564849 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster2_NRM.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30377bb9867d8ea408d87cbd689312c9 3 | timeCreated: 1434564888 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 1 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 1 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: 1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster2_SPEC.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93fda9905244daa4a9be8766cff5dfe5 3 | timeCreated: 1434564954 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ddb7106a52b5d141a33c58607f4f747 3 | timeCreated: 1434416380 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 1 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/GreenLeafMaster_SPEC.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 233e297533540fa4488fbcc30b1c468f 3 | timeCreated: 1434502631 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/HoneyCombMaster_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d92a2ce21c0e734490e4cd2524abbc8 3 | timeCreated: 1434493191 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/HoneyCombMaster_SPEC.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89d7bb4ff200962458bdb2700bea6ea7 3 | timeCreated: 1434502147 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/HoneyCombTileMaster_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 158f583be1f41864180ee5df5914c8cc 3 | timeCreated: 1434416380 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/TreeBranchMaster_DIF.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 049546c1f46441144a2c96f587e38067 3 | timeCreated: 1434496673 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/TreeBranchMaster_NRM.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c877f958de9e39b4892fdc122ea62e8b 3 | timeCreated: 1434501884 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 1 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 1 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: 1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Textures/TreeBranchMaster_SPEC.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6340f9497fd071c419f382ecf85050f5 3 | timeCreated: 1434501867 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 0 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 0 48 | textureType: -1 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Standard Assets/CrossPlatformInput/PlayerArrow.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a977c36fa208b7469ae997a1cc1a850 3 | timeCreated: 1432579733 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: .25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 8 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | spriteMode: 1 41 | spriteExtrude: 1 42 | spriteMeshType: 1 43 | alignment: 0 44 | spritePivot: {x: .5, y: .5} 45 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 46 | spritePixelsToUnits: 100 47 | alphaIsTransparency: 1 48 | textureType: 8 49 | buildTargetSettings: [] 50 | spriteSheet: 51 | sprites: [] 52 | spritePackingTag: 53 | userData: 54 | assetBundleName: 55 | assetBundleVariant: 56 | -------------------------------------------------------------------------------- /BeeControl/assets/Scenes/Main/SkyboxProbe-0.exr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1d4be4214da35241bf37a4187cc1a1e 3 | timeCreated: 1432684201 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: 7 | 8900000: generatedCubemap 8 | serializedVersion: 2 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | linearTexture: 0 13 | correctGamma: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: .25 22 | normalMapFilter: 0 23 | isReadable: 0 24 | grayScaleToAlpha: 0 25 | generateCubemap: 6 26 | cubemapConvolution: 1 27 | cubemapConvolutionSteps: 8 28 | cubemapConvolutionExponent: 1.5 29 | seamlessCubemap: 1 30 | textureFormat: -1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | filterMode: 2 34 | aniso: 0 35 | mipBias: 0 36 | wrapMode: 1 37 | nPOTScale: 1 38 | lightmap: 0 39 | rGBM: 0 40 | compressionQuality: 100 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: .5, y: .5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: 3 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | spritePackingTag: 54 | userData: 55 | assetBundleName: 56 | assetBundleVariant: 57 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/LevelManager.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// 5 | /// The level manager is responsible for defining the player ranking. The level manager is a 6 | /// singleton and can be accessed in any script using the LevelManager.Instance syntax. 7 | /// 8 | public class LevelManager : MonoBehaviour 9 | { 10 | // The static singleton instance of the level manager. 11 | public static LevelManager Instance { get; private set; } 12 | 13 | public int goldRequirement; // Requirement for Gold rank. 14 | public int silverRequirement; // Requirement for Silver rank. 15 | public int bronzeRequirement; // Requirement for Bronze rank. 16 | 17 | void Awake() 18 | { 19 | // Register this script as the singleton instance. 20 | Instance = this; 21 | } 22 | 23 | /// 24 | /// Gets the rank for the player given the score. 25 | /// 26 | /// The player rank. 27 | /// The player's score. 28 | public PlayerRank GetRank(int score) 29 | { 30 | // Set default to unranked. 31 | PlayerRank rank = PlayerRank.Unranked; 32 | 33 | // Check requirement for Gold rank. 34 | if (score >= goldRequirement) 35 | { 36 | rank = PlayerRank.Gold; 37 | } 38 | // Check requirement for Silver rank. 39 | else if (score >= silverRequirement) 40 | { 41 | rank = PlayerRank.Silver; 42 | } 43 | // Check requirement for Bronze rank. 44 | else if (score >= bronzeRequirement) 45 | { 46 | rank = PlayerRank.Bronze; 47 | } 48 | return rank; 49 | } 50 | } -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/AudioHelper.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// 5 | /// Audio related helper functions. These are static functions and can be call directly using 6 | /// AudioHelper.FunctionName() syntax without having to attach to any GameObject. 7 | /// 8 | public class AudioHelper 9 | { 10 | /// 11 | /// Creates and attaches a new audio source component to the given game object. The 12 | /// audio source will play the audio clip provided. If an audio source with a matching 13 | /// audio clip is found in AudioManager, the settings will be copied over to the new 14 | /// audio source component. 15 | /// 16 | /// The new audio source component. 17 | /// The game object the audio source component is attached to. 18 | /// The audio clip for the audio source component. 19 | public static AudioSource CreateAudioSource(GameObject obj, AudioClip clip) 20 | { 21 | // Check if we have a match in the audio manager. 22 | AudioSource customSource = AudioManager.Instance.GetSourceWithClip(clip.name); 23 | 24 | AudioSource source; 25 | if (customSource == null) 26 | { 27 | // If no match is found, create a new audio source and use the default settings. 28 | source = obj.AddComponent(); 29 | source.clip = clip; 30 | } 31 | else 32 | { 33 | // If a match is found, create an audio source based on the custom settings. 34 | source = obj.AddComponent(customSource); 35 | } 36 | return source; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/AudioManager.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// 5 | /// The audio manager allows us to centralize all the audio settings under one game object so it 6 | /// is easier for the sound designer to locate and tune the audio settings. The audio source paramters 7 | /// can then be referenced by game objects that actually plays the sound. The audio manager is a 8 | /// singleton and can be accessed in any script using the AudioManager.Instance syntax. 9 | /// 10 | public class AudioManager : MonoBehaviour 11 | { 12 | // The static singleton instance of the audio manager. 13 | public static AudioManager Instance { get; private set; } 14 | 15 | void Awake() 16 | { 17 | // Register this script as the singleton instance. 18 | Instance = this; 19 | } 20 | 21 | /// 22 | /// Returns the audio source with the matching audio clip name. 23 | /// 24 | /// The audio source. 25 | /// The audio clip name. 26 | public AudioSource GetSourceWithClip(string clipName) 27 | { 28 | // Loop through all children audio sources. 29 | AudioSource[] audioSources = GetComponents(); 30 | foreach (AudioSource source in audioSources) 31 | { 32 | // Return the one with a matching audio clip name. 33 | if (source.clip.name == clipName) 34 | { 35 | return source; 36 | } 37 | } 38 | 39 | // If no match is found, log a warning and return null. 40 | Debug.LogWarning("[AudioManager] Can't find audio source with clip: " + clipName); 41 | return null; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/AlertIcon.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | using System.Collections; 4 | 5 | /// 6 | /// Controls the alert icon for when a bee is off the screen. 7 | /// 8 | public class AlertIcon : MonoBehaviour 9 | { 10 | public float screenOffset; // Distance from the edge of the screen. 11 | 12 | BeeController beeController; // Controller script for the bee we are tracking. 13 | Transform beeTransform; // Transform component of the bee we are tracking. 14 | 15 | void Update() 16 | { 17 | // Check if the bee is still valid. 18 | if (beeTransform == null || beeController.IsStunned()) 19 | { 20 | // Stop tracking if the bee is gone or is stunned. 21 | Destroy(gameObject); 22 | return; 23 | } 24 | 25 | // Check if the bee is visible yet. 26 | Vector3 viewportPosition = Camera.main.WorldToViewportPoint(beeTransform.position); 27 | if (viewportPosition.x >= 0f && viewportPosition.x <= 1f && 28 | viewportPosition.y >= 0f && viewportPosition.y <= 1f) 29 | { 30 | // Bee is in view, we can destroy the icon now. 31 | Destroy(gameObject); 32 | return; 33 | } 34 | 35 | // Update icon screen position. 36 | Vector3 screenPosition = Camera.main.ViewportToScreenPoint(viewportPosition); 37 | screenPosition.x = Mathf.Clamp(screenPosition.x, screenOffset, Screen.width - screenOffset); 38 | screenPosition.y = Mathf.Clamp(screenPosition.y, screenOffset, Screen.height - screenOffset); 39 | transform.position = screenPosition; 40 | } 41 | 42 | /// 43 | /// Call this to set the bee this icon should be tracking. 44 | /// 45 | /// Game object for the bee. 46 | public void TrackBee(GameObject bee) 47 | { 48 | beeController = bee.GetComponent(); 49 | beeTransform = bee.transform; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /BeeControl/assets/Prefabs/Meshes/Leaf01.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &109676 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 100100000} 8 | serializedVersion: 4 9 | m_Component: 10 | - 4: {fileID: 448572} 11 | - 33: {fileID: 3330218} 12 | - 23: {fileID: 2318122} 13 | m_Layer: 0 14 | m_Name: Leaf01 15 | m_TagString: Untagged 16 | m_Icon: {fileID: 0} 17 | m_NavMeshLayer: 0 18 | m_StaticEditorFlags: 0 19 | m_IsActive: 1 20 | --- !u!4 &448572 21 | Transform: 22 | m_ObjectHideFlags: 1 23 | m_PrefabParentObject: {fileID: 0} 24 | m_PrefabInternal: {fileID: 100100000} 25 | m_GameObject: {fileID: 109676} 26 | m_LocalRotation: {x: -.99308455, y: 0, z: 0, w: .117401592} 27 | m_LocalPosition: {x: -2, y: 7.55999994, z: 103.959999} 28 | m_LocalScale: {x: .39752385, y: .39752382, z: .39752382} 29 | m_Children: [] 30 | m_Father: {fileID: 0} 31 | m_RootOrder: 0 32 | --- !u!23 &2318122 33 | MeshRenderer: 34 | m_ObjectHideFlags: 1 35 | m_PrefabParentObject: {fileID: 0} 36 | m_PrefabInternal: {fileID: 100100000} 37 | m_GameObject: {fileID: 109676} 38 | m_Enabled: 1 39 | m_CastShadows: 1 40 | m_ReceiveShadows: 1 41 | m_Materials: 42 | - {fileID: 2100000, guid: b202d3dadef37cc4ba3cd6b3de750816, type: 2} 43 | m_SubsetIndices: 44 | m_StaticBatchRoot: {fileID: 0} 45 | m_UseLightProbes: 1 46 | m_ReflectionProbeUsage: 1 47 | m_ProbeAnchor: {fileID: 0} 48 | m_ScaleInLightmap: 1 49 | m_PreserveUVs: 0 50 | m_ImportantGI: 0 51 | m_AutoUVMaxDistance: .5 52 | m_AutoUVMaxAngle: 89 53 | m_LightmapParameters: {fileID: 0} 54 | m_SortingLayerID: 0 55 | m_SortingOrder: 0 56 | --- !u!33 &3330218 57 | MeshFilter: 58 | m_ObjectHideFlags: 1 59 | m_PrefabParentObject: {fileID: 0} 60 | m_PrefabInternal: {fileID: 100100000} 61 | m_GameObject: {fileID: 109676} 62 | m_Mesh: {fileID: 4300000, guid: 74e898d7b0ba9304787a4ec45df49310, type: 3} 63 | --- !u!1001 &100100000 64 | Prefab: 65 | m_ObjectHideFlags: 1 66 | serializedVersion: 2 67 | m_Modification: 68 | m_TransformParent: {fileID: 0} 69 | m_Modifications: [] 70 | m_RemovedComponents: [] 71 | m_ParentPrefab: {fileID: 0} 72 | m_RootGameObject: {fileID: 109676} 73 | m_IsPrefabParent: 1 74 | -------------------------------------------------------------------------------- /BeeControl/assets/Scripts/LanguageMenu.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | 6 | /// 7 | /// Script for the language selection menu. 8 | /// 9 | public class LanguageMenu : MonoBehaviour 10 | { 11 | List languages; // List of supported languages. 12 | 13 | [SerializeField] GameObject menuPanel; // Menu panel game object. 14 | [SerializeField] Button parentButton; // Main menu button. 15 | [SerializeField] GameObject menuItemPrefab; // Menu item prefab. 16 | 17 | bool open; // Is the menu current opened? 18 | 19 | void Start() 20 | { 21 | // Get the list of available languages from the localization manager. 22 | languages = LocalizationManager.Instance.GetLanguages(); 23 | 24 | // Create a menu button for each language. 25 | foreach (string l in languages) 26 | { 27 | GameObject button = Instantiate(menuItemPrefab) as GameObject; 28 | button.GetComponentInChildren().text = LocalizationManager.Instance.GetLanguageString(l); 29 | button.transform.SetParent(menuPanel.transform); 30 | string lang = l; 31 | button.GetComponent