├── UnityProject ├── Library │ ├── BuildPlayer.prefs │ ├── FailedAssetImports.txt │ ├── AssetImportState │ ├── ScriptAssemblies │ │ ├── CompilationCompleted.txt │ │ ├── Assembly-CSharp.dll │ │ ├── Assembly-CSharp.dll.mdb │ │ ├── Assembly-CSharp-firstpass.dll │ │ └── Assembly-CSharp-firstpass.dll.mdb │ ├── guidmapper │ ├── ScriptMapper │ ├── assetDatabase3 │ ├── AnnotationManager │ ├── AssetServerCacheV3 │ ├── BuildSettings.asset │ ├── CurrentLayout.dwlt │ ├── MonoManager.asset │ ├── EditorUserSettings.asset │ ├── EditorUserBuildSettings.asset │ ├── InspectorExpandedItems.asset │ └── metadata │ │ ├── 67 │ │ └── 67ae35dea3a4346e6ad331dc2be6ee36 │ │ ├── 00 │ │ ├── 00000000000000001000000000000000 │ │ ├── 00000000000000002000000000000000 │ │ ├── 00000000000000003000000000000000 │ │ ├── 00000000000000004000000000000000 │ │ ├── 00000000000000004100000000000000 │ │ ├── 00000000000000005000000000000000 │ │ ├── 00000000000000005100000000000000 │ │ ├── 00000000000000006000000000000000 │ │ ├── 00000000000000006100000000000000 │ │ ├── 00000000000000007000000000000000 │ │ ├── 00000000000000008000000000000000 │ │ ├── 00000000000000009000000000000000 │ │ ├── 0000000000000000a000000000000000 │ │ ├── 0000000000000000b000000000000000 │ │ └── 0000000000000000c000000000000000 │ │ ├── 9e │ │ └── 9e93f80e418544b56bc314186d2b7c92 │ │ ├── c1 │ │ └── c1c5e880f68b4406ca3811804a2ea63a │ │ ├── c2 │ │ └── c292600435b2b4e8aa7f83c739969455 │ │ ├── e6 │ │ └── e6092e4f7d30d47e4a8861414f11e381 │ │ ├── e7 │ │ └── e7fe0321286d042909521d2786df1661 │ │ └── f3 │ │ └── f330c23767bdb426c93cf02ff558d21a ├── Assets │ ├── Test.unity.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android │ │ │ ├── GameActivity.jar.meta │ │ │ ├── GameActivity.jar │ │ │ ├── AndroidManifest.xml.meta │ │ │ └── AndroidManifest.xml │ │ ├── Android.meta │ │ ├── SocialPlugin.cs.meta │ │ └── SocialPlugin.cs │ ├── Scripts.meta │ ├── Scripts │ │ ├── Test.cs.meta │ │ └── Test.cs │ └── Test.unity ├── ProjectSettings │ ├── NetworkManager.asset │ ├── TimeManager.asset │ ├── GraphicsSettings.asset │ ├── EditorBuildSettings.asset │ ├── AudioManager.asset │ ├── EditorSettings.asset │ ├── DynamicsManager.asset │ ├── Physics2DSettings.asset │ ├── TagManager.asset │ ├── NavMeshLayers.asset │ ├── QualitySettings.asset │ ├── InputManager.asset │ └── ProjectSettings.asset ├── UnityProject.userprefs ├── UnityProject.sln ├── UnityProject-csharp.sln ├── Assembly-CSharp-firstpass-vs.csproj ├── Assembly-CSharp-firstpass.csproj ├── Assembly-CSharp.csproj └── Assembly-CSharp-vs.csproj ├── classes.jar ├── UnityEclipsePlugin ├── ic_launcher-web.png ├── res │ ├── values │ │ ├── strings.xml │ │ └── styles.xml │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values-v11 │ │ └── styles.xml │ └── values-v14 │ │ └── styles.xml ├── libs │ └── android-support-v4.jar ├── .settings │ └── org.eclipse.core.resources.prefs ├── AndroidManifest.xml ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project └── src │ └── com │ └── nexxmobile │ └── unityextras │ └── GameActivity.java ├── README.md └── .gitignore /UnityProject/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityProject/Library/FailedAssetImports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityProject/Library/AssetImportState: -------------------------------------------------------------------------------- 1 | 13;0;-1 -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/CompilationCompleted.txt: -------------------------------------------------------------------------------- 1 | Completed 2 | -------------------------------------------------------------------------------- /classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/classes.jar -------------------------------------------------------------------------------- /UnityProject/Library/guidmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/guidmapper -------------------------------------------------------------------------------- /UnityProject/Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/ScriptMapper -------------------------------------------------------------------------------- /UnityProject/Library/assetDatabase3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/assetDatabase3 -------------------------------------------------------------------------------- /UnityEclipsePlugin/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityEclipsePlugin/ic_launcher-web.png -------------------------------------------------------------------------------- /UnityProject/Assets/Test.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67ae35dea3a4346e6ad331dc2be6ee36 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UnityProject/Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/AnnotationManager -------------------------------------------------------------------------------- /UnityProject/Library/AssetServerCacheV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/AssetServerCacheV3 -------------------------------------------------------------------------------- /UnityProject/Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/BuildSettings.asset -------------------------------------------------------------------------------- /UnityProject/Library/CurrentLayout.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/CurrentLayout.dwlt -------------------------------------------------------------------------------- /UnityProject/Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/MonoManager.asset -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | UnityAndroidExtrasPlugin 4 | 5 | 6 | -------------------------------------------------------------------------------- /UnityProject/Library/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/EditorUserSettings.asset -------------------------------------------------------------------------------- /UnityEclipsePlugin/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityEclipsePlugin/libs/android-support-v4.jar -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c292600435b2b4e8aa7f83c739969455 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android/GameActivity.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6936d92f1e84420cb98459158e0ee31 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6092e4f7d30d47e4a8861414f11e381 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /UnityProject/Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /UnityEclipsePlugin/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/nexxmobile/unityextras/GameActivity.java=UTF-8 3 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityEclipsePlugin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityEclipsePlugin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f330c23767bdb426c93cf02ff558d21a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android/GameActivity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Assets/Plugins/Android/GameActivity.jar -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityEclipsePlugin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityEclipsePlugin/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7fe0321286d042909521d2786df1661 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000001000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000001000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000002000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000002000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000003000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000003000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000004000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000004000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000004100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000004100000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000005000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000005000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000005100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000005100000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000006000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000006000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000006100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000006100000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000007000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000007000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000008000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000008000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000009000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/00000000000000009000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/0000000000000000a000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/0000000000000000a000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/0000000000000000b000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/0000000000000000b000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/0000000000000000c000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/00/0000000000000000c000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/67/67ae35dea3a4346e6ad331dc2be6ee36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/67/67ae35dea3a4346e6ad331dc2be6ee36 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/9e/9e93f80e418544b56bc314186d2b7c92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/9e/9e93f80e418544b56bc314186d2b7c92 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/c1/c1c5e880f68b4406ca3811804a2ea63a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/c1/c1c5e880f68b4406ca3811804a2ea63a -------------------------------------------------------------------------------- /UnityProject/Library/metadata/c2/c292600435b2b4e8aa7f83c739969455: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/c2/c292600435b2b4e8aa7f83c739969455 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/e6/e6092e4f7d30d47e4a8861414f11e381: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/e6/e6092e4f7d30d47e4a8861414f11e381 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/e7/e7fe0321286d042909521d2786df1661: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/e7/e7fe0321286d042909521d2786df1661 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/f3/f330c23767bdb426c93cf02ff558d21a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/metadata/f3/f330c23767bdb426c93cf02ff558d21a -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevarman/UnityAndroidExtras/HEAD/UnityProject/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/Test.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e93f80e418544b56bc314186d2b7c92 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: .0199999996 7 | Maximum Allowed Timestep: .333333343 8 | m_TimeScale: 1 9 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/SocialPlugin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1c5e880f68b4406ca3811804a2ea63a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | m_AlwaysIncludedShaders: 7 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 8 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Test.unity 10 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | m_SpeedOfSound: 347 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_DSPBufferSize: 0 12 | m_DisableAudio: 0 13 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_WebSecurityEmulationEnabled: 0 10 | m_WebSecurityEmulationHostUrl: http://www.mydomain.com/mygame.unity3d 11 | m_DefaultBehaviorMode: 0 12 | m_SpritePackerMode: 0 13 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /UnityProject/UnityProject.userprefs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library=true 16 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | m_Gravity: {x: 0, y: -9.81000042, z: 0} 7 | m_DefaultMaterial: {fileID: 0} 8 | m_BounceThreshold: 2 9 | m_SleepVelocity: .150000006 10 | m_SleepAngularVelocity: .140000001 11 | m_MaxAngularVelocity: 7 12 | m_MinPenetrationForPenalty: .00999999978 13 | m_SolverIterationCount: 6 14 | m_RaycastsHitTriggers: 1 15 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | UnityAndroidExtras 2 | ================== 3 | 4 | Android extras(fb share, toast etc.) plugin for Unity3D 5 | 6 | If you don't like overriding unity's activity take a look at this repository https://github.com/paganini24/UnityAndroidExtraPlugins/ 7 | 8 | How-To: 9 | -Import unity project from Unity3d and export it as Google Android Project 10 | -Import unityeclipseplugin from Eclipse and check android build path for class.jar(if not set correct path remove it and re-add it as external jar). 11 | -Import unity generated eclipse project into Eclipse and open Android tab from it's properties. From libraries section add UnityEclipsePlugin as Library. 12 | -Make your own refactoring like package names... 13 | -Run from a device 14 | 15 | For tutorials : http://www.nevzatarman.com 16 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Generated files 26 | UnityAndroidExtras/UnityEclipsePlugin/bin 27 | UnityAndroidExtras/UnityEclipsePlugin/gen 28 | UnityAndroidExtras/google-play-services_lib/bin 29 | UnityAndroidExtras/google-play-services_lib/gen 30 | 31 | UnityProject/Library 32 | UnityProject/Temp 33 | UnityProject/*.csproj 34 | UnityProject/*.unityproj 35 | UnityProject/*.sln 36 | UnityProject/*.suo 37 | UnityProject/*.user 38 | UnityProject/*.userprefs 39 | UnityProject/*.pidb 40 | UnityProject/*.booproj 41 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/Test.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class Test : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | 9 | } 10 | 11 | // Update is called once per frame 12 | void OnGUI () { 13 | if(GUI.Button(new Rect(10,10,100,50),"Share FB")) 14 | { 15 | SocialPlugin.callShareOnFacebook(); 16 | } 17 | if(GUI.Button(new Rect(10,70,100,50),"Share Tweet")) 18 | { 19 | SocialPlugin.callShareOnTwitter(); 20 | } 21 | if(GUI.Button(new Rect(10,130,100,50),"Make Toast")) 22 | { 23 | SocialPlugin.makeToast("Toast!"); 24 | } 25 | if(GUI.Button(new Rect(10,190,100,50),"Alert")) 26 | { 27 | SocialPlugin.alert("Alert!"); 28 | } 29 | if(GUI.Button(new Rect(10,260,100,50),"Open share intent")) 30 | { 31 | SocialPlugin.openShareIntent("Sharing stuff!"); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | m_Gravity: {x: 0, y: -9.81000042} 7 | m_DefaultMaterial: {fileID: 0} 8 | m_VelocityIterations: 8 9 | m_PositionIterations: 3 10 | m_VelocityThreshold: 1 11 | m_MaxLinearCorrection: .200000003 12 | m_MaxAngularCorrection: 8 13 | m_MaxTranslationSpeed: 100 14 | m_MaxRotationSpeed: 360 15 | m_BaumgarteScale: .200000003 16 | m_BaumgarteTimeOfImpactScale: .75 17 | m_TimeToSleep: .5 18 | m_LinearSleepTolerance: .00999999978 19 | m_AngularSleepTolerance: 2 20 | m_RaycastsHitTriggers: 1 21 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 22 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | UnityAndroidExtrasPlugin 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | tags: 6 | - 7 | Builtin Layer 0: Default 8 | Builtin Layer 1: TransparentFX 9 | Builtin Layer 2: Ignore Raycast 10 | Builtin Layer 3: 11 | Builtin Layer 4: Water 12 | Builtin Layer 5: UI 13 | Builtin Layer 6: 14 | Builtin Layer 7: 15 | User Layer 8: 16 | User Layer 9: 17 | User Layer 10: 18 | User Layer 11: 19 | User Layer 12: 20 | User Layer 13: 21 | User Layer 14: 22 | User Layer 15: 23 | User Layer 16: 24 | User Layer 17: 25 | User Layer 18: 26 | User Layer 19: 27 | User Layer 20: 28 | User Layer 21: 29 | User Layer 22: 30 | User Layer 23: 31 | User Layer 24: 32 | User Layer 25: 33 | User Layer 26: 34 | User Layer 27: 35 | User Layer 28: 36 | User Layer 29: 37 | User Layer 30: 38 | User Layer 31: 39 | m_SortingLayers: 40 | - name: Default 41 | userID: 0 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/SocialPlugin.cs: -------------------------------------------------------------------------------- 1 | //#define DEBUGMODE // Commnet this ON RELEASE! 2 | using UnityEngine; 3 | using System.Collections; 4 | using System.Runtime.InteropServices; 5 | 6 | public class SocialPlugin : MonoBehaviour 7 | { 8 | 9 | #if !DEBUGMODE && UNITY_ANDROID 10 | private static AndroidJavaClass jc = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); 11 | private static AndroidJavaObject jo = jc.GetStatic("currentActivity"); 12 | #endif 13 | 14 | public static void callShareOnFacebook() 15 | { 16 | #if !DEBUGMODE && UNITY_IOS 17 | shareOnFacebook(); 18 | #elif !DEBUGMODE && UNITY_ANDROID 19 | jo.Call("shareOnFacebook"); 20 | #endif 21 | } 22 | public static void callShareOnTwitter() 23 | { 24 | #if !DEBUGMODE && UNITY_IOS 25 | shareOnTwitter(); 26 | #elif !DEBUGMODE && UNITY_ANDROID 27 | jo.Call("shareOnTwitter"); 28 | #endif 29 | } 30 | public static void makeToast(string toast) 31 | { 32 | #if !DEBUGMODE && UNITY_IOS 33 | onSendScreenAnalytics(screen); 34 | #elif !DEBUGMODE && UNITY_ANDROID 35 | jo.Call("makeToast",toast); 36 | #endif 37 | } 38 | public static void alert(string message) 39 | { 40 | #if !DEBUGMODE && UNITY_IOS 41 | onSendScreenAnalytics(screen); 42 | #elif !DEBUGMODE && UNITY_ANDROID 43 | jo.Call("alert",message); 44 | #endif 45 | } 46 | public static void openShareIntent(string message) 47 | { 48 | #if !DEBUGMODE && UNITY_IOS 49 | onSendScreenAnalytics(screen); 50 | #elif !DEBUGMODE && UNITY_ANDROID 51 | jo.Call("openShareIntent",message); 52 | #endif 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /UnityProject/UnityProject.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2008 3 | 4 | Project("{D001055D-889C-3BAE-66BD-CA6F720933D1}") = "UnityProject", "Assembly-CSharp-firstpass.csproj", "{FDE690F1-626F-FFA0-5754-E83120972A79}" 5 | EndProject 6 | Project("{D001055D-889C-3BAE-66BD-CA6F720933D1}") = "UnityProject", "Assembly-CSharp.csproj", "{5B580621-09B4-68CB-B5F4-5B9DD210A60F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Release|Any CPU.Build.0 = Release|Any CPU 18 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.Build.0 = Release|Any CPU 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | GlobalSection(MonoDevelopProperties) = preSolution 27 | StartupItem = Assembly-CSharp.csproj 28 | Policies = $0 29 | $0.TextStylePolicy = $1 30 | $1.inheritsSet = null 31 | $1.scope = text/x-csharp 32 | $0.CSharpFormattingPolicy = $2 33 | $2.inheritsSet = Mono 34 | $2.inheritsScope = text/x-csharp 35 | $2.scope = text/x-csharp 36 | $0.TextStylePolicy = $3 37 | $3.FileWidth = 120 38 | $3.TabWidth = 4 39 | $3.EolMarker = Unix 40 | $3.inheritsSet = Mono 41 | $3.inheritsScope = text/plain 42 | $3.scope = text/plain 43 | EndGlobalSection 44 | 45 | EndGlobal 46 | -------------------------------------------------------------------------------- /UnityProject/UnityProject-csharp.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2008 3 | 4 | Project("{D001055D-889C-3BAE-66BD-CA6F720933D1}") = "UnityProject", "Assembly-CSharp-firstpass-vs.csproj", "{FDE690F1-626F-FFA0-5754-E83120972A79}" 5 | EndProject 6 | Project("{D001055D-889C-3BAE-66BD-CA6F720933D1}") = "UnityProject", "Assembly-CSharp-vs.csproj", "{5B580621-09B4-68CB-B5F4-5B9DD210A60F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FDE690F1-626F-FFA0-5754-E83120972A79}.Release|Any CPU.Build.0 = Release|Any CPU 18 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.Build.0 = Release|Any CPU 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | GlobalSection(MonoDevelopProperties) = preSolution 27 | StartupItem = Assembly-CSharp.csproj 28 | Policies = $0 29 | $0.TextStylePolicy = $1 30 | $1.inheritsSet = null 31 | $1.scope = text/x-csharp 32 | $0.CSharpFormattingPolicy = $2 33 | $2.inheritsSet = Mono 34 | $2.inheritsScope = text/x-csharp 35 | $2.scope = text/x-csharp 36 | $0.TextStylePolicy = $3 37 | $3.FileWidth = 120 38 | $3.TabWidth = 4 39 | $3.EolMarker = Unix 40 | $3.inheritsSet = Mono 41 | $3.inheritsScope = text/plain 42 | $3.scope = text/plain 43 | EndGlobalSection 44 | 45 | EndGlobal 46 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshLayers: 5 | m_ObjectHideFlags: 0 6 | Built-in Layer 0: 7 | name: Default 8 | cost: 1 9 | editType: 2 10 | Built-in Layer 1: 11 | name: Not Walkable 12 | cost: 1 13 | editType: 0 14 | Built-in Layer 2: 15 | name: Jump 16 | cost: 2 17 | editType: 2 18 | User Layer 0: 19 | name: 20 | cost: 1 21 | editType: 3 22 | User Layer 1: 23 | name: 24 | cost: 1 25 | editType: 3 26 | User Layer 2: 27 | name: 28 | cost: 1 29 | editType: 3 30 | User Layer 3: 31 | name: 32 | cost: 1 33 | editType: 3 34 | User Layer 4: 35 | name: 36 | cost: 1 37 | editType: 3 38 | User Layer 5: 39 | name: 40 | cost: 1 41 | editType: 3 42 | User Layer 6: 43 | name: 44 | cost: 1 45 | editType: 3 46 | User Layer 7: 47 | name: 48 | cost: 1 49 | editType: 3 50 | User Layer 8: 51 | name: 52 | cost: 1 53 | editType: 3 54 | User Layer 9: 55 | name: 56 | cost: 1 57 | editType: 3 58 | User Layer 10: 59 | name: 60 | cost: 1 61 | editType: 3 62 | User Layer 11: 63 | name: 64 | cost: 1 65 | editType: 3 66 | User Layer 12: 67 | name: 68 | cost: 1 69 | editType: 3 70 | User Layer 13: 71 | name: 72 | cost: 1 73 | editType: 3 74 | User Layer 14: 75 | name: 76 | cost: 1 77 | editType: 3 78 | User Layer 15: 79 | name: 80 | cost: 1 81 | editType: 3 82 | User Layer 16: 83 | name: 84 | cost: 1 85 | editType: 3 86 | User Layer 17: 87 | name: 88 | cost: 1 89 | editType: 3 90 | User Layer 18: 91 | name: 92 | cost: 1 93 | editType: 3 94 | User Layer 19: 95 | name: 96 | cost: 1 97 | editType: 3 98 | User Layer 20: 99 | name: 100 | cost: 1 101 | editType: 3 102 | User Layer 21: 103 | name: 104 | cost: 1 105 | editType: 3 106 | User Layer 22: 107 | name: 108 | cost: 1 109 | editType: 3 110 | User Layer 23: 111 | name: 112 | cost: 1 113 | editType: 3 114 | User Layer 24: 115 | name: 116 | cost: 1 117 | editType: 3 118 | User Layer 25: 119 | name: 120 | cost: 1 121 | editType: 3 122 | User Layer 26: 123 | name: 124 | cost: 1 125 | editType: 3 126 | User Layer 27: 127 | name: 128 | cost: 1 129 | editType: 3 130 | User Layer 28: 131 | name: 132 | cost: 1 133 | editType: 3 134 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 42 | 43 | 44 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 54 | 57 | 60 | 61 | -------------------------------------------------------------------------------- /UnityProject/Assembly-CSharp-firstpass-vs.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | {FDE690F1-626F-FFA0-5754-E83120972A79} 9 | Library 10 | Properties 11 | 12 | Assembly-CSharp-firstpass 13 | v3.5 14 | 512 15 | Assets 16 | 17 | 18 | true 19 | full 20 | false 21 | Temp\bin\Debug\ 22 | DEBUG;TRACE;UNITY_4_5_2;UNITY_4_5;UNITY_ANDROID;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_UNITYEVENTS;ENABLE_NEW_HIERARCHY ;ENABLE_AUDIO_FMOD;ENABLE_MONO;ENABLE_TERRAIN;ENABLE_SUBSTANCE;ENABLE_GENERICS;INCLUDE_WP8SUPPORT;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;UNITY_ANDROID_API;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_OSX;UNITY_PRO_LICENSE 23 | prompt 24 | 4 25 | 0169 26 | 27 | 28 | pdbonly 29 | true 30 | Temp\bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 0169 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll 43 | 44 | 45 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /UnityProject/Assembly-CSharp-firstpass.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | {FDE690F1-626F-FFA0-5754-E83120972A79} 9 | Library 10 | Properties 11 | 12 | Assembly-CSharp-firstpass 13 | v3.5 14 | 512 15 | Assets 16 | 17 | 18 | true 19 | full 20 | false 21 | Temp\bin\Debug\ 22 | DEBUG;TRACE;UNITY_4_5_2;UNITY_4_5;UNITY_ANDROID;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_UNITYEVENTS;ENABLE_NEW_HIERARCHY ;ENABLE_AUDIO_FMOD;ENABLE_MONO;ENABLE_TERRAIN;ENABLE_SUBSTANCE;ENABLE_GENERICS;INCLUDE_WP8SUPPORT;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;UNITY_ANDROID_API;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_OSX;UNITY_PRO_LICENSE 23 | prompt 24 | 4 25 | 0169 26 | 27 | 28 | pdbonly 29 | true 30 | Temp\bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 0169 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll 43 | 44 | 45 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /UnityProject/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F} 9 | Library 10 | Properties 11 | 12 | Assembly-CSharp 13 | v3.5 14 | 512 15 | Assets 16 | 17 | 18 | true 19 | full 20 | false 21 | Temp\bin\Debug\ 22 | DEBUG;TRACE;UNITY_4_5_2;UNITY_4_5;UNITY_ANDROID;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_UNITYEVENTS;ENABLE_NEW_HIERARCHY ;ENABLE_AUDIO_FMOD;ENABLE_MONO;ENABLE_TERRAIN;ENABLE_SUBSTANCE;ENABLE_GENERICS;INCLUDE_WP8SUPPORT;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;UNITY_ANDROID_API;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_OSX;UNITY_PRO_LICENSE 23 | prompt 24 | 4 25 | 0169 26 | 27 | 28 | pdbonly 29 | true 30 | Temp\bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 0169 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll 43 | 44 | 45 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | {FDE690F1-626F-FFA0-5754-E83120972A79} Assembly-CSharp-firstpass 55 | 56 | 57 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /UnityProject/Assembly-CSharp-vs.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F} 9 | Library 10 | Properties 11 | 12 | Assembly-CSharp 13 | v3.5 14 | 512 15 | Assets 16 | 17 | 18 | true 19 | full 20 | false 21 | Temp\bin\Debug\ 22 | DEBUG;TRACE;UNITY_4_5_2;UNITY_4_5;UNITY_ANDROID;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_UNITYEVENTS;ENABLE_NEW_HIERARCHY ;ENABLE_AUDIO_FMOD;ENABLE_MONO;ENABLE_TERRAIN;ENABLE_SUBSTANCE;ENABLE_GENERICS;INCLUDE_WP8SUPPORT;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;UNITY_ANDROID_API;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_OSX;UNITY_PRO_LICENSE 23 | prompt 24 | 4 25 | 0169 26 | 27 | 28 | pdbonly 29 | true 30 | Temp\bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 0169 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll 43 | 44 | 45 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | {FDE690F1-626F-FFA0-5754-E83120972A79} Assembly-CSharp-firstpass-vs 55 | 56 | 57 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 3 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Fastest 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | blendWeights: 1 18 | textureQuality: 1 19 | anisotropicTextures: 0 20 | antiAliasing: 0 21 | softParticles: 0 22 | softVegetation: 0 23 | vSyncCount: 0 24 | lodBias: .300000012 25 | maximumLODLevel: 0 26 | particleRaycastBudget: 4 27 | excludedTargetPlatforms: [] 28 | - serializedVersion: 2 29 | name: Fast 30 | pixelLightCount: 0 31 | shadows: 0 32 | shadowResolution: 0 33 | shadowProjection: 1 34 | shadowCascades: 1 35 | shadowDistance: 20 36 | blendWeights: 2 37 | textureQuality: 0 38 | anisotropicTextures: 0 39 | antiAliasing: 0 40 | softParticles: 0 41 | softVegetation: 0 42 | vSyncCount: 0 43 | lodBias: .400000006 44 | maximumLODLevel: 0 45 | particleRaycastBudget: 16 46 | excludedTargetPlatforms: [] 47 | - serializedVersion: 2 48 | name: Simple 49 | pixelLightCount: 1 50 | shadows: 1 51 | shadowResolution: 0 52 | shadowProjection: 1 53 | shadowCascades: 1 54 | shadowDistance: 20 55 | blendWeights: 2 56 | textureQuality: 0 57 | anisotropicTextures: 1 58 | antiAliasing: 0 59 | softParticles: 0 60 | softVegetation: 0 61 | vSyncCount: 0 62 | lodBias: .699999988 63 | maximumLODLevel: 0 64 | particleRaycastBudget: 64 65 | excludedTargetPlatforms: [] 66 | - serializedVersion: 2 67 | name: Good 68 | pixelLightCount: 2 69 | shadows: 2 70 | shadowResolution: 1 71 | shadowProjection: 1 72 | shadowCascades: 2 73 | shadowDistance: 40 74 | blendWeights: 2 75 | textureQuality: 0 76 | anisotropicTextures: 1 77 | antiAliasing: 0 78 | softParticles: 0 79 | softVegetation: 1 80 | vSyncCount: 1 81 | lodBias: 1 82 | maximumLODLevel: 0 83 | particleRaycastBudget: 256 84 | excludedTargetPlatforms: [] 85 | - serializedVersion: 2 86 | name: Beautiful 87 | pixelLightCount: 3 88 | shadows: 2 89 | shadowResolution: 2 90 | shadowProjection: 1 91 | shadowCascades: 2 92 | shadowDistance: 70 93 | blendWeights: 4 94 | textureQuality: 0 95 | anisotropicTextures: 2 96 | antiAliasing: 2 97 | softParticles: 1 98 | softVegetation: 1 99 | vSyncCount: 1 100 | lodBias: 1.5 101 | maximumLODLevel: 0 102 | particleRaycastBudget: 1024 103 | excludedTargetPlatforms: [] 104 | - serializedVersion: 2 105 | name: Fantastic 106 | pixelLightCount: 4 107 | shadows: 2 108 | shadowResolution: 2 109 | shadowProjection: 1 110 | shadowCascades: 4 111 | shadowDistance: 150 112 | blendWeights: 4 113 | textureQuality: 0 114 | anisotropicTextures: 2 115 | antiAliasing: 2 116 | softParticles: 1 117 | softVegetation: 1 118 | vSyncCount: 1 119 | lodBias: 2 120 | maximumLODLevel: 0 121 | particleRaycastBudget: 4096 122 | excludedTargetPlatforms: [] 123 | m_PerPlatformDefaultQuality: 124 | Android: 2 125 | BlackBerry: 2 126 | FlashPlayer: 3 127 | GLES Emulation: 3 128 | PS3: 3 129 | PS4: 3 130 | PSM: 3 131 | PSP2: 3 132 | Samsung TV: 2 133 | Standalone: 3 134 | Tizen: 2 135 | WP8: 3 136 | Web: 3 137 | Windows Store Apps: 3 138 | XBOX360: 3 139 | XboxOne: 3 140 | iPhone: 2 141 | -------------------------------------------------------------------------------- /UnityEclipsePlugin/src/com/nexxmobile/unityextras/GameActivity.java: -------------------------------------------------------------------------------- 1 | package com.nexxmobile.unityextras; 2 | 3 | import java.util.List; 4 | 5 | import android.app.Activity; 6 | import android.app.AlertDialog; 7 | import android.content.ComponentName; 8 | import android.content.Context; 9 | import android.content.DialogInterface; 10 | import android.content.Intent; 11 | import android.content.DialogInterface.OnClickListener; 12 | import android.content.pm.ActivityInfo; 13 | import android.content.pm.PackageManager; 14 | import android.content.pm.ResolveInfo; 15 | import android.net.ConnectivityManager; 16 | import android.net.Uri; 17 | import android.os.Bundle; 18 | import android.widget.Toast; 19 | 20 | import com.unity3d.player.UnityPlayer; 21 | import com.unity3d.player.UnityPlayerActivity; 22 | 23 | public class GameActivity extends UnityPlayerActivity { 24 | private Activity _activity; 25 | 26 | @Override 27 | protected void onCreate(Bundle arg0) { 28 | super.onCreate(arg0); 29 | _activity = UnityPlayer.currentActivity; 30 | } 31 | public void shareOnFacebook() { 32 | if (checkConnection()) { 33 | try { 34 | Intent shareIntent = new Intent(Intent.ACTION_SEND); 35 | shareIntent.setType("text/plain"); 36 | String shareText = "Insert some link to share"; 37 | shareIntent.putExtra(Intent.EXTRA_TEXT, shareText); 38 | String appName = "facebook"; 39 | final PackageManager pm = _activity.getPackageManager(); 40 | final List activityList = pm.queryIntentActivities( 41 | shareIntent, 0); 42 | int len = activityList.size(); 43 | for (int i = 0; i < len; i++) { 44 | final ResolveInfo app = (ResolveInfo) activityList.get(i); 45 | if ((app.activityInfo.name.contains(appName))) { 46 | final ActivityInfo activity = app.activityInfo; 47 | final ComponentName name = new ComponentName( 48 | activity.applicationInfo.packageName, 49 | activity.name); 50 | shareIntent.setComponent(name); 51 | _activity.startActivity(shareIntent); 52 | return; 53 | } 54 | } 55 | } catch (Exception e) { 56 | startActivity(new Intent(Intent.ACTION_VIEW, 57 | Uri.parse("https://www.facebook.com/" 58 | + "Your fb page id"))); 59 | return; 60 | } 61 | startActivity(new Intent(Intent.ACTION_VIEW, 62 | Uri.parse("https://www.facebook.com/" 63 | + "Your fb page id"))); 64 | } 65 | } 66 | public void shareOnTwitter() { 67 | if (checkConnection()) { 68 | Intent shareIntent = new Intent(Intent.ACTION_SEND); 69 | shareIntent.setType("text/plain"); 70 | String shareText = "Awesome tutorial @nexxmobile"; 71 | shareIntent.putExtra(Intent.EXTRA_TEXT, shareText); 72 | String appName = "twitter"; 73 | final PackageManager pm = _activity.getPackageManager(); 74 | final List activityList = pm.queryIntentActivities(shareIntent, 75 | 0); 76 | int len = activityList.size(); 77 | for (int i = 0; i < len; i++) { 78 | final ResolveInfo app = (ResolveInfo) activityList.get(i); 79 | if ((app.activityInfo.name.contains(appName))) { 80 | final ActivityInfo activity = app.activityInfo; 81 | final ComponentName name = new ComponentName( 82 | activity.applicationInfo.packageName, activity.name); 83 | shareIntent.setComponent(name); 84 | _activity.startActivity(shareIntent); 85 | return; 86 | } 87 | } 88 | startActivity(new Intent(Intent.ACTION_VIEW, 89 | Uri.parse("https://www.twitter.com/" + "nexxmobile"))); 90 | } else { 91 | makeToast("No connection"); 92 | } 93 | } 94 | public void makeToast(final String message) { 95 | runOnUiThread(new Runnable() { 96 | @Override 97 | public void run() { 98 | Toast.makeText(_activity, message, Toast.LENGTH_SHORT).show(); 99 | } 100 | }); 101 | 102 | } 103 | public void openShareIntent(final String message) 104 | { 105 | Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); 106 | sharingIntent.setType("text/plain"); 107 | sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here"); 108 | sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, message); 109 | _activity.startActivity(sharingIntent); 110 | } 111 | public void alert(final String message) { 112 | runOnUiThread(new Runnable() { 113 | @Override 114 | public void run() { 115 | AlertDialog.Builder bld = new AlertDialog.Builder(_activity); 116 | bld.setMessage(message); 117 | bld.setNeutralButton("Ok", new OnClickListener() { 118 | @Override 119 | public void onClick(DialogInterface dialog, int which) { 120 | 121 | } 122 | }); 123 | bld.create().show(); 124 | } 125 | }); 126 | 127 | } 128 | private Boolean checkConnection() { 129 | ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); 130 | if (cm.getActiveNetworkInfo() != null) { 131 | return true; 132 | } 133 | return false; 134 | } 135 | } 136 | -------------------------------------------------------------------------------- /UnityProject/Assets/Test.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | SceneSettings: 5 | m_ObjectHideFlags: 0 6 | m_PVSData: 7 | m_PVSObjectsArray: [] 8 | m_PVSPortalsArray: [] 9 | m_OcclusionBakeSettings: 10 | smallestOccluder: 5 11 | smallestHole: .25 12 | backfaceThreshold: 100 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_Fog: 0 16 | m_FogColor: {r: .5, g: .5, b: .5, a: 1} 17 | m_FogMode: 3 18 | m_FogDensity: .00999999978 19 | m_LinearFogStart: 0 20 | m_LinearFogEnd: 300 21 | m_AmbientLight: {r: .200000003, g: .200000003, b: .200000003, a: 1} 22 | m_SkyboxMaterial: {fileID: 0} 23 | m_HaloStrength: .5 24 | m_FlareStrength: 1 25 | m_FlareFadeSpeed: 3 26 | m_HaloTexture: {fileID: 0} 27 | m_SpotCookie: {fileID: 0} 28 | m_ObjectHideFlags: 0 29 | --- !u!127 &3 30 | LevelGameManager: 31 | m_ObjectHideFlags: 0 32 | --- !u!157 &4 33 | LightmapSettings: 34 | m_ObjectHideFlags: 0 35 | m_LightProbes: {fileID: 0} 36 | m_Lightmaps: [] 37 | m_LightmapsMode: 1 38 | m_BakedColorSpace: 0 39 | m_UseDualLightmapsInForward: 0 40 | m_LightmapEditorSettings: 41 | m_Resolution: 50 42 | m_LastUsedResolution: 0 43 | m_TextureWidth: 1024 44 | m_TextureHeight: 1024 45 | m_BounceBoost: 1 46 | m_BounceIntensity: 1 47 | m_SkyLightColor: {r: .860000014, g: .930000007, b: 1, a: 1} 48 | m_SkyLightIntensity: 0 49 | m_Quality: 0 50 | m_Bounces: 1 51 | m_FinalGatherRays: 1000 52 | m_FinalGatherContrastThreshold: .0500000007 53 | m_FinalGatherGradientThreshold: 0 54 | m_FinalGatherInterpolationPoints: 15 55 | m_AOAmount: 0 56 | m_AOMaxDistance: .100000001 57 | m_AOContrast: 1 58 | m_LODSurfaceMappingDistance: 1 59 | m_Padding: 0 60 | m_TextureCompression: 0 61 | m_LockAtlas: 0 62 | --- !u!196 &5 63 | NavMeshSettings: 64 | m_ObjectHideFlags: 0 65 | m_BuildSettings: 66 | agentRadius: .5 67 | agentHeight: 2 68 | agentSlope: 45 69 | agentClimb: .400000006 70 | ledgeDropHeight: 0 71 | maxJumpAcrossDistance: 0 72 | accuratePlacement: 0 73 | minRegionArea: 2 74 | widthInaccuracy: 16.666666 75 | heightInaccuracy: 10 76 | m_NavMesh: {fileID: 0} 77 | --- !u!1 &939553844 78 | GameObject: 79 | m_ObjectHideFlags: 0 80 | m_PrefabParentObject: {fileID: 0} 81 | m_PrefabInternal: {fileID: 0} 82 | serializedVersion: 4 83 | m_Component: 84 | - 4: {fileID: 939553849} 85 | - 20: {fileID: 939553848} 86 | - 92: {fileID: 939553847} 87 | - 124: {fileID: 939553846} 88 | - 81: {fileID: 939553845} 89 | - 114: {fileID: 939553850} 90 | m_Layer: 0 91 | m_Name: Main Camera 92 | m_TagString: MainCamera 93 | m_Icon: {fileID: 0} 94 | m_NavMeshLayer: 0 95 | m_StaticEditorFlags: 0 96 | m_IsActive: 1 97 | --- !u!81 &939553845 98 | AudioListener: 99 | m_ObjectHideFlags: 0 100 | m_PrefabParentObject: {fileID: 0} 101 | m_PrefabInternal: {fileID: 0} 102 | m_GameObject: {fileID: 939553844} 103 | m_Enabled: 1 104 | --- !u!124 &939553846 105 | Behaviour: 106 | m_ObjectHideFlags: 0 107 | m_PrefabParentObject: {fileID: 0} 108 | m_PrefabInternal: {fileID: 0} 109 | m_GameObject: {fileID: 939553844} 110 | m_Enabled: 1 111 | --- !u!92 &939553847 112 | Behaviour: 113 | m_ObjectHideFlags: 0 114 | m_PrefabParentObject: {fileID: 0} 115 | m_PrefabInternal: {fileID: 0} 116 | m_GameObject: {fileID: 939553844} 117 | m_Enabled: 1 118 | --- !u!20 &939553848 119 | Camera: 120 | m_ObjectHideFlags: 0 121 | m_PrefabParentObject: {fileID: 0} 122 | m_PrefabInternal: {fileID: 0} 123 | m_GameObject: {fileID: 939553844} 124 | m_Enabled: 1 125 | serializedVersion: 2 126 | m_ClearFlags: 1 127 | m_BackGroundColor: {r: .192156866, g: .301960796, b: .474509805, a: .0196078438} 128 | m_NormalizedViewPortRect: 129 | serializedVersion: 2 130 | x: 0 131 | y: 0 132 | width: 1 133 | height: 1 134 | near clip plane: .300000012 135 | far clip plane: 1000 136 | field of view: 60 137 | orthographic: 0 138 | orthographic size: 5 139 | m_Depth: -1 140 | m_CullingMask: 141 | serializedVersion: 2 142 | m_Bits: 4294967295 143 | m_RenderingPath: -1 144 | m_TargetTexture: {fileID: 0} 145 | m_TargetDisplay: 0 146 | m_HDR: 0 147 | m_OcclusionCulling: 1 148 | m_StereoConvergence: 10 149 | m_StereoSeparation: .0219999999 150 | --- !u!4 &939553849 151 | Transform: 152 | m_ObjectHideFlags: 0 153 | m_PrefabParentObject: {fileID: 0} 154 | m_PrefabInternal: {fileID: 0} 155 | m_GameObject: {fileID: 939553844} 156 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 157 | m_LocalPosition: {x: 0, y: 1, z: -10} 158 | m_LocalScale: {x: 1, y: 1, z: 1} 159 | m_Children: [] 160 | m_Father: {fileID: 0} 161 | m_RootOrder: 0 162 | --- !u!114 &939553850 163 | MonoBehaviour: 164 | m_ObjectHideFlags: 0 165 | m_PrefabParentObject: {fileID: 0} 166 | m_PrefabInternal: {fileID: 0} 167 | m_GameObject: {fileID: 939553844} 168 | m_Enabled: 1 169 | m_EditorHideFlags: 0 170 | m_Script: {fileID: 11500000, guid: 9e93f80e418544b56bc314186d2b7c92, type: 3} 171 | m_Name: 172 | m_EditorClassIdentifier: 173 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | m_Axes: 7 | - serializedVersion: 3 8 | m_Name: Horizontal 9 | descriptiveName: 10 | descriptiveNegativeName: 11 | negativeButton: left 12 | positiveButton: right 13 | altNegativeButton: a 14 | altPositiveButton: d 15 | gravity: 3 16 | dead: .00100000005 17 | sensitivity: 3 18 | snap: 1 19 | invert: 0 20 | type: 0 21 | axis: 0 22 | joyNum: 0 23 | - serializedVersion: 3 24 | m_Name: Vertical 25 | descriptiveName: 26 | descriptiveNegativeName: 27 | negativeButton: down 28 | positiveButton: up 29 | altNegativeButton: s 30 | altPositiveButton: w 31 | gravity: 3 32 | dead: .00100000005 33 | sensitivity: 3 34 | snap: 1 35 | invert: 0 36 | type: 0 37 | axis: 0 38 | joyNum: 0 39 | - serializedVersion: 3 40 | m_Name: Fire1 41 | descriptiveName: 42 | descriptiveNegativeName: 43 | negativeButton: 44 | positiveButton: left ctrl 45 | altNegativeButton: 46 | altPositiveButton: mouse 0 47 | gravity: 1000 48 | dead: .00100000005 49 | sensitivity: 1000 50 | snap: 0 51 | invert: 0 52 | type: 0 53 | axis: 0 54 | joyNum: 0 55 | - serializedVersion: 3 56 | m_Name: Fire2 57 | descriptiveName: 58 | descriptiveNegativeName: 59 | negativeButton: 60 | positiveButton: left alt 61 | altNegativeButton: 62 | altPositiveButton: mouse 1 63 | gravity: 1000 64 | dead: .00100000005 65 | sensitivity: 1000 66 | snap: 0 67 | invert: 0 68 | type: 0 69 | axis: 0 70 | joyNum: 0 71 | - serializedVersion: 3 72 | m_Name: Fire3 73 | descriptiveName: 74 | descriptiveNegativeName: 75 | negativeButton: 76 | positiveButton: left cmd 77 | altNegativeButton: 78 | altPositiveButton: mouse 2 79 | gravity: 1000 80 | dead: .00100000005 81 | sensitivity: 1000 82 | snap: 0 83 | invert: 0 84 | type: 0 85 | axis: 0 86 | joyNum: 0 87 | - serializedVersion: 3 88 | m_Name: Jump 89 | descriptiveName: 90 | descriptiveNegativeName: 91 | negativeButton: 92 | positiveButton: space 93 | altNegativeButton: 94 | altPositiveButton: 95 | gravity: 1000 96 | dead: .00100000005 97 | sensitivity: 1000 98 | snap: 0 99 | invert: 0 100 | type: 0 101 | axis: 0 102 | joyNum: 0 103 | - serializedVersion: 3 104 | m_Name: Mouse X 105 | descriptiveName: 106 | descriptiveNegativeName: 107 | negativeButton: 108 | positiveButton: 109 | altNegativeButton: 110 | altPositiveButton: 111 | gravity: 0 112 | dead: 0 113 | sensitivity: .100000001 114 | snap: 0 115 | invert: 0 116 | type: 1 117 | axis: 0 118 | joyNum: 0 119 | - serializedVersion: 3 120 | m_Name: Mouse Y 121 | descriptiveName: 122 | descriptiveNegativeName: 123 | negativeButton: 124 | positiveButton: 125 | altNegativeButton: 126 | altPositiveButton: 127 | gravity: 0 128 | dead: 0 129 | sensitivity: .100000001 130 | snap: 0 131 | invert: 0 132 | type: 1 133 | axis: 1 134 | joyNum: 0 135 | - serializedVersion: 3 136 | m_Name: Mouse ScrollWheel 137 | descriptiveName: 138 | descriptiveNegativeName: 139 | negativeButton: 140 | positiveButton: 141 | altNegativeButton: 142 | altPositiveButton: 143 | gravity: 0 144 | dead: 0 145 | sensitivity: .100000001 146 | snap: 0 147 | invert: 0 148 | type: 1 149 | axis: 2 150 | joyNum: 0 151 | - serializedVersion: 3 152 | m_Name: Horizontal 153 | descriptiveName: 154 | descriptiveNegativeName: 155 | negativeButton: 156 | positiveButton: 157 | altNegativeButton: 158 | altPositiveButton: 159 | gravity: 0 160 | dead: .189999998 161 | sensitivity: 1 162 | snap: 0 163 | invert: 0 164 | type: 2 165 | axis: 0 166 | joyNum: 0 167 | - serializedVersion: 3 168 | m_Name: Vertical 169 | descriptiveName: 170 | descriptiveNegativeName: 171 | negativeButton: 172 | positiveButton: 173 | altNegativeButton: 174 | altPositiveButton: 175 | gravity: 0 176 | dead: .189999998 177 | sensitivity: 1 178 | snap: 0 179 | invert: 1 180 | type: 2 181 | axis: 1 182 | joyNum: 0 183 | - serializedVersion: 3 184 | m_Name: Fire1 185 | descriptiveName: 186 | descriptiveNegativeName: 187 | negativeButton: 188 | positiveButton: joystick button 0 189 | altNegativeButton: 190 | altPositiveButton: 191 | gravity: 1000 192 | dead: .00100000005 193 | sensitivity: 1000 194 | snap: 0 195 | invert: 0 196 | type: 0 197 | axis: 0 198 | joyNum: 0 199 | - serializedVersion: 3 200 | m_Name: Fire2 201 | descriptiveName: 202 | descriptiveNegativeName: 203 | negativeButton: 204 | positiveButton: joystick button 1 205 | altNegativeButton: 206 | altPositiveButton: 207 | gravity: 1000 208 | dead: .00100000005 209 | sensitivity: 1000 210 | snap: 0 211 | invert: 0 212 | type: 0 213 | axis: 0 214 | joyNum: 0 215 | - serializedVersion: 3 216 | m_Name: Fire3 217 | descriptiveName: 218 | descriptiveNegativeName: 219 | negativeButton: 220 | positiveButton: joystick button 2 221 | altNegativeButton: 222 | altPositiveButton: 223 | gravity: 1000 224 | dead: .00100000005 225 | sensitivity: 1000 226 | snap: 0 227 | invert: 0 228 | type: 0 229 | axis: 0 230 | joyNum: 0 231 | - serializedVersion: 3 232 | m_Name: Jump 233 | descriptiveName: 234 | descriptiveNegativeName: 235 | negativeButton: 236 | positiveButton: joystick button 3 237 | altNegativeButton: 238 | altPositiveButton: 239 | gravity: 1000 240 | dead: .00100000005 241 | sensitivity: 1000 242 | snap: 0 243 | invert: 0 244 | type: 0 245 | axis: 0 246 | joyNum: 0 247 | -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | AndroidProfiler: 0 8 | defaultScreenOrientation: 4 9 | targetDevice: 2 10 | targetGlesGraphics: 1 11 | targetResolution: 0 12 | accelerometerFrequency: 60 13 | companyName: DefaultCompany 14 | productName: UnityProject 15 | defaultCursor: {fileID: 0} 16 | cursorHotspot: {x: 0, y: 0} 17 | defaultScreenWidth: 1024 18 | defaultScreenHeight: 768 19 | defaultScreenWidthWeb: 960 20 | defaultScreenHeightWeb: 600 21 | m_RenderingPath: 1 22 | m_MobileRenderingPath: 1 23 | m_ActiveColorSpace: 0 24 | m_MTRendering: 1 25 | m_MobileMTRendering: 0 26 | m_UseDX11: 1 27 | m_Stereoscopic3D: 0 28 | iosShowActivityIndicatorOnLoading: -1 29 | androidShowActivityIndicatorOnLoading: -1 30 | displayResolutionDialog: 1 31 | allowedAutorotateToPortrait: 1 32 | allowedAutorotateToPortraitUpsideDown: 1 33 | allowedAutorotateToLandscapeRight: 1 34 | allowedAutorotateToLandscapeLeft: 1 35 | useOSAutorotation: 1 36 | use32BitDisplayBuffer: 1 37 | use24BitDepthBuffer: 1 38 | defaultIsFullScreen: 1 39 | defaultIsNativeResolution: 1 40 | runInBackground: 0 41 | captureSingleScreen: 0 42 | Override IPod Music: 0 43 | Prepare IOS For Recording: 0 44 | enableHWStatistics: 1 45 | usePlayerLog: 1 46 | stripPhysics: 0 47 | forceSingleInstance: 0 48 | resizableWindow: 0 49 | useMacAppStoreValidation: 0 50 | gpuSkinning: 0 51 | xboxPIXTextureCapture: 0 52 | xboxEnableAvatar: 0 53 | xboxEnableKinect: 0 54 | xboxEnableKinectAutoTracking: 0 55 | xboxEnableFitness: 0 56 | macFullscreenMode: 2 57 | xboxSpeechDB: 0 58 | xboxEnableHeadOrientation: 0 59 | xboxEnableGuest: 0 60 | videoMemoryForVertexBuffers: 0 61 | m_SupportedAspectRatios: 62 | 4:3: 1 63 | 5:4: 1 64 | 16:10: 1 65 | 16:9: 1 66 | Others: 1 67 | iPhoneBundleIdentifier: com.nexxmobile.unityextras 68 | metroEnableIndependentInputSource: 0 69 | metroEnableLowLatencyPresentationAPI: 0 70 | productGUID: 8703480ac9cf8445f9c2e2658f7fe141 71 | iPhoneBundleVersion: 1.0 72 | AndroidBundleVersionCode: 1 73 | AndroidMinSdkVersion: 9 74 | AndroidPreferredInstallLocation: 1 75 | aotOptions: 76 | apiCompatibilityLevel: 2 77 | iPhoneStrippingLevel: 0 78 | iPhoneScriptCallOptimization: 0 79 | ForceInternetPermission: 0 80 | ForceSDCardPermission: 0 81 | CreateWallpaper: 0 82 | APKExpansionFiles: 0 83 | StripUnusedMeshComponents: 0 84 | iPhoneSdkVersion: 988 85 | iPhoneTargetOSVersion: 16 86 | uIPrerenderedIcon: 0 87 | uIRequiresPersistentWiFi: 0 88 | uIStatusBarHidden: 1 89 | uIExitOnSuspend: 0 90 | uIStatusBarStyle: 0 91 | iPhoneSplashScreen: {fileID: 0} 92 | iPhoneHighResSplashScreen: {fileID: 0} 93 | iPhoneTallHighResSplashScreen: {fileID: 0} 94 | iPadPortraitSplashScreen: {fileID: 0} 95 | iPadHighResPortraitSplashScreen: {fileID: 0} 96 | iPadLandscapeSplashScreen: {fileID: 0} 97 | iPadHighResLandscapeSplashScreen: {fileID: 0} 98 | AndroidTargetDevice: 0 99 | AndroidSplashScreenScale: 0 100 | AndroidKeystoreName: 101 | AndroidKeyaliasName: 102 | resolutionDialogBanner: {fileID: 0} 103 | m_BuildTargetIcons: 104 | - m_BuildTarget: 105 | m_Icons: 106 | - m_Icon: {fileID: 0} 107 | m_Size: 128 108 | m_BuildTargetBatching: [] 109 | webPlayerTemplate: APPLICATION:Default 110 | m_TemplateCustomTags: {} 111 | XboxTitleId: 112 | XboxImageXexPath: 113 | XboxSpaPath: 114 | XboxGenerateSpa: 0 115 | XboxDeployKinectResources: 0 116 | XboxSplashScreen: {fileID: 0} 117 | xboxEnableSpeech: 0 118 | xboxAdditionalTitleMemorySize: 0 119 | xboxDeployKinectHeadOrientation: 0 120 | xboxDeployKinectHeadPosition: 0 121 | ps3TitleConfigPath: 122 | ps3DLCConfigPath: 123 | ps3ThumbnailPath: 124 | ps3BackgroundPath: 125 | ps3SoundPath: 126 | ps3TrophyCommId: 127 | ps3NpCommunicationPassphrase: 128 | ps3TrophyPackagePath: 129 | ps3BootCheckMaxSaveGameSizeKB: 128 130 | ps3TrophyCommSig: 131 | ps3SaveGameSlots: 1 132 | ps3TrialMode: 0 133 | psp2Splashimage: {fileID: 0} 134 | psp2LiveAreaGate: {fileID: 0} 135 | psp2LiveAreaBackround: {fileID: 0} 136 | psp2NPTrophyPackPath: 137 | psp2NPCommsID: 138 | psp2NPCommsPassphrase: 139 | psp2NPCommsSig: 140 | psp2ParamSfxPath: 141 | psp2PackagePassword: 142 | psp2DLCConfigPath: 143 | psp2ThumbnailPath: 144 | psp2BackgroundPath: 145 | psp2SoundPath: 146 | psp2TrophyCommId: 147 | psp2TrophyPackagePath: 148 | psp2PackagedResourcesPath: 149 | flashStrippingLevel: 2 150 | spritePackerPolicy: 151 | scriptingDefineSymbols: {} 152 | metroPackageName: UnityProject 153 | metroPackageLogo: 154 | metroPackageLogo140: 155 | metroPackageLogo180: 156 | metroPackageVersion: 157 | metroCertificatePath: 158 | metroCertificatePassword: 159 | metroCertificateSubject: 160 | metroCertificateIssuer: 161 | metroCertificateNotAfter: 0000000000000000 162 | metroApplicationDescription: UnityProject 163 | metroTileLogo80: 164 | metroTileLogo: 165 | metroTileLogo140: 166 | metroTileLogo180: 167 | metroTileWideLogo80: 168 | metroTileWideLogo: 169 | metroTileWideLogo140: 170 | metroTileWideLogo180: 171 | metroTileSmallLogo80: 172 | metroTileSmallLogo: 173 | metroTileSmallLogo140: 174 | metroTileSmallLogo180: 175 | metroSmallTile80: 176 | metroSmallTile: 177 | metroSmallTile140: 178 | metroSmallTile180: 179 | metroLargeTile80: 180 | metroLargeTile: 181 | metroLargeTile140: 182 | metroLargeTile180: 183 | metroTileShortName: 184 | metroCommandLineArgsFile: 185 | metroTileShowName: 0 186 | metroMediumTileShowName: 0 187 | metroLargeTileShowName: 0 188 | metroWideTileShowName: 0 189 | metroDefaultTileSize: 1 190 | metroTileForegroundText: 1 191 | metroTileBackgroundColor: {r: 0, g: 0, b: 0, a: 1} 192 | metroSplashScreenImage: 193 | metroSplashScreenImage140: 194 | metroSplashScreenImage180: 195 | metroSplashScreenBackgroundColor: {r: 0, g: 0, b: 0, a: 1} 196 | metroSplashScreenUseBackgroundColor: 0 197 | metroCapabilities: {} 198 | metroUnprocessedPlugins: [] 199 | metroCompilationOverrides: 1 200 | blackberryDeviceAddress: 201 | blackberryDevicePassword: 202 | blackberryTokenPath: 203 | blackberryTokenExires: 204 | blackberryTokenAuthor: 205 | blackberryTokenAuthorId: 206 | blackberryAuthorId: 207 | blackberryCskPassword: 208 | blackberrySaveLogPath: 209 | blackberryAuthorIdOveride: 0 210 | blackberrySharedPermissions: 0 211 | blackberryCameraPermissions: 0 212 | blackberryGPSPermissions: 0 213 | blackberryDeviceIDPermissions: 0 214 | blackberryMicrophonePermissions: 0 215 | blackberryGamepadSupport: 0 216 | blackberryBuildId: 0 217 | blackberryLandscapeSplashScreen: {fileID: 0} 218 | blackberryPortraitSplashScreen: {fileID: 0} 219 | blackberrySquareSplashScreen: {fileID: 0} 220 | tizenProductDescription: 221 | tizenProductURL: 222 | tizenCertificatePath: 223 | tizenCertificatePassword: 224 | tizenGPSPermissions: 0 225 | tizenMicrophonePermissions: 0 226 | stvDeviceAddress: 227 | firstStreamedLevelWithResources: 0 228 | unityRebuildLibraryVersion: 9 229 | unityForwardCompatibleVersion: 39 230 | unityStandardAssetsVersion: 0 231 | --------------------------------------------------------------------------------