This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Threading; | |
| using Cysharp.Threading.Tasks; | |
| namespace FiniteStateMachine.UniTaskStateMachine | |
| { | |
| public class UniTaskStateMachine | |
| { | |
| private AsyncState currentState; | |
| private AsyncState nextState; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns" | |
| xmlns:unity="urn:schemas-jetbrains-com:member-reordering-patterns-unity"> | |
| <!-- Pattern to match classes used by Unity that contain serialised fields and event | |
| function methods. Based on the standard "Default Pattern", this will also order | |
| event functions before normal methods, and does not reorder serialised fields, | |
| as this order is reflected in the Unity editor's Inspector --> | |
| <TypePattern DisplayName="Unity classes" Priority="100"> | |
| <TypePattern.Match> | |
| <unity:SerializableClass /> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # This .gitignore file should be placed at the root of your Unity project directory | |
| # | |
| # This is fork from https://github.com/github/gitignore | |
| # | |
| /[Ll]ibrary/ | |
| /[Tt]emp/ | |
| /[Oo]bj/ | |
| /[Ll]ogs/ | |
| /[Mm]emoryCaptures/ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using UnityEngine; | |
| public class Portrait2DCameraSizeFitter : MonoBehaviour | |
| { | |
| [SerializeField] private Vector2 _baseScreenSize; | |
| [SerializeField] private Camera _camera; | |
| [SerializeField] private float _baseOrthographicSize; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #if UNITY_ANDROID | |
| var class_AppLovinSdk = new AndroidJavaClass("com.applovin.sdk.AppLovinSdk"); | |
| var class_UnityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); | |
| var object_currentActivity = class_UnityPlayer.GetStatic<AndroidJavaObject>("currentActivity"); | |
| class_AppLovinSdk.CallStatic("initializeSdk", object_currentActivity); | |
| #endif | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | sed -i '' 's/ProvisioningStyle = Automatic;/ProvisioningStyle = Manual;/' build-ios/Unity-iPhone.xcodeproj/project.pbxproj | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | rm -rf /Applications/IntelliJ IDEA 14.app | |
| rm -rf ~/Library/Preferences/com.jetbrains.intellij.plist | |
| rm -rf ~/Library/Application\ Support/IntelliJIdea14 | |
| rm -rf ~/Library/Caches/IntelliJIdea14 | |
| rm -rf ~/Library/Logs/IntelliJIdea14 | |
| rm -rf ~/Library/Preferences/IntelliJIdea14 |