├── .gitignore ├── Assets ├── Plugins.meta ├── Plugins │ ├── UniRx.meta │ ├── UniRx │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── Sample01_ObservableWWW.cs │ │ │ ├── Sample01_ObservableWWW.cs.meta │ │ │ ├── Sample02_ObservableTriggers.cs │ │ │ ├── Sample02_ObservableTriggers.cs.meta │ │ │ ├── Sample03_GameObjectAsObservable.cs │ │ │ ├── Sample03_GameObjectAsObservable.cs.meta │ │ │ ├── Sample04_ConvertFromUnityCallback.cs │ │ │ ├── Sample04_ConvertFromUnityCallback.cs.meta │ │ │ ├── Sample05_ConvertFromCoroutine.cs │ │ │ ├── Sample05_ConvertFromCoroutine.cs.meta │ │ │ ├── Sample06_ConvertToCoroutine.cs │ │ │ ├── Sample06_ConvertToCoroutine.cs.meta │ │ │ ├── Sample07_OrchestratIEnumerator.cs │ │ │ ├── Sample07_OrchestratIEnumerator.cs.meta │ │ │ ├── Sample08_DetectDoubleClick.cs │ │ │ ├── Sample08_DetectDoubleClick.cs.meta │ │ │ ├── Sample09_EventHandling.cs │ │ │ ├── Sample09_EventHandling.cs.meta │ │ │ ├── Sample10_MainThreadDispatcher.cs │ │ │ ├── Sample10_MainThreadDispatcher.cs.meta │ │ │ ├── Sample11_Logger.cs │ │ │ ├── Sample11_Logger.cs.meta │ │ │ ├── Sample12Scene.unity │ │ │ ├── Sample12Scene.unity.meta │ │ │ ├── Sample12_ReactiveProperty.cs │ │ │ ├── Sample12_ReactiveProperty.cs.meta │ │ │ ├── Sample13Scene.unity │ │ │ ├── Sample13Scene.unity.meta │ │ │ ├── Sample13_ToDoApp.cs │ │ │ ├── Sample13_ToDoApp.cs.meta │ │ │ ├── Sample13_ToDoItem.prefab │ │ │ ├── Sample13_ToDoItem.prefab.meta │ │ │ ├── UniRx.Examples.asmdef │ │ │ └── UniRx.Examples.asmdef.meta │ │ ├── ReadMe.txt │ │ ├── ReadMe.txt.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Asynchronous.meta │ │ │ ├── Asynchronous │ │ │ ├── WebRequestExtensions.cs │ │ │ └── WebRequestExtensions.cs.meta │ │ │ ├── Disposables.meta │ │ │ ├── Disposables │ │ │ ├── BooleanDisposable.cs │ │ │ ├── BooleanDisposable.cs.meta │ │ │ ├── CancellationDisposable.cs │ │ │ ├── CancellationDisposable.cs.meta │ │ │ ├── CompositeDisposable.cs │ │ │ ├── CompositeDisposable.cs.meta │ │ │ ├── DictionaryDisposable.cs │ │ │ ├── DictionaryDisposable.cs.meta │ │ │ ├── Disposable.cs │ │ │ ├── Disposable.cs.meta │ │ │ ├── DisposableExtensions.cs │ │ │ ├── DisposableExtensions.cs.meta │ │ │ ├── ICancelable.cs │ │ │ ├── ICancelable.cs.meta │ │ │ ├── MultipleAssignmentDisposable.cs │ │ │ ├── MultipleAssignmentDisposable.cs.meta │ │ │ ├── RefCountDisposable.cs │ │ │ ├── RefCountDisposable.cs.meta │ │ │ ├── ScheduledDisposable.cs │ │ │ ├── ScheduledDisposable.cs.meta │ │ │ ├── SerialDisposable.cs │ │ │ ├── SerialDisposable.cs.meta │ │ │ ├── SingleAssignmentDisposable.cs │ │ │ ├── SingleAssignmentDisposable.cs.meta │ │ │ ├── StableCompositeDisposable.cs │ │ │ └── StableCompositeDisposable.cs.meta │ │ │ ├── EventPattern.cs │ │ │ ├── EventPattern.cs.meta │ │ │ ├── InternalUtil.meta │ │ │ ├── InternalUtil │ │ │ ├── AscynLock.cs │ │ │ ├── AscynLock.cs.meta │ │ │ ├── CancellableTaskCompletionSource.cs │ │ │ ├── CancellableTaskCompletionSource.cs.meta │ │ │ ├── ExceptionExtensions.cs │ │ │ ├── ExceptionExtensions.cs.meta │ │ │ ├── ImmutableList.cs │ │ │ ├── ImmutableList.cs.meta │ │ │ ├── ListObserver.cs │ │ │ ├── ListObserver.cs.meta │ │ │ ├── MicroCoroutine.cs │ │ │ ├── MicroCoroutine.cs.meta │ │ │ ├── PriorityQueue.cs │ │ │ ├── PriorityQueue.cs.meta │ │ │ ├── PromiseHelper.cs │ │ │ ├── PromiseHelper.cs.meta │ │ │ ├── ScheduledItem.cs │ │ │ ├── ScheduledItem.cs.meta │ │ │ ├── ThreadSafeQueueWorker.cs │ │ │ ├── ThreadSafeQueueWorker.cs.meta │ │ │ ├── UnityEqualityComparer.cs │ │ │ └── UnityEqualityComparer.cs.meta │ │ │ ├── Notification.cs │ │ │ ├── Notification.cs.meta │ │ │ ├── Notifiers.meta │ │ │ ├── Notifiers │ │ │ ├── BooleanNotifier.cs │ │ │ ├── BooleanNotifier.cs.meta │ │ │ ├── CountNotifier.cs │ │ │ ├── CountNotifier.cs.meta │ │ │ ├── MessageBroker.cs │ │ │ ├── MessageBroker.cs.meta │ │ │ ├── ScheduledNotifier.cs │ │ │ └── ScheduledNotifier.cs.meta │ │ │ ├── Observable.Aggregate.cs │ │ │ ├── Observable.Aggregate.cs.meta │ │ │ ├── Observable.Awaiter.cs │ │ │ ├── Observable.Awaiter.cs.meta │ │ │ ├── Observable.Binding.cs │ │ │ ├── Observable.Binding.cs.meta │ │ │ ├── Observable.Blocking.cs │ │ │ ├── Observable.Blocking.cs.meta │ │ │ ├── Observable.Concatenate.cs │ │ │ ├── Observable.Concatenate.cs.meta │ │ │ ├── Observable.Concurrency.cs │ │ │ ├── Observable.Concurrency.cs.meta │ │ │ ├── Observable.Conversions.cs │ │ │ ├── Observable.Conversions.cs.meta │ │ │ ├── Observable.Creation.cs │ │ │ ├── Observable.Creation.cs.meta │ │ │ ├── Observable.ErrorHandling.cs │ │ │ ├── Observable.ErrorHandling.cs.meta │ │ │ ├── Observable.Events.cs │ │ │ ├── Observable.Events.cs.meta │ │ │ ├── Observable.FromAsync.cs │ │ │ ├── Observable.FromAsync.cs.meta │ │ │ ├── Observable.Joins.cs │ │ │ ├── Observable.Joins.cs.meta │ │ │ ├── Observable.Paging.cs │ │ │ ├── Observable.Paging.cs.meta │ │ │ ├── Observable.Time.cs │ │ │ ├── Observable.Time.cs.meta │ │ │ ├── Observable.cs │ │ │ ├── Observable.cs.meta │ │ │ ├── Observer.cs │ │ │ ├── Observer.cs.meta │ │ │ ├── Operators.meta │ │ │ ├── Operators │ │ │ ├── Aggregate.cs │ │ │ ├── Aggregate.cs.meta │ │ │ ├── Amb.cs │ │ │ ├── Amb.cs.meta │ │ │ ├── AsObservable.cs │ │ │ ├── AsObservable.cs.meta │ │ │ ├── AsSingleUnitObservable.cs │ │ │ ├── AsSingleUnitObservable.cs.meta │ │ │ ├── AsUnitObservable.cs │ │ │ ├── AsUnitObservable.cs.meta │ │ │ ├── Buffer.cs │ │ │ ├── Buffer.cs.meta │ │ │ ├── Cast.cs │ │ │ ├── Cast.cs.meta │ │ │ ├── Catch.cs │ │ │ ├── Catch.cs.meta │ │ │ ├── CombineLatest.cs │ │ │ ├── CombineLatest.cs.meta │ │ │ ├── Concat.cs │ │ │ ├── Concat.cs.meta │ │ │ ├── ContinueWith.cs │ │ │ ├── ContinueWith.cs.meta │ │ │ ├── Create.cs │ │ │ ├── Create.cs.meta │ │ │ ├── DefaultIfEmpty.cs │ │ │ ├── DefaultIfEmpty.cs.meta │ │ │ ├── Defer.cs │ │ │ ├── Defer.cs.meta │ │ │ ├── Delay.cs │ │ │ ├── Delay.cs.meta │ │ │ ├── DelaySubscription.cs │ │ │ ├── DelaySubscription.cs.meta │ │ │ ├── Dematerialize.cs │ │ │ ├── Dematerialize.cs.meta │ │ │ ├── Distinct.cs │ │ │ ├── Distinct.cs.meta │ │ │ ├── DistinctUntilChanged.cs │ │ │ ├── DistinctUntilChanged.cs.meta │ │ │ ├── Do.cs │ │ │ ├── Do.cs.meta │ │ │ ├── Empty.cs │ │ │ ├── Empty.cs.meta │ │ │ ├── Finally.cs │ │ │ ├── Finally.cs.meta │ │ │ ├── First.cs │ │ │ ├── First.cs.meta │ │ │ ├── ForEachAsync.cs │ │ │ ├── ForEachAsync.cs.meta │ │ │ ├── FromEvent.cs │ │ │ ├── FromEvent.cs.meta │ │ │ ├── GroupBy.cs │ │ │ ├── GroupBy.cs.meta │ │ │ ├── IgnoreElements.cs │ │ │ ├── IgnoreElements.cs.meta │ │ │ ├── Last.cs │ │ │ ├── Last.cs.meta │ │ │ ├── Materialize.cs │ │ │ ├── Materialize.cs.meta │ │ │ ├── Merge.cs │ │ │ ├── Merge.cs.meta │ │ │ ├── Never.cs │ │ │ ├── Never.cs.meta │ │ │ ├── ObserveOn.cs │ │ │ ├── ObserveOn.cs.meta │ │ │ ├── OfType.cs │ │ │ ├── OfType.cs.meta │ │ │ ├── OperatorObservableBase.cs │ │ │ ├── OperatorObservableBase.cs.meta │ │ │ ├── OperatorObserverBase.cs │ │ │ ├── OperatorObserverBase.cs.meta │ │ │ ├── PairWise.cs │ │ │ ├── PairWise.cs.meta │ │ │ ├── Range.cs │ │ │ ├── Range.cs.meta │ │ │ ├── RefCount.cs │ │ │ ├── RefCount.cs.meta │ │ │ ├── Repeat.cs │ │ │ ├── Repeat.cs.meta │ │ │ ├── RepeatSafe.cs │ │ │ ├── RepeatSafe.cs.meta │ │ │ ├── Return.cs │ │ │ ├── Return.cs.meta │ │ │ ├── Sample.cs │ │ │ ├── Sample.cs.meta │ │ │ ├── Scan.cs │ │ │ ├── Scan.cs.meta │ │ │ ├── Select.cs │ │ │ ├── Select.cs.meta │ │ │ ├── SelectMany.cs │ │ │ ├── SelectMany.cs.meta │ │ │ ├── SelectWhere.cs │ │ │ ├── SelectWhere.cs.meta │ │ │ ├── Single.cs │ │ │ ├── Single.cs.meta │ │ │ ├── Skip.cs │ │ │ ├── Skip.cs.meta │ │ │ ├── SkipUntil.cs │ │ │ ├── SkipUntil.cs.meta │ │ │ ├── SkipWhile.cs │ │ │ ├── SkipWhile.cs.meta │ │ │ ├── Start.cs │ │ │ ├── Start.cs.meta │ │ │ ├── StartWith.cs │ │ │ ├── StartWith.cs.meta │ │ │ ├── SubscribeOn.cs │ │ │ ├── SubscribeOn.cs.meta │ │ │ ├── Switch.cs │ │ │ ├── Switch.cs.meta │ │ │ ├── Synchronize.cs │ │ │ ├── Synchronize.cs.meta │ │ │ ├── SynchronizedObserver.cs │ │ │ ├── SynchronizedObserver.cs.meta │ │ │ ├── Take.cs │ │ │ ├── Take.cs.meta │ │ │ ├── TakeLast.cs │ │ │ ├── TakeLast.cs.meta │ │ │ ├── TakeUntil.cs │ │ │ ├── TakeUntil.cs.meta │ │ │ ├── TakeWhile.cs │ │ │ ├── TakeWhile.cs.meta │ │ │ ├── Throttle.cs │ │ │ ├── Throttle.cs.meta │ │ │ ├── ThrottleFirst.cs │ │ │ ├── ThrottleFirst.cs.meta │ │ │ ├── Throw.cs │ │ │ ├── Throw.cs.meta │ │ │ ├── TimeInterval.cs │ │ │ ├── TimeInterval.cs.meta │ │ │ ├── Timeout.cs │ │ │ ├── Timeout.cs.meta │ │ │ ├── Timer.cs │ │ │ ├── Timer.cs.meta │ │ │ ├── Timestamp.cs │ │ │ ├── Timestamp.cs.meta │ │ │ ├── ToArray.cs │ │ │ ├── ToArray.cs.meta │ │ │ ├── ToList.cs │ │ │ ├── ToList.cs.meta │ │ │ ├── ToObservable.cs │ │ │ ├── ToObservable.cs.meta │ │ │ ├── Wait.cs │ │ │ ├── Wait.cs.meta │ │ │ ├── WhenAll.cs │ │ │ ├── WhenAll.cs.meta │ │ │ ├── Where.cs │ │ │ ├── Where.cs.meta │ │ │ ├── WhereSelect.cs │ │ │ ├── WhereSelect.cs.meta │ │ │ ├── WithLatestFrom.cs │ │ │ ├── WithLatestFrom.cs.meta │ │ │ ├── Zip.cs │ │ │ ├── Zip.cs.meta │ │ │ ├── ZipLatest.cs │ │ │ └── ZipLatest.cs.meta │ │ │ ├── Pair.cs │ │ │ ├── Pair.cs.meta │ │ │ ├── Schedulers.meta │ │ │ ├── Schedulers │ │ │ ├── CurrentThreadScheduler.cs │ │ │ ├── CurrentThreadScheduler.cs.meta │ │ │ ├── IScheduler.cs │ │ │ ├── IScheduler.cs.meta │ │ │ ├── ImmediateScheduler.cs │ │ │ ├── ImmediateScheduler.cs.meta │ │ │ ├── Scheduler.cs │ │ │ ├── Scheduler.cs.meta │ │ │ ├── ThreadPoolScheduler.cs │ │ │ └── ThreadPoolScheduler.cs.meta │ │ │ ├── Subjects.meta │ │ │ ├── Subjects │ │ │ ├── AsyncSubject.cs │ │ │ ├── AsyncSubject.cs.meta │ │ │ ├── BehaviorSubject.cs │ │ │ ├── BehaviorSubject.cs.meta │ │ │ ├── ConnectableObservable.cs │ │ │ ├── ConnectableObservable.cs.meta │ │ │ ├── ISubject.cs │ │ │ ├── ISubject.cs.meta │ │ │ ├── ReplaySubject.cs │ │ │ ├── ReplaySubject.cs.meta │ │ │ ├── Subject.cs │ │ │ ├── Subject.cs.meta │ │ │ ├── SubjectExtensions.cs │ │ │ └── SubjectExtensions.cs.meta │ │ │ ├── System.meta │ │ │ ├── System │ │ │ ├── IObservable.cs │ │ │ ├── IObservable.cs.meta │ │ │ ├── IObserver.cs │ │ │ ├── IObserver.cs.meta │ │ │ ├── IOptimizedObservable.cs │ │ │ ├── IOptimizedObservable.cs.meta │ │ │ ├── IProgress.cs │ │ │ ├── IProgress.cs.meta │ │ │ ├── Tuple.cs │ │ │ ├── Tuple.cs.meta │ │ │ ├── Unit.cs │ │ │ └── Unit.cs.meta │ │ │ ├── Tasks.meta │ │ │ ├── Tasks │ │ │ ├── TaskObservableExtensions.cs │ │ │ └── TaskObservableExtensions.cs.meta │ │ │ ├── TimeInterval.cs │ │ │ ├── TimeInterval.cs.meta │ │ │ ├── Timestamped.cs │ │ │ ├── Timestamped.cs.meta │ │ │ ├── UniRx.asmdef │ │ │ ├── UniRx.asmdef.meta │ │ │ ├── UnityEngineBridge.meta │ │ │ ├── UnityEngineBridge │ │ │ ├── AsyncOperationExtensions.cs │ │ │ ├── AsyncOperationExtensions.cs.meta │ │ │ ├── CancellationToken.cs │ │ │ ├── CancellationToken.cs.meta │ │ │ ├── CoroutineAsyncBridge.cs │ │ │ ├── CoroutineAsyncBridge.cs.meta │ │ │ ├── Diagnostics.meta │ │ │ ├── Diagnostics │ │ │ │ ├── LogEntry.cs │ │ │ │ ├── LogEntry.cs.meta │ │ │ │ ├── LogEntryExtensions.cs │ │ │ │ ├── LogEntryExtensions.cs.meta │ │ │ │ ├── Logger.cs │ │ │ │ ├── Logger.cs.meta │ │ │ │ ├── ObservableDebugExtensions.cs │ │ │ │ ├── ObservableDebugExtensions.cs.meta │ │ │ │ ├── ObservableLogger.cs │ │ │ │ ├── ObservableLogger.cs.meta │ │ │ │ ├── UnityDebugSink.cs │ │ │ │ └── UnityDebugSink.cs.meta │ │ │ ├── FrameInterval.cs │ │ │ ├── FrameInterval.cs.meta │ │ │ ├── InspectableReactiveProperty.cs │ │ │ ├── InspectableReactiveProperty.cs.meta │ │ │ ├── InspectorDisplayDrawer.cs │ │ │ ├── InspectorDisplayDrawer.cs.meta │ │ │ ├── LifetimeDisposableExtensions.cs │ │ │ ├── LifetimeDisposableExtensions.cs.meta │ │ │ ├── MainThreadDispatcher.cs │ │ │ ├── MainThreadDispatcher.cs.meta │ │ │ ├── MainThreadScheduler.cs │ │ │ ├── MainThreadScheduler.cs.meta │ │ │ ├── Observable.Unity.cs │ │ │ ├── Observable.Unity.cs.meta │ │ │ ├── ObservableWWW.cs │ │ │ ├── ObservableWWW.cs.meta │ │ │ ├── ObserveExtensions.cs │ │ │ ├── ObserveExtensions.cs.meta │ │ │ ├── Operators.meta │ │ │ ├── Operators │ │ │ │ ├── BatchFrame.cs │ │ │ │ ├── BatchFrame.cs.meta │ │ │ │ ├── DelayFrame.cs │ │ │ │ ├── DelayFrame.cs.meta │ │ │ │ ├── DelayFrameSubscription.cs │ │ │ │ ├── DelayFrameSubscription.cs.meta │ │ │ │ ├── FrameInterval.cs │ │ │ │ ├── FrameInterval.cs.meta │ │ │ │ ├── FrameTimeInterval.cs │ │ │ │ ├── FrameTimeInterval.cs.meta │ │ │ │ ├── FromCoroutine.cs │ │ │ │ ├── FromCoroutine.cs.meta │ │ │ │ ├── RepeatUntil.cs │ │ │ │ ├── RepeatUntil.cs.meta │ │ │ │ ├── SampleFrame.cs │ │ │ │ ├── SampleFrame.cs.meta │ │ │ │ ├── SubscribeOnMainThread.cs │ │ │ │ ├── SubscribeOnMainThread.cs.meta │ │ │ │ ├── ThrottleFirstFrame.cs │ │ │ │ ├── ThrottleFirstFrame.cs.meta │ │ │ │ ├── ThrottleFrame.cs │ │ │ │ ├── ThrottleFrame.cs.meta │ │ │ │ ├── TimeoutFrame.cs │ │ │ │ └── TimeoutFrame.cs.meta │ │ │ ├── ReactiveCollection.cs │ │ │ ├── ReactiveCollection.cs.meta │ │ │ ├── ReactiveCommand.cs │ │ │ ├── ReactiveCommand.cs.meta │ │ │ ├── ReactiveDictionary.cs │ │ │ ├── ReactiveDictionary.cs.meta │ │ │ ├── ReactiveProperty.cs │ │ │ ├── ReactiveProperty.cs.meta │ │ │ ├── ScenePlaybackDetector.cs │ │ │ ├── ScenePlaybackDetector.cs.meta │ │ │ ├── Toolkit.meta │ │ │ ├── Toolkit │ │ │ │ ├── ObjectPool.cs │ │ │ │ └── ObjectPool.cs.meta │ │ │ ├── Triggers.meta │ │ │ ├── Triggers │ │ │ │ ├── ObservableAnimatorTrigger.cs │ │ │ │ ├── ObservableAnimatorTrigger.cs.meta │ │ │ │ ├── ObservableBeginDragTrigger.cs │ │ │ │ ├── ObservableBeginDragTrigger.cs.meta │ │ │ │ ├── ObservableCancelTrigger.cs │ │ │ │ ├── ObservableCancelTrigger.cs.meta │ │ │ │ ├── ObservableCanvasGroupChangedTrigger.cs │ │ │ │ ├── ObservableCanvasGroupChangedTrigger.cs.meta │ │ │ │ ├── ObservableCollision2DTrigger.cs │ │ │ │ ├── ObservableCollision2DTrigger.cs.meta │ │ │ │ ├── ObservableCollisionTrigger.cs │ │ │ │ ├── ObservableCollisionTrigger.cs.meta │ │ │ │ ├── ObservableDeselectTrigger.cs │ │ │ │ ├── ObservableDeselectTrigger.cs.meta │ │ │ │ ├── ObservableDestroyTrigger.cs │ │ │ │ ├── ObservableDestroyTrigger.cs.meta │ │ │ │ ├── ObservableDragTrigger.cs │ │ │ │ ├── ObservableDragTrigger.cs.meta │ │ │ │ ├── ObservableDropTrigger.cs │ │ │ │ ├── ObservableDropTrigger.cs.meta │ │ │ │ ├── ObservableEnableTrigger.cs │ │ │ │ ├── ObservableEnableTrigger.cs.meta │ │ │ │ ├── ObservableEndDragTrigger.cs │ │ │ │ ├── ObservableEndDragTrigger.cs.meta │ │ │ │ ├── ObservableEventTrigger.cs │ │ │ │ ├── ObservableEventTrigger.cs.meta │ │ │ │ ├── ObservableFixedUpdateTrigger.cs │ │ │ │ ├── ObservableFixedUpdateTrigger.cs.meta │ │ │ │ ├── ObservableInitializePotentialDragTrigger.cs │ │ │ │ ├── ObservableInitializePotentialDragTrigger.cs.meta │ │ │ │ ├── ObservableJointTrigger.cs │ │ │ │ ├── ObservableJointTrigger.cs.meta │ │ │ │ ├── ObservableLateUpdateTrigger.cs │ │ │ │ ├── ObservableLateUpdateTrigger.cs.meta │ │ │ │ ├── ObservableMouseTrigger.cs │ │ │ │ ├── ObservableMouseTrigger.cs.meta │ │ │ │ ├── ObservableMoveTrigger.cs │ │ │ │ ├── ObservableMoveTrigger.cs.meta │ │ │ │ ├── ObservableParticleTrigger.cs │ │ │ │ ├── ObservableParticleTrigger.cs.meta │ │ │ │ ├── ObservablePointerClickTrigger.cs │ │ │ │ ├── ObservablePointerClickTrigger.cs.meta │ │ │ │ ├── ObservablePointerDownTrigger.cs │ │ │ │ ├── ObservablePointerDownTrigger.cs.meta │ │ │ │ ├── ObservablePointerEnterTrigger.cs │ │ │ │ ├── ObservablePointerEnterTrigger.cs.meta │ │ │ │ ├── ObservablePointerExitTrigger.cs │ │ │ │ ├── ObservablePointerExitTrigger.cs.meta │ │ │ │ ├── ObservablePointerUpTrigger.cs │ │ │ │ ├── ObservablePointerUpTrigger.cs.meta │ │ │ │ ├── ObservableRectTransformTrigger.cs │ │ │ │ ├── ObservableRectTransformTrigger.cs.meta │ │ │ │ ├── ObservableScrollTrigger.cs │ │ │ │ ├── ObservableScrollTrigger.cs.meta │ │ │ │ ├── ObservableSelectTrigger.cs │ │ │ │ ├── ObservableSelectTrigger.cs.meta │ │ │ │ ├── ObservableStateMachineTrigger.cs │ │ │ │ ├── ObservableStateMachineTrigger.cs.meta │ │ │ │ ├── ObservableSubmitTrigger.cs │ │ │ │ ├── ObservableSubmitTrigger.cs.meta │ │ │ │ ├── ObservableTransformChangedTrigger.cs │ │ │ │ ├── ObservableTransformChangedTrigger.cs.meta │ │ │ │ ├── ObservableTrigger2DTrigger.cs │ │ │ │ ├── ObservableTrigger2DTrigger.cs.meta │ │ │ │ ├── ObservableTriggerBase.cs │ │ │ │ ├── ObservableTriggerBase.cs.meta │ │ │ │ ├── ObservableTriggerExtensions.Component.cs │ │ │ │ ├── ObservableTriggerExtensions.Component.cs.meta │ │ │ │ ├── ObservableTriggerExtensions.cs │ │ │ │ ├── ObservableTriggerExtensions.cs.meta │ │ │ │ ├── ObservableTriggerTrigger.cs │ │ │ │ ├── ObservableTriggerTrigger.cs.meta │ │ │ │ ├── ObservableUpdateSelectedTrigger.cs │ │ │ │ ├── ObservableUpdateSelectedTrigger.cs.meta │ │ │ │ ├── ObservableUpdateTrigger.cs │ │ │ │ ├── ObservableUpdateTrigger.cs.meta │ │ │ │ ├── ObservableVisibleTrigger.cs │ │ │ │ └── ObservableVisibleTrigger.cs.meta │ │ │ ├── UnityEventExtensions.cs │ │ │ ├── UnityEventExtensions.cs.meta │ │ │ ├── UnityGraphicExtensions.cs │ │ │ ├── UnityGraphicExtensions.cs.meta │ │ │ ├── UnityUIComponentExtensions.cs │ │ │ ├── UnityUIComponentExtensions.cs.meta │ │ │ ├── YieldInstructionCache.cs │ │ │ └── YieldInstructionCache.cs.meta │ │ │ ├── UnityWinRTBridge.meta │ │ │ └── UnityWinRTBridge │ │ │ ├── Thread.cs │ │ │ ├── Thread.cs.meta │ │ │ ├── ThreadPoolScheduler_UnityWinRT.cs │ │ │ └── ThreadPoolScheduler_UnityWinRT.cs.meta │ ├── Zenject.meta │ └── Zenject │ │ ├── LICENSE.txt │ │ ├── LICENSE.txt.meta │ │ ├── OptionalExtras.meta │ │ ├── OptionalExtras │ │ ├── AutoMocking.zip │ │ ├── AutoMocking.zip.meta │ │ ├── AutoSubstitute.meta │ │ ├── AutoSubstitute.zip │ │ ├── AutoSubstitute.zip.meta │ │ ├── AutoSubstitute │ │ │ ├── NSubstitute.meta │ │ │ ├── NSubstitute │ │ │ │ ├── NSubstitute.dll │ │ │ │ └── NSubstitute.dll.meta │ │ │ ├── ReadMe.txt │ │ │ └── ReadMe.txt.meta │ │ ├── MemoryPoolMonitor.meta │ │ ├── MemoryPoolMonitor │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── DebugWindow.meta │ │ │ │ ├── DebugWindow │ │ │ │ ├── InPlaceStableSort.cs │ │ │ │ ├── InPlaceStableSort.cs.meta │ │ │ │ ├── MpmView.cs │ │ │ │ ├── MpmView.cs.meta │ │ │ │ ├── MpmWindow.cs │ │ │ │ └── MpmWindow.cs.meta │ │ │ │ ├── MpmSettingsInstaller.cs │ │ │ │ ├── MpmSettingsInstaller.cs.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ ├── Installers.meta │ │ │ │ └── Installers │ │ │ │ │ ├── MpmSettingsInstaller.asset │ │ │ │ │ └── MpmSettingsInstaller.asset.meta │ │ │ │ ├── TriangleDown.png │ │ │ │ ├── TriangleDown.png.meta │ │ │ │ ├── TriangleUp.png │ │ │ │ ├── TriangleUp.png.meta │ │ │ │ ├── Zenject-PoolMonitor-Editor.asmdef │ │ │ │ └── Zenject-PoolMonitor-Editor.asmdef.meta │ │ ├── ReflectionBaking.meta │ │ ├── ReflectionBaking │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── CecilExtensions.cs │ │ │ │ ├── CecilExtensions.cs.meta │ │ │ │ ├── ReflectionBakingModuleEditor.cs │ │ │ │ └── ReflectionBakingModuleEditor.cs.meta │ │ │ ├── Lib.meta │ │ │ ├── Lib │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll.meta │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll.meta │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll.meta │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.dll │ │ │ │ └── Zenject.ReflectionBaking.Mono.Cecil.dll.meta │ │ │ ├── Unity.meta │ │ │ ├── Unity │ │ │ │ ├── AssemblyPathRegistry.cs │ │ │ │ ├── AssemblyPathRegistry.cs.meta │ │ │ │ ├── ReflectionBakingBuildObserver.cs │ │ │ │ ├── ReflectionBakingBuildObserver.cs.meta │ │ │ │ ├── ReflectionBakingInternalUtil.cs │ │ │ │ ├── ReflectionBakingInternalUtil.cs.meta │ │ │ │ ├── ReflectionBakingMenuItems.cs │ │ │ │ ├── ReflectionBakingMenuItems.cs.meta │ │ │ │ ├── UnityAssemblyResolver.cs │ │ │ │ ├── UnityAssemblyResolver.cs.meta │ │ │ │ ├── ZenjectReflectionBakingSettings.cs │ │ │ │ ├── ZenjectReflectionBakingSettings.cs.meta │ │ │ │ ├── ZenjectReflectionBakingSettingsEditor.cs │ │ │ │ └── ZenjectReflectionBakingSettingsEditor.cs.meta │ │ │ ├── Zenject-ReflectionBaking-Editor.asmdef │ │ │ └── Zenject-ReflectionBaking-Editor.asmdef.meta │ │ ├── SampleGame1 (Beginner).meta │ │ ├── SampleGame1 (Beginner) │ │ │ ├── Asteroids.unity │ │ │ ├── Asteroids.unity.meta │ │ │ ├── AsteroidsSettings.lighting │ │ │ ├── AsteroidsSettings.lighting.meta │ │ │ ├── Media.meta │ │ │ ├── Media │ │ │ │ ├── Fonts.meta │ │ │ │ ├── Fonts │ │ │ │ │ ├── Space.txt │ │ │ │ │ ├── Space.txt.meta │ │ │ │ │ ├── space age.ttf │ │ │ │ │ └── space age.ttf.meta │ │ │ │ ├── Imported.meta │ │ │ │ ├── Imported │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── CampFire_Smoke.mat │ │ │ │ │ │ ├── CampFire_Smoke.mat.meta │ │ │ │ │ │ ├── FireA.mat │ │ │ │ │ │ ├── FireA.mat.meta │ │ │ │ │ │ ├── Glow.mat │ │ │ │ │ │ ├── Glow.mat.meta │ │ │ │ │ │ ├── OilSmoke.mat │ │ │ │ │ │ └── OilSmoke.mat.meta │ │ │ │ │ ├── Rocks.meta │ │ │ │ │ ├── Rocks │ │ │ │ │ │ ├── meshes.meta │ │ │ │ │ │ ├── meshes │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ │ ├── No Name.mat │ │ │ │ │ │ │ │ ├── No Name.mat.meta │ │ │ │ │ │ │ │ ├── rock_01Mat.mat │ │ │ │ │ │ │ │ └── rock_01Mat.mat.meta │ │ │ │ │ │ │ ├── rock_01.fbx │ │ │ │ │ │ │ └── rock_01.fbx.meta │ │ │ │ │ │ ├── textures.meta │ │ │ │ │ │ └── textures │ │ │ │ │ │ │ ├── diffuse.tga │ │ │ │ │ │ │ ├── diffuse.tga.meta │ │ │ │ │ │ │ ├── normal.jpg │ │ │ │ │ │ │ └── normal.jpg.meta │ │ │ │ │ ├── Shaders.meta │ │ │ │ │ ├── Shaders │ │ │ │ │ │ ├── AddSmooth_Layer.shader │ │ │ │ │ │ ├── AddSmooth_Layer.shader.meta │ │ │ │ │ │ ├── Add_Layer.shader │ │ │ │ │ │ ├── Add_Layer.shader.meta │ │ │ │ │ │ ├── Particle Alpha Blend_IgnoreFog.shader │ │ │ │ │ │ └── Particle Alpha Blend_IgnoreFog.shader.meta │ │ │ │ │ ├── SpaceShip.meta │ │ │ │ │ ├── SpaceShip │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── 1K_Body-TXTR.mat │ │ │ │ │ │ │ ├── 1K_Body-TXTR.mat.meta │ │ │ │ │ │ │ ├── Space_Shooter_Material.mat │ │ │ │ │ │ │ └── Space_Shooter_Material.mat.meta │ │ │ │ │ │ ├── Space_Shooter.fbm.meta │ │ │ │ │ │ ├── Space_Shooter.fbm │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg.meta │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg.meta │ │ │ │ │ │ │ ├── 1K_Spec.jpg │ │ │ │ │ │ │ └── 1K_Spec.jpg.meta │ │ │ │ │ │ ├── Space_Shooter.fbx │ │ │ │ │ │ ├── Space_Shooter.fbx.meta │ │ │ │ │ │ ├── Textures.meta │ │ │ │ │ │ └── Textures │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg.meta │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg.meta │ │ │ │ │ │ │ ├── 1K_Spec.jpg │ │ │ │ │ │ │ ├── 1K_Spec.jpg.meta │ │ │ │ │ │ │ ├── 1K_TXTR+Spec.tif │ │ │ │ │ │ │ ├── 1K_TXTR+Spec.tif.meta │ │ │ │ │ │ │ ├── 512_TXTR+Spec.tif │ │ │ │ │ │ │ └── 512_TXTR+Spec.tif.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ └── Textures │ │ │ │ │ │ ├── CampfireLeft.psd │ │ │ │ │ │ ├── CampfireLeft.psd.meta │ │ │ │ │ │ ├── Campfireright.psd │ │ │ │ │ │ ├── Campfireright.psd.meta │ │ │ │ │ │ ├── Candle.psd │ │ │ │ │ │ ├── Candle.psd.meta │ │ │ │ │ │ ├── Glow.png │ │ │ │ │ │ ├── Glow.png.meta │ │ │ │ │ │ ├── SmokeB.psd │ │ │ │ │ │ ├── SmokeB.psd.meta │ │ │ │ │ │ ├── Spark.png │ │ │ │ │ │ ├── Spark.png.meta │ │ │ │ │ │ ├── fire.png │ │ │ │ │ │ ├── fire.png.meta │ │ │ │ │ │ ├── fire2.png │ │ │ │ │ │ └── fire2.png.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── stars.mat │ │ │ │ │ ├── stars.mat.meta │ │ │ │ │ ├── target.mat │ │ │ │ │ └── target.mat.meta │ │ │ │ ├── Meshes.meta │ │ │ │ ├── Meshes │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Material.mat │ │ │ │ │ │ ├── Material.mat.meta │ │ │ │ │ │ ├── shipdoor.mat │ │ │ │ │ │ └── shipdoor.mat.meta │ │ │ │ │ ├── ship.fbx │ │ │ │ │ ├── ship.fbx.meta │ │ │ │ │ ├── shipfractured.fbx │ │ │ │ │ └── shipfractured.fbx.meta │ │ │ │ ├── Physics.meta │ │ │ │ ├── Physics │ │ │ │ │ ├── Default.physicMaterial │ │ │ │ │ └── Default.physicMaterial.meta │ │ │ │ ├── Sounds.meta │ │ │ │ ├── Sounds │ │ │ │ │ ├── NearExplosionA.ogg │ │ │ │ │ ├── NearExplosionA.ogg.meta │ │ │ │ │ ├── The Space (Looping Middle).mp3 │ │ │ │ │ └── The Space (Looping Middle).mp3.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── Background.meta │ │ │ │ │ ├── Background │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.png │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.png.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ └── Materials │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield 1.mat │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield 1.mat.meta │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.mat │ │ │ │ │ │ └── Free_Shmup_Sprites_Starfield.mat.meta │ │ │ │ │ ├── asteroid.png │ │ │ │ │ ├── asteroid.png.meta │ │ │ │ │ ├── ship.png │ │ │ │ │ ├── ship.png.meta │ │ │ │ │ ├── stars.jpg │ │ │ │ │ ├── stars.jpg.meta │ │ │ │ │ ├── target.png │ │ │ │ │ └── target.png.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Asteroid.prefab │ │ │ │ ├── Asteroid.prefab.meta │ │ │ │ ├── Explosion.prefab │ │ │ │ ├── Explosion.prefab.meta │ │ │ │ ├── Fire.prefab │ │ │ │ ├── Fire.prefab.meta │ │ │ │ ├── Ship.prefab │ │ │ │ ├── Ship.prefab.meta │ │ │ │ ├── ShipBroken.prefab │ │ │ │ └── ShipBroken.prefab.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Installers.meta │ │ │ │ └── Installers │ │ │ │ │ ├── GameSettingsInstaller.asset │ │ │ │ │ └── GameSettingsInstaller.asset.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── Asteroid.meta │ │ │ │ ├── Asteroid │ │ │ │ ├── Asteroid.cs │ │ │ │ ├── Asteroid.cs.meta │ │ │ │ ├── AsteroidManager.cs │ │ │ │ └── AsteroidManager.cs.meta │ │ │ │ ├── Installers.meta │ │ │ │ ├── Installers │ │ │ │ ├── GameInstaller.cs │ │ │ │ ├── GameInstaller.cs.meta │ │ │ │ ├── GameSettingsInstaller.cs │ │ │ │ └── GameSettingsInstaller.cs.meta │ │ │ │ ├── Main.meta │ │ │ │ ├── Main │ │ │ │ ├── GameController.cs │ │ │ │ └── GameController.cs.meta │ │ │ │ ├── Misc.meta │ │ │ │ ├── Misc │ │ │ │ ├── AudioHandler.cs │ │ │ │ ├── AudioHandler.cs.meta │ │ │ │ ├── GuiHandler.cs │ │ │ │ ├── GuiHandler.cs.meta │ │ │ │ ├── LevelHelper.cs │ │ │ │ ├── LevelHelper.cs.meta │ │ │ │ ├── TilingBackground.cs │ │ │ │ └── TilingBackground.cs.meta │ │ │ │ ├── Ship.meta │ │ │ │ ├── Ship │ │ │ │ ├── Ship.cs │ │ │ │ ├── Ship.cs.meta │ │ │ │ ├── ShipStateFactory.cs │ │ │ │ ├── ShipStateFactory.cs.meta │ │ │ │ ├── States.meta │ │ │ │ └── States │ │ │ │ │ ├── BrokenShipFactory.cs │ │ │ │ │ ├── BrokenShipFactory.cs.meta │ │ │ │ │ ├── ExplosionFactory.cs │ │ │ │ │ ├── ExplosionFactory.cs.meta │ │ │ │ │ ├── ShipState.cs │ │ │ │ │ ├── ShipState.cs.meta │ │ │ │ │ ├── ShipStateDead.cs │ │ │ │ │ ├── ShipStateDead.cs.meta │ │ │ │ │ ├── ShipStateMoving.cs │ │ │ │ │ ├── ShipStateMoving.cs.meta │ │ │ │ │ ├── ShipStateWaitingToStart.cs │ │ │ │ │ └── ShipStateWaitingToStart.cs.meta │ │ │ │ ├── Util.meta │ │ │ │ └── Util │ │ │ │ ├── GameEvents.cs │ │ │ │ ├── GameEvents.cs.meta │ │ │ │ ├── UnityExtensionMethods.cs │ │ │ │ └── UnityExtensionMethods.cs.meta │ │ ├── SampleGame2 (Advanced).meta │ │ ├── SampleGame2 (Advanced) │ │ │ ├── Media.meta │ │ │ ├── Media │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Background.mat │ │ │ │ │ ├── Background.mat.meta │ │ │ │ │ ├── BulletEnemy.mat │ │ │ │ │ ├── BulletEnemy.mat.meta │ │ │ │ │ ├── BulletPlayer.mat │ │ │ │ │ ├── BulletPlayer.mat.meta │ │ │ │ │ ├── Enemy1.mat │ │ │ │ │ ├── Enemy1.mat.meta │ │ │ │ │ ├── Flame01.mat │ │ │ │ │ ├── Flame01.mat.meta │ │ │ │ │ ├── Player.mat │ │ │ │ │ └── Player.mat.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Material.mat │ │ │ │ │ │ └── Material.mat.meta │ │ │ │ │ ├── ship.fbx │ │ │ │ │ └── ship.fbx.meta │ │ │ │ ├── Physics.meta │ │ │ │ ├── Physics │ │ │ │ │ ├── Enemy.physicMaterial │ │ │ │ │ └── Enemy.physicMaterial.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Bullet.prefab │ │ │ │ │ ├── Bullet.prefab.meta │ │ │ │ │ ├── Enemy.prefab │ │ │ │ │ ├── Enemy.prefab.meta │ │ │ │ │ ├── Explosion.prefab │ │ │ │ │ └── Explosion.prefab.meta │ │ │ │ ├── Sounds.meta │ │ │ │ ├── Sounds │ │ │ │ │ ├── damage.wav │ │ │ │ │ ├── damage.wav.meta │ │ │ │ │ ├── explosion.aiff │ │ │ │ │ ├── explosion.aiff.meta │ │ │ │ │ ├── laser.wav │ │ │ │ │ ├── laser.wav.meta │ │ │ │ │ ├── laser2.wav │ │ │ │ │ └── laser2.wav.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── Flame.psd │ │ │ │ │ ├── Flame.psd.meta │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.png │ │ │ │ │ └── Free_Shmup_Sprites_Starfield.png.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── SpaceFighter.meta │ │ │ │ └── SpaceFighter │ │ │ │ │ ├── GameSettings.asset │ │ │ │ │ └── GameSettings.asset.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── SpaceFighter.unity │ │ │ │ ├── SpaceFighter.unity.meta │ │ │ │ ├── SpaceFighterSettings.lighting │ │ │ │ └── SpaceFighterSettings.lighting.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── Enemy.meta │ │ │ │ ├── Enemy │ │ │ │ ├── EnemyCommonSettings.cs │ │ │ │ ├── EnemyCommonSettings.cs.meta │ │ │ │ ├── EnemyDeathHandler.cs │ │ │ │ ├── EnemyDeathHandler.cs.meta │ │ │ │ ├── EnemyFacade.cs │ │ │ │ ├── EnemyFacade.cs.meta │ │ │ │ ├── EnemyRegistry.cs │ │ │ │ ├── EnemyRegistry.cs.meta │ │ │ │ ├── EnemyRotationHandler.cs │ │ │ │ ├── EnemyRotationHandler.cs.meta │ │ │ │ ├── EnemyStateManager.cs │ │ │ │ ├── EnemyStateManager.cs.meta │ │ │ │ ├── EnemyTunables.cs │ │ │ │ ├── EnemyTunables.cs.meta │ │ │ │ ├── EnemyView.cs │ │ │ │ ├── EnemyView.cs.meta │ │ │ │ ├── GameEvents.cs │ │ │ │ ├── GameEvents.cs.meta │ │ │ │ ├── States.meta │ │ │ │ └── States │ │ │ │ │ ├── EnemyStateAttack.cs │ │ │ │ │ ├── EnemyStateAttack.cs.meta │ │ │ │ │ ├── EnemyStateFollow.cs │ │ │ │ │ ├── EnemyStateFollow.cs.meta │ │ │ │ │ ├── EnemyStateIdle.cs │ │ │ │ │ └── EnemyStateIdle.cs.meta │ │ │ │ ├── Installers.meta │ │ │ │ ├── Installers │ │ │ │ ├── EnemyInstaller.cs │ │ │ │ ├── EnemyInstaller.cs.meta │ │ │ │ ├── GameInstaller.cs │ │ │ │ ├── GameInstaller.cs.meta │ │ │ │ ├── GameSettingsInstaller.cs │ │ │ │ ├── GameSettingsInstaller.cs.meta │ │ │ │ ├── GameSignalsInstaller.cs │ │ │ │ ├── GameSignalsInstaller.cs.meta │ │ │ │ ├── PlayerInstaller.cs │ │ │ │ └── PlayerInstaller.cs.meta │ │ │ │ ├── Misc.meta │ │ │ │ ├── Misc │ │ │ │ ├── AudioPlayer.cs │ │ │ │ ├── AudioPlayer.cs.meta │ │ │ │ ├── Bullet.cs │ │ │ │ ├── Bullet.cs.meta │ │ │ │ ├── ControlsDisplay.cs │ │ │ │ ├── ControlsDisplay.cs.meta │ │ │ │ ├── EnemySpawner.cs │ │ │ │ ├── EnemySpawner.cs.meta │ │ │ │ ├── Explosion.cs │ │ │ │ ├── Explosion.cs.meta │ │ │ │ ├── GameRestartHandler.cs │ │ │ │ ├── GameRestartHandler.cs.meta │ │ │ │ ├── LevelBoundary.cs │ │ │ │ └── LevelBoundary.cs.meta │ │ │ │ ├── Player.meta │ │ │ │ └── Player │ │ │ │ ├── PlayerDamageHandler.cs │ │ │ │ ├── PlayerDamageHandler.cs.meta │ │ │ │ ├── PlayerDirectionHandler.cs │ │ │ │ ├── PlayerDirectionHandler.cs.meta │ │ │ │ ├── PlayerFacade.cs │ │ │ │ ├── PlayerFacade.cs.meta │ │ │ │ ├── PlayerGui.cs │ │ │ │ ├── PlayerGui.cs.meta │ │ │ │ ├── PlayerHealthWatcher.cs │ │ │ │ ├── PlayerHealthWatcher.cs.meta │ │ │ │ ├── PlayerInputHandler.cs │ │ │ │ ├── PlayerInputHandler.cs.meta │ │ │ │ ├── PlayerInputState.cs │ │ │ │ ├── PlayerInputState.cs.meta │ │ │ │ ├── PlayerModel.cs │ │ │ │ ├── PlayerModel.cs.meta │ │ │ │ ├── PlayerMoveHandler.cs │ │ │ │ ├── PlayerMoveHandler.cs.meta │ │ │ │ ├── PlayerShootHandler.cs │ │ │ │ └── PlayerShootHandler.cs.meta │ │ ├── Signals.meta │ │ ├── Signals │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── Binders.meta │ │ │ │ ├── Binders │ │ │ │ │ ├── BindSignal.meta │ │ │ │ │ ├── BindSignal │ │ │ │ │ │ ├── BindSignalFromBinder.cs │ │ │ │ │ │ ├── BindSignalFromBinder.cs.meta │ │ │ │ │ │ ├── BindSignalIdToBinder.cs │ │ │ │ │ │ ├── BindSignalIdToBinder.cs.meta │ │ │ │ │ │ ├── BindSignalToBinder.cs │ │ │ │ │ │ ├── BindSignalToBinder.cs.meta │ │ │ │ │ │ ├── SignalCallbackWithLookupWrapper.cs │ │ │ │ │ │ ├── SignalCallbackWithLookupWrapper.cs.meta │ │ │ │ │ │ ├── SignalCallbackWrapper.cs │ │ │ │ │ │ └── SignalCallbackWrapper.cs.meta │ │ │ │ │ ├── DeclareSignal.meta │ │ │ │ │ ├── DeclareSignal │ │ │ │ │ │ ├── DeclareSignalAsyncTickPriorityCopyBinder.cs │ │ │ │ │ │ ├── DeclareSignalAsyncTickPriorityCopyBinder.cs.meta │ │ │ │ │ │ ├── DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs │ │ │ │ │ │ ├── DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs.meta │ │ │ │ │ │ ├── DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs │ │ │ │ │ │ ├── DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs.meta │ │ │ │ │ │ ├── SignalBindingBindInfo.cs │ │ │ │ │ │ ├── SignalBindingBindInfo.cs.meta │ │ │ │ │ │ ├── SignalDeclarationBindInfo.cs │ │ │ │ │ │ └── SignalDeclarationBindInfo.cs.meta │ │ │ │ │ ├── SignalCopyBinder.cs │ │ │ │ │ ├── SignalCopyBinder.cs.meta │ │ │ │ │ ├── SignalExtensions.cs │ │ │ │ │ ├── SignalExtensions.cs.meta │ │ │ │ │ ├── SignalTickPriorityCopyBinder.cs │ │ │ │ │ └── SignalTickPriorityCopyBinder.cs.meta │ │ │ │ ├── SignalDeclaration.cs │ │ │ │ ├── SignalDeclaration.cs.meta │ │ │ │ ├── SignalSubscription.cs │ │ │ │ ├── SignalSubscription.cs.meta │ │ │ │ ├── SignalSubscriptionId.cs │ │ │ │ └── SignalSubscriptionId.cs.meta │ │ │ ├── Main.meta │ │ │ └── Main │ │ │ │ ├── SignalBus.cs │ │ │ │ ├── SignalBus.cs.meta │ │ │ │ ├── SignalBusInstaller.cs │ │ │ │ ├── SignalBusInstaller.cs.meta │ │ │ │ ├── SignalDeclarationAsyncInitializer.cs │ │ │ │ └── SignalDeclarationAsyncInitializer.cs.meta │ │ ├── TestFramework.meta │ │ └── TestFramework │ │ │ ├── SceneTestFixture.cs │ │ │ ├── SceneTestFixture.cs.meta │ │ │ ├── SceneTestFixtureSceneReference.cs │ │ │ ├── SceneTestFixtureSceneReference.cs.meta │ │ │ ├── ValidateOnlyAttribute.cs │ │ │ ├── ValidateOnlyAttribute.cs.meta │ │ │ ├── Zenject-TestFramework.asmdef │ │ │ ├── Zenject-TestFramework.asmdef.meta │ │ │ ├── ZenjectIntegrationTestFixture.cs │ │ │ ├── ZenjectIntegrationTestFixture.cs.meta │ │ │ ├── ZenjectTestUtil.cs │ │ │ ├── ZenjectTestUtil.cs.meta │ │ │ ├── ZenjectUnitTestFixture.cs │ │ │ └── ZenjectUnitTestFixture.cs.meta │ │ ├── ReadMe.url │ │ ├── ReadMe.url.meta │ │ ├── Source.meta │ │ ├── Source │ │ ├── Binding.meta │ │ ├── Binding │ │ │ ├── BindInfo.meta │ │ │ ├── BindInfo │ │ │ │ ├── BindInfo.cs │ │ │ │ ├── BindInfo.cs.meta │ │ │ │ ├── BindStatement.cs │ │ │ │ ├── BindStatement.cs.meta │ │ │ │ ├── FactoryBindInfo.cs │ │ │ │ ├── FactoryBindInfo.cs.meta │ │ │ │ ├── GameObjectCreationParameters.cs │ │ │ │ ├── GameObjectCreationParameters.cs.meta │ │ │ │ ├── MemoryPoolBindInfo.cs │ │ │ │ └── MemoryPoolBindInfo.cs.meta │ │ │ ├── Binders.meta │ │ │ ├── Binders │ │ │ │ ├── ArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── ArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── ConcreteBinders.meta │ │ │ │ ├── ConcreteBinders │ │ │ │ │ ├── ConcreteBinderGeneric.cs │ │ │ │ │ ├── ConcreteBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteBinderNonGeneric.cs │ │ │ │ │ ├── ConcreteBinderNonGeneric.cs.meta │ │ │ │ │ ├── ConcreteIdBinderGeneric.cs │ │ │ │ │ ├── ConcreteIdBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteIdBinderNonGeneric.cs │ │ │ │ │ └── ConcreteIdBinderNonGeneric.cs.meta │ │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── ConditionCopyNonLazyBinder.cs │ │ │ │ ├── ConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── Conventions.meta │ │ │ │ ├── Conventions │ │ │ │ │ ├── ConventionAssemblySelectionBinder.cs │ │ │ │ │ ├── ConventionAssemblySelectionBinder.cs.meta │ │ │ │ │ ├── ConventionBindInfo.cs │ │ │ │ │ ├── ConventionBindInfo.cs.meta │ │ │ │ │ ├── ConventionFilterTypesBinder.cs │ │ │ │ │ ├── ConventionFilterTypesBinder.cs.meta │ │ │ │ │ ├── ConventionSelectTypesBinder.cs │ │ │ │ │ └── ConventionSelectTypesBinder.cs.meta │ │ │ │ ├── CopyNonLazyBinder.cs │ │ │ │ ├── CopyNonLazyBinder.cs.meta │ │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── Factory.meta │ │ │ │ ├── Factory │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder6.cs │ │ │ │ │ │ └── FactoryArgumentsToChoiceBinder6.cs.meta │ │ │ │ │ ├── FactoryFromBinder.meta │ │ │ │ │ ├── FactoryFromBinder │ │ │ │ │ │ ├── FactoryFromBinder0.cs │ │ │ │ │ │ ├── FactoryFromBinder0.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder1.cs │ │ │ │ │ │ ├── FactoryFromBinder1.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder10.cs │ │ │ │ │ │ ├── FactoryFromBinder10.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder2.cs │ │ │ │ │ │ ├── FactoryFromBinder2.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder3.cs │ │ │ │ │ │ ├── FactoryFromBinder3.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder4.cs │ │ │ │ │ │ ├── FactoryFromBinder4.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder5.cs │ │ │ │ │ │ ├── FactoryFromBinder5.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder6.cs │ │ │ │ │ │ ├── FactoryFromBinder6.cs.meta │ │ │ │ │ │ ├── SubContainerBinder.meta │ │ │ │ │ │ ├── SubContainerBinder │ │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinderWithParams.cs │ │ │ │ │ │ │ └── FactorySubContainerBinderWithParams.cs.meta │ │ │ │ │ │ ├── Untyped.meta │ │ │ │ │ │ └── Untyped │ │ │ │ │ │ │ ├── FactoryFromBinderUntyped.cs │ │ │ │ │ │ │ └── FactoryFromBinderUntyped.cs.meta │ │ │ │ │ ├── FactoryFromBinderBase.cs │ │ │ │ │ ├── FactoryFromBinderBase.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder.meta │ │ │ │ │ ├── FactoryToChoiceBinder │ │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs │ │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder0.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder0.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder1.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder1.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder10.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder10.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder2.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder2.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder3.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder3.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder4.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder4.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder5.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder5.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder6.cs │ │ │ │ │ │ └── FactoryToChoiceBinder6.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder │ │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder6.cs │ │ │ │ │ │ └── FactoryToChoiceIdBinder6.cs.meta │ │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs │ │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs.meta │ │ │ │ │ ├── Pooling.meta │ │ │ │ │ └── Pooling │ │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs │ │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs.meta │ │ │ │ │ │ ├── MemoryPoolExpandBinder.cs │ │ │ │ │ │ ├── MemoryPoolExpandBinder.cs.meta │ │ │ │ │ │ ├── MemoryPoolInitialSizeBinder.cs │ │ │ │ │ │ └── MemoryPoolInitialSizeBinder.cs.meta │ │ │ │ ├── FromBinders.meta │ │ │ │ ├── FromBinders │ │ │ │ │ ├── FromBinder.cs │ │ │ │ │ ├── FromBinder.cs.meta │ │ │ │ │ ├── FromBinderGeneric.cs │ │ │ │ │ ├── FromBinderGeneric.cs.meta │ │ │ │ │ ├── FromBinderNonGeneric.cs │ │ │ │ │ └── FromBinderNonGeneric.cs.meta │ │ │ │ ├── GameObject.meta │ │ │ │ ├── GameObject │ │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ └── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── IdBinder.cs │ │ │ │ ├── IdBinder.cs.meta │ │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── IfNotBoundBinder.cs │ │ │ │ ├── IfNotBoundBinder.cs.meta │ │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs │ │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── NonLazyBinder.cs │ │ │ │ ├── NonLazyBinder.cs.meta │ │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── SubContainerBinder.cs │ │ │ │ ├── SubContainerBinder.cs.meta │ │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ └── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── BindingUtil.cs │ │ │ ├── BindingUtil.cs.meta │ │ │ ├── Finalizers.meta │ │ │ └── Finalizers │ │ │ │ ├── IBindingFinalizer.cs │ │ │ │ ├── IBindingFinalizer.cs.meta │ │ │ │ ├── NullBindingFinalizer.cs │ │ │ │ ├── NullBindingFinalizer.cs.meta │ │ │ │ ├── PrefabBindingFinalizer.cs │ │ │ │ ├── PrefabBindingFinalizer.cs.meta │ │ │ │ ├── PrefabResourceBindingFinalizer.cs │ │ │ │ ├── PrefabResourceBindingFinalizer.cs.meta │ │ │ │ ├── ProviderBindingFinalizer.cs │ │ │ │ ├── ProviderBindingFinalizer.cs.meta │ │ │ │ ├── ScopableBindingFinalizer.cs │ │ │ │ ├── ScopableBindingFinalizer.cs.meta │ │ │ │ ├── SingleProviderBindingFinalizer.cs │ │ │ │ ├── SingleProviderBindingFinalizer.cs.meta │ │ │ │ ├── SubContainerBindingFinalizer.cs │ │ │ │ ├── SubContainerBindingFinalizer.cs.meta │ │ │ │ ├── SubContainerPrefabBindingFinalizer.cs │ │ │ │ └── SubContainerPrefabBindingFinalizer.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorStaticInstaller.cs │ │ │ ├── EditorStaticInstaller.cs.meta │ │ │ ├── EditorWindow.meta │ │ │ ├── EditorWindow │ │ │ │ ├── ZenjectEditorWindow.cs │ │ │ │ └── ZenjectEditorWindow.cs.meta │ │ │ ├── Editors.meta │ │ │ ├── Editors │ │ │ │ ├── ContextEditor.cs │ │ │ │ ├── ContextEditor.cs.meta │ │ │ │ ├── GameObjectContextEditor.cs │ │ │ │ ├── GameObjectContextEditor.cs.meta │ │ │ │ ├── ProjectContextEditor.cs │ │ │ │ ├── ProjectContextEditor.cs.meta │ │ │ │ ├── RunnableContextEditor.cs │ │ │ │ ├── RunnableContextEditor.cs.meta │ │ │ │ ├── SceneContextEditor.cs │ │ │ │ ├── SceneContextEditor.cs.meta │ │ │ │ ├── SceneDecoratorContextEditor.cs │ │ │ │ └── SceneDecoratorContextEditor.cs.meta │ │ │ ├── ObjectGraphVisualizer.cs │ │ │ ├── ObjectGraphVisualizer.cs.meta │ │ │ ├── SceneParentLoading.meta │ │ │ ├── SceneParentLoading │ │ │ │ ├── DefaultSceneContractConfig.cs │ │ │ │ ├── DefaultSceneContractConfig.cs.meta │ │ │ │ ├── SceneParentAutomaticLoader.cs │ │ │ │ └── SceneParentAutomaticLoader.cs.meta │ │ │ ├── UnityInspectorListEditor.cs │ │ │ ├── UnityInspectorListEditor.cs.meta │ │ │ ├── ZenMenuItems.cs │ │ │ ├── ZenMenuItems.cs.meta │ │ │ ├── ZenUnityEditorUtil.cs │ │ │ ├── ZenUnityEditorUtil.cs.meta │ │ │ ├── Zenject-Editor.asmdef │ │ │ └── Zenject-Editor.asmdef.meta │ │ ├── Factories.meta │ │ ├── Factories │ │ │ ├── FactoryProviderWrapper.cs │ │ │ ├── FactoryProviderWrapper.cs.meta │ │ │ ├── IFactory.cs │ │ │ ├── IFactory.cs.meta │ │ │ ├── KeyedFactory.cs │ │ │ ├── KeyedFactory.cs.meta │ │ │ ├── PlaceholderFactory.cs │ │ │ ├── PlaceholderFactory.cs.meta │ │ │ ├── PlaceholderFactoryBase.cs │ │ │ ├── PlaceholderFactoryBase.cs.meta │ │ │ ├── Pooling.meta │ │ │ ├── Pooling │ │ │ │ ├── IMemoryPool.cs │ │ │ │ ├── IMemoryPool.cs.meta │ │ │ │ ├── MemoryPool.cs │ │ │ │ ├── MemoryPool.cs.meta │ │ │ │ ├── MemoryPoolBase.cs │ │ │ │ ├── MemoryPoolBase.cs.meta │ │ │ │ ├── MonoMemoryPool.cs │ │ │ │ ├── MonoMemoryPool.cs.meta │ │ │ │ ├── MonoPoolableMemoryPool.cs │ │ │ │ ├── MonoPoolableMemoryPool.cs.meta │ │ │ │ ├── PoolFactory.cs │ │ │ │ ├── PoolFactory.cs.meta │ │ │ │ ├── PoolableMemoryPool.cs │ │ │ │ ├── PoolableMemoryPool.cs.meta │ │ │ │ ├── Static.meta │ │ │ │ ├── Static │ │ │ │ │ ├── PoolableStaticMemoryPool.cs │ │ │ │ │ ├── PoolableStaticMemoryPool.cs.meta │ │ │ │ │ ├── StaticMemoryPool.cs │ │ │ │ │ └── StaticMemoryPool.cs.meta │ │ │ │ ├── Util.meta │ │ │ │ └── Util │ │ │ │ │ ├── ArrayPool.cs │ │ │ │ │ ├── ArrayPool.cs.meta │ │ │ │ │ ├── DictionaryPool.cs │ │ │ │ │ ├── DictionaryPool.cs.meta │ │ │ │ │ ├── HashSetPool.cs │ │ │ │ │ ├── HashSetPool.cs.meta │ │ │ │ │ ├── ListPool.cs │ │ │ │ │ ├── ListPool.cs.meta │ │ │ │ │ ├── PoolCleanupChecker.cs │ │ │ │ │ ├── PoolCleanupChecker.cs.meta │ │ │ │ │ ├── StaticMemoryPoolRegistry.cs │ │ │ │ │ └── StaticMemoryPoolRegistry.cs.meta │ │ │ ├── PrefabFactory.cs │ │ │ ├── PrefabFactory.cs.meta │ │ │ ├── PrefabResourceFactory.cs │ │ │ └── PrefabResourceFactory.cs.meta │ │ ├── Injection.meta │ │ ├── Injection │ │ │ ├── InjectContext.cs │ │ │ ├── InjectContext.cs.meta │ │ │ ├── InjectUtil.cs │ │ │ ├── InjectUtil.cs.meta │ │ │ ├── LazyInject.cs │ │ │ └── LazyInject.cs.meta │ │ ├── Install.meta │ │ ├── Install │ │ │ ├── Contexts.meta │ │ │ ├── Contexts │ │ │ │ ├── Context.cs │ │ │ │ ├── Context.cs.meta │ │ │ │ ├── GameObjectContext.cs │ │ │ │ ├── GameObjectContext.cs.meta │ │ │ │ ├── ProjectContext.cs │ │ │ │ ├── ProjectContext.cs.meta │ │ │ │ ├── RunnableContext.cs │ │ │ │ ├── RunnableContext.cs.meta │ │ │ │ ├── SceneContext.cs │ │ │ │ ├── SceneContext.cs.meta │ │ │ │ ├── SceneDecoratorContext.cs │ │ │ │ ├── SceneDecoratorContext.cs.meta │ │ │ │ ├── StaticContext.cs │ │ │ │ └── StaticContext.cs.meta │ │ │ ├── IInstaller.cs │ │ │ ├── IInstaller.cs.meta │ │ │ ├── Installer.cs │ │ │ ├── Installer.cs.meta │ │ │ ├── InstallerBase.cs │ │ │ ├── InstallerBase.cs.meta │ │ │ ├── MonoInstaller.cs │ │ │ ├── MonoInstaller.cs.meta │ │ │ ├── MonoInstallerBase.cs │ │ │ ├── MonoInstallerBase.cs.meta │ │ │ ├── ScriptableObjectInstaller.cs │ │ │ ├── ScriptableObjectInstaller.cs.meta │ │ │ ├── ScriptableObjectInstallerBase.cs │ │ │ ├── ScriptableObjectInstallerBase.cs.meta │ │ │ ├── ZenjectBinding.cs │ │ │ ├── ZenjectBinding.cs.meta │ │ │ ├── ZenjectManagersInstaller.cs │ │ │ └── ZenjectManagersInstaller.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── Assert.cs │ │ │ ├── Assert.cs.meta │ │ │ ├── Func.cs │ │ │ ├── Func.cs.meta │ │ │ ├── LinqExtensions.cs │ │ │ ├── LinqExtensions.cs.meta │ │ │ ├── Log.cs │ │ │ ├── Log.cs.meta │ │ │ ├── MiscExtensions.cs │ │ │ ├── MiscExtensions.cs.meta │ │ │ ├── PreserveAttribute.cs │ │ │ ├── PreserveAttribute.cs.meta │ │ │ ├── TypeExtensions.cs │ │ │ ├── TypeExtensions.cs.meta │ │ │ ├── TypeStringFormatter.cs │ │ │ ├── TypeStringFormatter.cs.meta │ │ │ ├── ValuePair.cs │ │ │ └── ValuePair.cs.meta │ │ ├── Main.meta │ │ ├── Main │ │ │ ├── BindingId.cs │ │ │ ├── BindingId.cs.meta │ │ │ ├── DiContainer.cs │ │ │ ├── DiContainer.cs.meta │ │ │ ├── IInstantiator.cs │ │ │ ├── IInstantiator.cs.meta │ │ │ ├── LazyInstanceInjector.cs │ │ │ ├── LazyInstanceInjector.cs.meta │ │ │ ├── LookupId.cs │ │ │ ├── LookupId.cs.meta │ │ │ ├── SingletonMarkRegistry.cs │ │ │ ├── SingletonMarkRegistry.cs.meta │ │ │ ├── ZenjectSettings.cs │ │ │ └── ZenjectSettings.cs.meta │ │ ├── Providers.meta │ │ ├── Providers │ │ │ ├── CachedOpenTypeProvider.cs │ │ │ ├── CachedOpenTypeProvider.cs.meta │ │ │ ├── CachedProvider.cs │ │ │ ├── CachedProvider.cs.meta │ │ │ ├── ComponentProviders.meta │ │ │ ├── ComponentProviders │ │ │ │ ├── AddToGameObjectComponentProviders.meta │ │ │ │ ├── AddToGameObjectComponentProviders │ │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs │ │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs.meta │ │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs │ │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs.meta │ │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs │ │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs.meta │ │ │ │ │ ├── AddToNewGameObjectComponentProvider.cs │ │ │ │ │ └── AddToNewGameObjectComponentProvider.cs.meta │ │ │ │ ├── GetFromGameObjectComponentProvider.cs │ │ │ │ ├── GetFromGameObjectComponentProvider.cs.meta │ │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs │ │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs.meta │ │ │ │ ├── GetFromPrefabComponentProvider.cs │ │ │ │ ├── GetFromPrefabComponentProvider.cs.meta │ │ │ │ ├── InstantiateOnPrefabComponentProvider.cs │ │ │ │ └── InstantiateOnPrefabComponentProvider.cs.meta │ │ │ ├── Decorator.meta │ │ │ ├── Decorator │ │ │ │ ├── DecoratorProvider.cs │ │ │ │ └── DecoratorProvider.cs.meta │ │ │ ├── GameObjectProviders.meta │ │ │ ├── GameObjectProviders │ │ │ │ ├── EmptyGameObjectProvider.cs │ │ │ │ ├── EmptyGameObjectProvider.cs.meta │ │ │ │ ├── PrefabGameObjectProvider.cs │ │ │ │ └── PrefabGameObjectProvider.cs.meta │ │ │ ├── GetterProvider.cs │ │ │ ├── GetterProvider.cs.meta │ │ │ ├── IFactoryProvider.cs │ │ │ ├── IFactoryProvider.cs.meta │ │ │ ├── IProvider.cs │ │ │ ├── IProvider.cs.meta │ │ │ ├── IProviderExtensions.cs │ │ │ ├── IProviderExtensions.cs.meta │ │ │ ├── InstanceProvider.cs │ │ │ ├── InstanceProvider.cs.meta │ │ │ ├── MethodMultipleProviderUntyped.cs │ │ │ ├── MethodMultipleProviderUntyped.cs.meta │ │ │ ├── MethodProvider.cs │ │ │ ├── MethodProvider.cs.meta │ │ │ ├── MethodProviderMultiple.cs │ │ │ ├── MethodProviderMultiple.cs.meta │ │ │ ├── MethodProviderSimple.cs │ │ │ ├── MethodProviderSimple.cs.meta │ │ │ ├── MethodProviderUntyped.cs │ │ │ ├── MethodProviderUntyped.cs.meta │ │ │ ├── MethodProviderWithContainer.cs │ │ │ ├── MethodProviderWithContainer.cs.meta │ │ │ ├── PoolableMemoryPoolProvider.cs │ │ │ ├── PoolableMemoryPoolProvider.cs.meta │ │ │ ├── PrefabCreators.meta │ │ │ ├── PrefabCreators │ │ │ │ ├── IPrefabInstantiator.cs │ │ │ │ ├── IPrefabInstantiator.cs.meta │ │ │ │ ├── PrefabInstantiator.cs │ │ │ │ ├── PrefabInstantiator.cs.meta │ │ │ │ ├── PrefabInstantiatorCached.cs │ │ │ │ └── PrefabInstantiatorCached.cs.meta │ │ │ ├── PrefabProviders.meta │ │ │ ├── PrefabProviders │ │ │ │ ├── IPrefabProvider.cs │ │ │ │ ├── IPrefabProvider.cs.meta │ │ │ │ ├── PrefabProvider.cs │ │ │ │ ├── PrefabProvider.cs.meta │ │ │ │ ├── PrefabProviderCustom.cs │ │ │ │ ├── PrefabProviderCustom.cs.meta │ │ │ │ ├── PrefabProviderResource.cs │ │ │ │ └── PrefabProviderResource.cs.meta │ │ │ ├── ProviderUtil.cs │ │ │ ├── ProviderUtil.cs.meta │ │ │ ├── ResolveProvider.cs │ │ │ ├── ResolveProvider.cs.meta │ │ │ ├── ResourceProvider.cs │ │ │ ├── ResourceProvider.cs.meta │ │ │ ├── ScriptableObjectInstanceProvider.cs │ │ │ ├── ScriptableObjectInstanceProvider.cs.meta │ │ │ ├── ScriptableObjectResourceProvider.cs │ │ │ ├── ScriptableObjectResourceProvider.cs.meta │ │ │ ├── SubContainerCreators.meta │ │ │ ├── SubContainerCreators │ │ │ │ ├── ISubContainerCreator.cs │ │ │ │ ├── ISubContainerCreator.cs.meta │ │ │ │ ├── SubContainerCreatorBindInfo.cs │ │ │ │ ├── SubContainerCreatorBindInfo.cs.meta │ │ │ │ ├── SubContainerCreatorByInstaller.cs │ │ │ │ ├── SubContainerCreatorByInstaller.cs.meta │ │ │ │ ├── SubContainerCreatorByInstance.cs │ │ │ │ ├── SubContainerCreatorByInstance.cs.meta │ │ │ │ ├── SubContainerCreatorByInstanceGetter.cs │ │ │ │ ├── SubContainerCreatorByInstanceGetter.cs.meta │ │ │ │ ├── SubContainerCreatorByMethod.cs │ │ │ │ ├── SubContainerCreatorByMethod.cs.meta │ │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs │ │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs.meta │ │ │ │ ├── SubContainerCreatorByNewPrefab.cs │ │ │ │ ├── SubContainerCreatorByNewPrefab.cs.meta │ │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs │ │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs.meta │ │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs │ │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs.meta │ │ │ │ ├── SubContainerCreatorCached.cs │ │ │ │ ├── SubContainerCreatorCached.cs.meta │ │ │ │ ├── SubContainerCreatorDynamicContext.cs │ │ │ │ ├── SubContainerCreatorDynamicContext.cs.meta │ │ │ │ ├── SubContainerCreatorUtil.cs │ │ │ │ └── SubContainerCreatorUtil.cs.meta │ │ │ ├── SubContainerDependencyProvider.cs │ │ │ ├── SubContainerDependencyProvider.cs.meta │ │ │ ├── TransientProvider.cs │ │ │ └── TransientProvider.cs.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── AnimatorInterfaces.meta │ │ │ ├── AnimatorInterfaces │ │ │ │ ├── AnimatorIkHandlerManager.cs │ │ │ │ ├── AnimatorIkHandlerManager.cs.meta │ │ │ │ ├── AnimatorInstaller.cs │ │ │ │ ├── AnimatorInstaller.cs.meta │ │ │ │ ├── AnimatorMoveHandlerManager.cs │ │ │ │ ├── AnimatorMoveHandlerManager.cs.meta │ │ │ │ ├── IAnimatorIkHandler.cs │ │ │ │ ├── IAnimatorIkHandler.cs.meta │ │ │ │ ├── IAnimatorMoveHandler.cs │ │ │ │ └── IAnimatorMoveHandler.cs.meta │ │ │ ├── DisposableManager.cs │ │ │ ├── DisposableManager.cs.meta │ │ │ ├── GuiRenderableManager.cs │ │ │ ├── GuiRenderableManager.cs.meta │ │ │ ├── GuiRenderer.cs │ │ │ ├── GuiRenderer.cs.meta │ │ │ ├── InitializableManager.cs │ │ │ ├── InitializableManager.cs.meta │ │ │ ├── Kernels.meta │ │ │ ├── Kernels │ │ │ │ ├── DecoratableMonoKernel.cs │ │ │ │ ├── DecoratableMonoKernel.cs.meta │ │ │ │ ├── DefaultGameObjectKernel.cs │ │ │ │ ├── DefaultGameObjectKernel.cs.meta │ │ │ │ ├── Kernel.cs │ │ │ │ ├── Kernel.cs.meta │ │ │ │ ├── MonoKernel.cs │ │ │ │ ├── MonoKernel.cs.meta │ │ │ │ ├── ProjectKernel.cs │ │ │ │ ├── ProjectKernel.cs.meta │ │ │ │ ├── SceneKernel.cs │ │ │ │ └── SceneKernel.cs.meta │ │ │ ├── PoolableManager.cs │ │ │ ├── PoolableManager.cs.meta │ │ │ ├── SceneContextRegistry.cs │ │ │ ├── SceneContextRegistry.cs.meta │ │ │ ├── SceneContextRegistryAdderAndRemover.cs │ │ │ ├── SceneContextRegistryAdderAndRemover.cs.meta │ │ │ ├── TaskUpdater.cs │ │ │ ├── TaskUpdater.cs.meta │ │ │ ├── TickableManager.cs │ │ │ └── TickableManager.cs.meta │ │ ├── Usage.meta │ │ ├── Usage │ │ │ ├── Zenject-usage.dll │ │ │ └── Zenject-usage.dll.meta │ │ ├── Util.meta │ │ ├── Util │ │ │ ├── ActionInstaller.cs │ │ │ ├── ActionInstaller.cs.meta │ │ │ ├── CheatSheet.cs │ │ │ ├── CheatSheet.cs.meta │ │ │ ├── DefaultGameObjectParentInstaller.cs │ │ │ ├── DefaultGameObjectParentInstaller.cs.meta │ │ │ ├── DisposeBlock.cs │ │ │ ├── DisposeBlock.cs.meta │ │ │ ├── ExecutionOrderInstaller.cs │ │ │ ├── ExecutionOrderInstaller.cs.meta │ │ │ ├── ProfileBlock.cs │ │ │ ├── ProfileBlock.cs.meta │ │ │ ├── ProfileTimers.cs │ │ │ ├── ProfileTimers.cs.meta │ │ │ ├── ReflectionInfoTypeInfoConverter.cs │ │ │ ├── ReflectionInfoTypeInfoConverter.cs.meta │ │ │ ├── ReflectionTypeInfo.cs │ │ │ ├── ReflectionTypeInfo.cs.meta │ │ │ ├── ReflectionUtil.cs │ │ │ ├── ReflectionUtil.cs.meta │ │ │ ├── TypeAnalyzer.cs │ │ │ ├── TypeAnalyzer.cs.meta │ │ │ ├── UnityUtil.cs │ │ │ ├── UnityUtil.cs.meta │ │ │ ├── ValidationUtil.cs │ │ │ ├── ValidationUtil.cs.meta │ │ │ ├── ZenAutoInjecter.cs │ │ │ ├── ZenAutoInjecter.cs.meta │ │ │ ├── ZenPools.cs │ │ │ ├── ZenPools.cs.meta │ │ │ ├── ZenReflectionTypeAnalyzer.cs │ │ │ ├── ZenReflectionTypeAnalyzer.cs.meta │ │ │ ├── ZenUtilInternal.cs │ │ │ ├── ZenUtilInternal.cs.meta │ │ │ ├── ZenjectException.cs │ │ │ ├── ZenjectException.cs.meta │ │ │ ├── ZenjectSceneLoader.cs │ │ │ ├── ZenjectSceneLoader.cs.meta │ │ │ ├── ZenjectStateMachineBehaviourAutoInjecter.cs │ │ │ └── ZenjectStateMachineBehaviourAutoInjecter.cs.meta │ │ ├── Validation.meta │ │ └── Validation │ │ │ ├── IValidatable.cs │ │ │ ├── IValidatable.cs.meta │ │ │ ├── ValidationMarker.cs │ │ │ └── ValidationMarker.cs.meta │ │ ├── Version.txt │ │ ├── Version.txt.meta │ │ ├── package.json │ │ ├── package.json.meta │ │ ├── zenject.asmdef │ │ └── zenject.asmdef.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── rStarTools.meta └── rStarTools │ ├── CustomAttributes.meta │ ├── CustomAttributes │ ├── ColorBoxGroup.meta │ └── ColorBoxGroup │ │ ├── Scene.meta │ │ ├── Scene │ │ ├── ColorBoxGroup.unity │ │ └── ColorBoxGroup.unity.meta │ │ ├── Script.meta │ │ └── Script │ │ ├── BoxColorGroupSample.cs │ │ ├── BoxColorGroupSample.cs.meta │ │ ├── ColoredBoxGroupAttribute.cs │ │ ├── ColoredBoxGroupAttribute.cs.meta │ │ ├── ColoredBoxGroupDrawer.cs │ │ └── ColoredBoxGroupDrawer.cs.meta │ ├── Editor.meta │ ├── Editor │ ├── ClearConsoleLog.cs │ ├── ClearConsoleLog.cs.meta │ ├── TestRunnerEditor.cs │ ├── TestRunnerEditor.cs.meta │ ├── Tools.meta │ └── Tools │ │ ├── MethodInvoker.meta │ │ ├── MethodInvoker │ │ ├── DelegateInfo.cs │ │ ├── DelegateInfo.cs.meta │ │ ├── MethodContainer.cs │ │ ├── MethodContainer.cs.meta │ │ ├── MethodContainerDrawer.cs │ │ ├── MethodContainerDrawer.cs.meta │ │ ├── MethodEntry.cs │ │ ├── MethodEntry.cs.meta │ │ ├── MethodEntryDrawer.cs │ │ ├── MethodEntryDrawer.cs.meta │ │ ├── MethodEntryProcessor.cs │ │ ├── MethodEntryProcessor.cs.meta │ │ ├── MethodInvokerWindow.cs │ │ └── MethodInvokerWindow.cs.meta │ │ ├── Time measurement.meta │ │ └── Time measurement │ │ ├── EditorSingleton.meta │ │ ├── EditorSingleton │ │ ├── EditorSingleton.cs │ │ └── EditorSingleton.cs.meta │ │ ├── LogCompileTimes.meta │ │ ├── LogCompileTimes │ │ ├── LogCompileTimes.cs │ │ └── LogCompileTimes.cs.meta │ │ ├── TestRunnerTimes.meta │ │ └── TestRunnerTimes │ │ ├── TestRunnerTimers.cs │ │ └── TestRunnerTimers.cs.meta │ ├── LoadDataFromGoogleSheet.meta │ ├── LoadDataFromGoogleSheet │ ├── Fonts.meta │ ├── Fonts │ │ ├── Silver SDF.asset │ │ ├── Silver SDF.asset.meta │ │ ├── Silver.ttf │ │ └── Silver.ttf.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Panel Skill.prefab │ │ └── Panel Skill.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── LoadDataFromGoogleSheetDemo.unity │ │ └── LoadDataFromGoogleSheetDemo.unity.meta │ ├── ScriptableObjects.meta │ ├── ScriptableObjects │ │ ├── LoadDataFromGoogleSheetSetting.asset │ │ ├── LoadDataFromGoogleSheetSetting.asset.meta │ │ ├── SkillData.asset │ │ └── SkillData.asset.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Component.meta │ │ ├── Component │ │ │ ├── PanelSkill.cs │ │ │ └── PanelSkill.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── SkillData.cs │ │ │ ├── SkillData.cs.meta │ │ │ ├── SkillInfo.cs │ │ │ └── SkillInfo.cs.meta │ │ ├── Installer.meta │ │ ├── Installer │ │ │ ├── LoadDataFromGoogleSheetInstaller.cs │ │ │ ├── LoadDataFromGoogleSheetInstaller.cs.meta │ │ │ ├── LoadDataFromGoogleSheetSetting.cs │ │ │ └── LoadDataFromGoogleSheetSetting.cs.meta │ │ ├── LoadDataFromGoogleSheet.asmdef │ │ ├── LoadDataFromGoogleSheet.asmdef.meta │ │ ├── Presenter.meta │ │ └── Presenter │ │ │ ├── DemoPresenter.cs │ │ │ └── DemoPresenter.cs.meta │ ├── Utilities.meta │ └── Utilities │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── CustomEditor.asmdef │ │ ├── CustomEditor.asmdef.meta │ │ ├── EditorWebRequest.cs │ │ └── EditorWebRequest.cs.meta │ │ ├── GoogleSheetService.cs │ │ ├── GoogleSheetService.cs.meta │ │ ├── JsonHelper.cs │ │ ├── JsonHelper.cs.meta │ │ ├── RandomUtilities.cs │ │ ├── RandomUtilities.cs.meta │ │ ├── Utility.asmdef │ │ └── Utility.asmdef.meta │ ├── StringListSample.meta │ └── StringListSample │ ├── Scene.meta │ ├── Scene │ ├── StringList.unity │ └── StringList.unity.meta │ ├── ScriptableObjects.meta │ ├── ScriptableObjects │ ├── ActorData.meta │ ├── ActorData │ │ ├── ActorDataOverview.asset │ │ └── ActorDataOverview.asset.meta │ ├── ActorType.meta │ ├── ActorType │ │ ├── ActorTypeOverview.asset │ │ └── ActorTypeOverview.asset.meta │ ├── ItemData.meta │ ├── ItemData │ │ ├── Item data 123.asset │ │ ├── Item data 123.asset.meta │ │ ├── ItemData 456.asset │ │ ├── ItemData 456.asset.meta │ │ ├── ItemDataOverview.asset │ │ ├── ItemDataOverview.asset.meta │ │ ├── ItemData_1.asset │ │ ├── ItemData_1.asset.meta │ │ ├── ItemData_2.asset │ │ └── ItemData_2.asset.meta │ ├── NameListSo.asset │ ├── NameListSo.asset.meta │ ├── SkillData.meta │ ├── SkillData │ │ ├── SkillData1.asset │ │ ├── SkillData1.asset.meta │ │ ├── SkillData2.asset │ │ ├── SkillData2.asset.meta │ │ ├── SkillDataOverview.asset │ │ └── SkillDataOverview.asset.meta │ ├── new item data.asset │ └── new item data.asset.meta │ ├── Scripts.meta │ └── Scripts │ ├── Main.meta │ ├── Main │ ├── Actor.cs │ ├── Actor.cs.meta │ ├── ActorType.cs │ ├── ActorType.cs.meta │ ├── Character.cs │ ├── Character.cs.meta │ ├── CustomName.cs │ ├── CustomName.cs.meta │ ├── EnumScript.cs │ ├── EnumScript.cs.meta │ ├── Item.cs │ ├── Item.cs.meta │ ├── Skill.cs │ ├── Skill.cs.meta │ ├── SkillScript.cs │ └── SkillScript.cs.meta │ ├── ScriptableObject.meta │ ├── ScriptableObject │ ├── DataOverviews.meta │ ├── DataOverviews │ │ ├── ActorDataOverview.cs │ │ ├── ActorDataOverview.cs.meta │ │ ├── ActorTypeDataOverview.cs │ │ ├── ActorTypeDataOverview.cs.meta │ │ ├── ItemDataOverview.cs │ │ ├── ItemDataOverview.cs.meta │ │ ├── SkillDataOverview.cs │ │ └── SkillDataOverview.cs.meta │ ├── Datas.meta │ ├── Datas │ │ ├── ActorData.cs │ │ ├── ActorData.cs.meta │ │ ├── ItemData.cs │ │ ├── ItemData.cs.meta │ │ ├── SkillData.cs │ │ └── SkillData.cs.meta │ ├── NameListSo.cs │ ├── NameListSo.cs.meta │ ├── Names.meta │ └── Names │ │ ├── ActorName.cs │ │ ├── ActorName.cs.meta │ │ ├── ActorTypeName.cs │ │ ├── ActorTypeName.cs.meta │ │ ├── ItemName.cs │ │ ├── ItemName.cs.meta │ │ ├── SkillName.cs │ │ └── SkillName.cs.meta │ ├── StringList.meta │ └── StringList │ ├── Custom Attributes.meta │ ├── Custom Attributes │ ├── LabelWidthStringAttribute.cs │ ├── LabelWidthStringAttribute.cs.meta │ ├── LabelWidthStringDrawer.cs │ └── LabelWidthStringDrawer.cs.meta │ ├── DataBase.cs │ ├── DataBase.cs.meta │ ├── DataOverviewBase.cs │ ├── DataOverviewBase.cs.meta │ ├── EditorUtility.meta │ ├── EditorUtility │ ├── CustomEditorUtility.cs │ └── CustomEditorUtility.cs.meta │ ├── IDataOverview.cs │ ├── IDataOverview.cs.meta │ ├── IUniqueId.cs │ ├── IUniqueId.cs.meta │ ├── NameBase.cs │ ├── NameBase.cs.meta │ ├── OverviewWrapper.cs │ ├── OverviewWrapper.cs.meta │ ├── SODataBase.cs │ ├── SODataBase.cs.meta │ ├── SingletonScriptableObject.cs │ ├── SingletonScriptableObject.cs.meta │ ├── StringListDescription.cs │ ├── StringListDescription.cs.meta │ ├── UniqueId.cs │ ├── UniqueId.cs.meta │ ├── Utility.cs │ └── Utility.cs.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── ScreenShots └── MethodInvoker.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample03_GameObjectAsObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample03_GameObjectAsObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample04_ConvertFromUnityCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample04_ConvertFromUnityCallback.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample07_OrchestratIEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample07_OrchestratIEnumerator.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample11_Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample11_Logger.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample11_Logger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample11_Logger.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample12Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample12Scene.unity -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample12Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample12Scene.unity.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample13Scene.unity -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample13Scene.unity.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13_ToDoItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample13_ToDoItem.prefab -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13_ToDoItem.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/Sample13_ToDoItem.prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/UniRx.Examples.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/UniRx.Examples.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/UniRx.Examples.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Examples/UniRx.Examples.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/ReadMe.txt -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/ReadMe.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/ReadMe.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Asynchronous.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Asynchronous.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Asynchronous/WebRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Asynchronous/WebRequestExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/CancellationDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/CancellationDisposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/CompositeDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/CompositeDisposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/DictionaryDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/DictionaryDisposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/DisposableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/DisposableExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/ScheduledDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/ScheduledDisposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/EventPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/EventPattern.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/EventPattern.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/EventPattern.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ThreadSafeQueueWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/ThreadSafeQueueWorker.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/UnityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/InternalUtil/UnityEqualityComparer.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notification.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notification.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notification.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Binding.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Binding.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Binding.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Creation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Creation.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Creation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Creation.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Events.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Events.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Events.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Joins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Joins.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Joins.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Joins.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Paging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Paging.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Paging.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Paging.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Time.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Time.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.Time.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observer.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Observer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Amb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Amb.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/AsSingleUnitObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/AsSingleUnitObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Cast.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Cast.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Cast.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Catch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Catch.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Catch.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Catch.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Concat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Concat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Create.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Create.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Create.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Defer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Defer.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Defer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Defer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Delay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Delay.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Delay.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Delay.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Do.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Do.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Do.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Do.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Empty.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Empty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Empty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Finally.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Finally.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Finally.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Finally.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/First.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/First.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/First.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/First.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Last.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Last.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Last.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Last.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Merge.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Merge.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Merge.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Never.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Never.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Never.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Never.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/OfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/OfType.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/OfType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/OfType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Range.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Range.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Range.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Return.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Return.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Return.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Sample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Scan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Scan.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Scan.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Scan.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Select.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Select.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Select.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Single.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Single.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Single.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Skip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Skip.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Skip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Skip.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Start.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Start.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Start.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Start.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Switch.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Switch.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Switch.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Take.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Take.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Take.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Take.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Throw.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Throw.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Throw.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ToList.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ToList.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Wait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Wait.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Wait.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Wait.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Where.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Where.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Where.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Where.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Zip.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Zip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/Zip.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Pair.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Pair.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Pair.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/CurrentThreadScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers/CurrentThreadScheduler.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/ImmediateScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers/ImmediateScheduler.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/ThreadPoolScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Schedulers/ThreadPoolScheduler.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/ConnectableObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/ConnectableObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IObservable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IObservable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IObserver.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IObserver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IObserver.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IProgress.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IProgress.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/IProgress.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/Tuple.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/Tuple.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/Tuple.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/Unit.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/Unit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/System/Unit.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Tasks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Tasks.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Tasks/TaskObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Tasks/TaskObservableExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/TimeInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/TimeInterval.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/TimeInterval.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/TimeInterval.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Timestamped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Timestamped.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Timestamped.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/Timestamped.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UniRx.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UniRx.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UniRx.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UniRx.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/FrameInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/FrameInterval.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObservableWWW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObservableWWW.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCommand.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Toolkit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Toolkit.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityWinRTBridge.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/AutoMocking.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/AutoMocking.zip -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/AutoMocking.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/AutoMocking.zip.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute/ReadMe.txt -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner).meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner).meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced).meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced).meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/Signals.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/Signals.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/Signals/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/Signals/Main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/Signals/Main.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBus.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/TestFramework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/OptionalExtras/TestFramework.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/ReadMe.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/svermeulen/Extenject 3 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/ReadMe.url.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/ReadMe.url.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/BindInfo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/BindInfo.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/BindInfo/BindStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindStatement.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/BindInfo/FactoryBindInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/BindInfo/FactoryBindInfo.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/Conventions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/Factory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/Factory.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/GameObject.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/IfNotBoundBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/IfNotBoundBinder.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Binders/NonLazyBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Binders/NonLazyBinder.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding/Finalizers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Binding/Finalizers.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/EditorStaticInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/EditorStaticInstaller.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/EditorWindow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/EditorWindow.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/Editors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/Editors.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/Editors/ContextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/Editors/ContextEditor.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02bed9738f9c4323ac05524465473dee 3 | timeCreated: 1494728675 -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/ObjectGraphVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/ObjectGraphVisualizer.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/SceneParentLoading.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/UnityInspectorListEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/UnityInspectorListEditor.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/FactoryProviderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/FactoryProviderWrapper.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/IFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/IFactory.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/IFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/IFactory.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/PlaceholderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactory.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/PlaceholderFactoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactoryBase.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/IMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/IMemoryPool.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPool.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPoolBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPoolBase.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/MonoMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoMemoryPool.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/PoolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolFactory.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/Static.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/Static.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/Util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/Util.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ArrayPool.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ListPool.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories/PrefabResourceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Factories/PrefabResourceFactory.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Injection.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection/InjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Injection/InjectContext.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection/InjectContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Injection/InjectContext.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection/LazyInject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Injection/LazyInject.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection/LazyInject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Injection/LazyInject.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Contexts.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts/ProjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Contexts/ProjectContext.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13e9b26d23f6422cb282cc27631fc9e2 3 | timeCreated: 1494725784 -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts/SceneContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Contexts/SceneContext.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Contexts/StaticContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Contexts/StaticContext.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/IInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/IInstaller.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/IInstaller.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/IInstaller.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Installer.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/Installer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/Installer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/InstallerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/InstallerBase.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/InstallerBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/InstallerBase.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install/ZenjectManagersInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Install/ZenjectManagersInstaller.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/Assert.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Assert.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/Assert.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Func.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/Func.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Func.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/Func.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/Log.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Log.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/Log.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/TypeStringFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/TypeStringFormatter.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/ValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/ValuePair.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/ValuePair.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Internal/ValuePair.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/BindingId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/BindingId.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/BindingId.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/BindingId.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/DiContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/DiContainer.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/DiContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/DiContainer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/IInstantiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/IInstantiator.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/IInstantiator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/IInstantiator.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/LookupId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/LookupId.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/LookupId.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/LookupId.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/CachedOpenTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/CachedOpenTypeProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/ComponentProviders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/ComponentProviders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/Decorator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/Decorator.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/GameObjectProviders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/IProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/IProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/IProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/IProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/IProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/IProviderExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/MethodProviderMultiple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/MethodProviderMultiple.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/MethodProviderSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/MethodProviderSimple.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/MethodProviderUntyped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/MethodProviderUntyped.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/PrefabCreators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/PrefabCreators.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/PrefabProviders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/PrefabProviders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/SubContainerCreators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/GuiRenderableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/GuiRenderableManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/InitializableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/InitializableManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f054684b4d0f44a1904823270ae3f137 3 | timeCreated: 1587868417 -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/ProjectKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels/ProjectKernel.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistry.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Usage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Usage.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/CheatSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/CheatSheet.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/CheatSheet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/CheatSheet.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ExecutionOrderInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ExecutionOrderInstaller.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/UnityUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/UnityUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/UnityUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/UnityUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenPools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenPools.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenPools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenPools.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenReflectionTypeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenReflectionTypeAnalyzer.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenjectException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenjectException.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenjectException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenjectException.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Validation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Validation.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Validation/IValidatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Validation/IValidatable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Version.txt: -------------------------------------------------------------------------------- 1 | 9.2.0 2 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Version.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/Version.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/package.json -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/package.json.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/zenject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenject" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/zenject.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/Plugins/Zenject/zenject.asmdef.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Assets/rStarTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools.meta -------------------------------------------------------------------------------- /Assets/rStarTools/CustomAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bfe1503e6044ab0995980e99358c574 3 | timeCreated: 1632556720 -------------------------------------------------------------------------------- /Assets/rStarTools/CustomAttributes/ColorBoxGroup.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/CustomAttributes/ColorBoxGroup.meta -------------------------------------------------------------------------------- /Assets/rStarTools/CustomAttributes/ColorBoxGroup/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/CustomAttributes/ColorBoxGroup/Scene.meta -------------------------------------------------------------------------------- /Assets/rStarTools/CustomAttributes/ColorBoxGroup/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/CustomAttributes/ColorBoxGroup/Script.meta -------------------------------------------------------------------------------- /Assets/rStarTools/CustomAttributes/ColorBoxGroup/Script/BoxColorGroupSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 712f97410fb041efbd82e7d377af4548 3 | timeCreated: 1632556720 -------------------------------------------------------------------------------- /Assets/rStarTools/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/ClearConsoleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/ClearConsoleLog.cs -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/ClearConsoleLog.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/ClearConsoleLog.cs.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/TestRunnerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/TestRunnerEditor.cs -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/TestRunnerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/TestRunnerEditor.cs.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/MethodInvoker.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/MethodInvoker.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/MethodInvoker/DelegateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/MethodInvoker/DelegateInfo.cs -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/MethodInvoker/DelegateInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/MethodInvoker/DelegateInfo.cs.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/MethodInvoker/MethodContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/MethodInvoker/MethodContainer.cs -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/MethodInvoker/MethodEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/MethodInvoker/MethodEntry.cs -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/MethodInvoker/MethodEntry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/MethodInvoker/MethodEntry.cs.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/MethodInvoker/MethodEntryDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/MethodInvoker/MethodEntryDrawer.cs -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/Time measurement.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/Editor/Tools/Time measurement.meta -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/Time measurement/TestRunnerTimes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dc99f3ec4eb47c881bb16c9df7a1221 3 | timeCreated: 1668321544 -------------------------------------------------------------------------------- /Assets/rStarTools/Editor/Tools/Time measurement/TestRunnerTimes/TestRunnerTimers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ac80ec7a5d64dd295364a2afd947938 3 | timeCreated: 1668321569 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Fonts.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Fonts/Silver SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Fonts/Silver SDF.asset -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Fonts/Silver.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Fonts/Silver.ttf -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Fonts/Silver.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Fonts/Silver.ttf.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Prefabs.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Scenes.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/ScriptableObjects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/ScriptableObjects.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Scripts.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts/Component.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c136f7a5a2be4d4dba80450cad9028cc 3 | timeCreated: 1638673164 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts/Component/PanelSkill.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b82aec939e4c009233dae515559492 3 | timeCreated: 1638661235 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0dde20838f14a618156394bf19b6fff 3 | timeCreated: 1638657417 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts/Data/SkillInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b971268c39544c1ebdeadcebbd8e4e07 3 | timeCreated: 1638659952 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts/Installer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 126bf653810f4c99a010651fe8c2c361 3 | timeCreated: 1638661513 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts/Presenter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3186466016794671aca163f9a347a91c 3 | timeCreated: 1638661662 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Scripts/Presenter/DemoPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bec4538750844a0fbf28d42275d32a46 3 | timeCreated: 1638661662 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Utilities.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Utilities/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Utilities/Editor.meta -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Utilities/Editor/EditorWebRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0685f9b24444fcfb27fa64dbf78394f 3 | timeCreated: 1638414135 -------------------------------------------------------------------------------- /Assets/rStarTools/LoadDataFromGoogleSheet/Utilities/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/LoadDataFromGoogleSheet/Utilities/JsonHelper.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample.meta -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scene.meta -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scene/StringList.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scene/StringList.unity -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scene/StringList.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scene/StringList.unity.meta -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/ScriptableObjects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/ScriptableObjects.meta -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts.meta -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 114d5cca43814f2f98b6539fa595f269 3 | timeCreated: 1630166126 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/Actor.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Actor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06d0f883cb1b40288997548f74d65b80 3 | timeCreated: 1630446509 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/ActorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/ActorType.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/ActorType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 035c6db4947042cdaf3b854a9a5ba581 3 | timeCreated: 1638445084 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/Character.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/Character.cs.meta -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/CustomName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/CustomName.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/CustomName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b03ff1d502741c7af9bad70a30f92bc 3 | timeCreated: 1630201836 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/EnumScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/EnumScript.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/EnumScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f8669b83f9a41f9a3f2c0c98c634b69 3 | timeCreated: 1630373728 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/Item.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Item.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b21987ddd3ba46aeaeda553c29cb46d4 3 | timeCreated: 1630824786 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Skill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/Skill.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/Skill.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 251d776a5fe849e998e6638bcb54eda7 3 | timeCreated: 1630475131 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/SkillScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/Main/SkillScript.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/Main/SkillScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a287670fd844a139a4d40c1fc1a46ee 3 | timeCreated: 1630373811 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3d31022763249c680e8f31978e398ce 3 | timeCreated: 1630165965 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/DataOverviews.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 142141f462ba4bf0bd217b7a75b2b87c 3 | timeCreated: 1630534553 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Datas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04981592c9ea474394e83a625789caf7 3 | timeCreated: 1630534525 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Datas/ActorData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c8f1dd894f40788b766631fe25be16 3 | timeCreated: 1630201986 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Datas/ItemData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79b0191417f645628c0a3f721a5370c2 3 | timeCreated: 1630824536 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Datas/SkillData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3869c715341447597972e53a52f671a 3 | timeCreated: 1630473604 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/NameListSo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 894985bcee204c68a81a088243bd4fe0 3 | timeCreated: 1630165983 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Names.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23c4bb7c480741a1b40f82af09931f1a 3 | timeCreated: 1630534346 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Names/ActorName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5d267c87c7344daab3c73b74191bae9 3 | timeCreated: 1630469413 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Names/ActorTypeName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 540e458e7f5b47ad839ba1668be634aa 3 | timeCreated: 1631044129 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Names/ItemName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fced0b833594d68a990e622ab763b4c 3 | timeCreated: 1630824653 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/ScriptableObject/Names/SkillName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cbc5182b939465984a42ede88bae681 3 | timeCreated: 1630473631 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/StringList.meta -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/Custom Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 497afba14b814a1d9aae23351d591441 3 | timeCreated: 1631483325 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/DataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/StringList/DataBase.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/DataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb9c2bffcf7f42cd94d776ccdb296759 3 | timeCreated: 1631339018 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/DataOverviewBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b30665adecf4ff7a442433698dd5993 3 | timeCreated: 1631083953 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/IDataOverview.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e3a8e0668624de4a53e409c25307b79 3 | timeCreated: 1631046285 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/IUniqueId.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd2488c0fa9b49d5ae6efe0d5719c5ec 3 | timeCreated: 1631224487 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/NameBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/StringList/NameBase.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/NameBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b58750dda204c24a217ed1c931566d9 3 | timeCreated: 1631047449 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/OverviewWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70e7e74efd364d34beec105096dcb035 3 | timeCreated: 1631332322 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/SODataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0724e33b01eb4851b5d8580a89d7290c 3 | timeCreated: 1630469387 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/SingletonScriptableObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 254782e7ea3242a6a3fc1fec1b67c349 3 | timeCreated: 1630456612 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/UniqueId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/StringList/UniqueId.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/UniqueId.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b3d5c8f4ca8464d87cfe7fb2bfb7069 3 | timeCreated: 1630469401 -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Assets/rStarTools/StringListSample/Scripts/StringList/Utility.cs -------------------------------------------------------------------------------- /Assets/rStarTools/StringListSample/Scripts/StringList/Utility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3404ded2d62e4008b1e6b56980171c34 3 | timeCreated: 1631047614 -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/MethodInvoker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1247/rStar-Tools/HEAD/ScreenShots/MethodInvoker.gif --------------------------------------------------------------------------------