├── .gitignore ├── Assets ├── Console.meta ├── Console │ ├── Addons.meta │ ├── Addons │ │ ├── LuaCommandParser.meta │ │ ├── LuaCommandParser │ │ │ ├── Source.meta │ │ │ └── Source │ │ │ │ ├── LuaCommandAttribute.cs │ │ │ │ ├── LuaCommandAttribute.cs.meta │ │ │ │ ├── LuaCommandModule.cs │ │ │ │ ├── LuaCommandModule.cs.meta │ │ │ │ ├── LuaCommandParser.cs │ │ │ │ ├── LuaCommandParser.cs.meta │ │ │ │ ├── ReflectionUtils.cs │ │ │ │ ├── ReflectionUtils.cs.meta │ │ │ │ ├── StandardCommandModule.cs │ │ │ │ └── StandardCommandModule.cs.meta │ │ ├── TrelloFeedbackForm.meta │ │ └── TrelloFeedbackForm │ │ │ ├── Source.meta │ │ │ └── Source │ │ │ ├── AsyncOperation.cs │ │ │ ├── AsyncOperation.cs.meta │ │ │ ├── Card.cs │ │ │ ├── Card.cs.meta │ │ │ ├── ImgurAPI.cs │ │ │ ├── ImgurAPI.cs.meta │ │ │ ├── MiniJson.cs │ │ │ ├── MiniJson.cs.meta │ │ │ ├── TrelloAPI.cs │ │ │ ├── TrelloAPI.cs.meta │ │ │ ├── TrelloFeedbackForm.cs │ │ │ ├── TrelloFeedbackForm.cs.meta │ │ │ ├── TrelloFormSettings.cs │ │ │ └── TrelloFormSettings.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── DebugConsole.meta │ │ └── DebugConsole │ │ │ ├── debug_console.prefab │ │ │ ├── debug_console.prefab.meta │ │ │ ├── event_system.prefab │ │ │ └── event_system.prefab.meta │ ├── Source.meta │ ├── Source │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Inspectors.meta │ │ │ └── Inspectors │ │ │ │ ├── DebugConsoleUIInspector.cs │ │ │ │ └── DebugConsoleUIInspector.cs.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── DebugConsole.cs │ │ │ ├── DebugConsole.cs.meta │ │ │ ├── DebugLevel.cs │ │ │ ├── DebugLevel.cs.meta │ │ │ ├── GenericPauseHandler.cs │ │ │ ├── GenericPauseHandler.cs.meta │ │ │ ├── ICommandParser.cs │ │ │ ├── ICommandParser.cs.meta │ │ │ ├── IPauseHandler.cs │ │ │ ├── IPauseHandler.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── DebugConsolePrefs.cs │ │ │ ├── DebugConsolePrefs.cs.meta │ │ │ ├── DebugConsoleUtils.cs │ │ │ └── DebugConsoleUtils.cs.meta │ │ │ ├── LogLevel.cs │ │ │ ├── LogLevel.cs.meta │ │ │ ├── LogMessage.cs │ │ │ ├── LogMessage.cs.meta │ │ │ ├── ToggleDebugConsoleOnKey.cs │ │ │ ├── ToggleDebugConsoleOnKey.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ ├── DebugConsoleUI.cs │ │ │ ├── DebugConsoleUI.cs.meta │ │ │ ├── DialogBox.cs │ │ │ ├── DialogBox.cs.meta │ │ │ ├── FeedbackType.cs │ │ │ ├── FeedbackType.cs.meta │ │ │ ├── FeedbackUI.cs │ │ │ ├── FeedbackUI.cs.meta │ │ │ ├── HelpUI.cs │ │ │ ├── HelpUI.cs.meta │ │ │ ├── IFeedbackForm.cs │ │ │ ├── IFeedbackForm.cs.meta │ │ │ ├── InputField.cs │ │ │ ├── InputField.cs.meta │ │ │ ├── LoadingDialogBox.cs │ │ │ ├── LoadingDialogBox.cs.meta │ │ │ ├── LogMessageCollection.cs │ │ │ ├── LogMessageCollection.cs.meta │ │ │ ├── LogMessageEntry.cs │ │ │ ├── LogMessageEntry.cs.meta │ │ │ ├── LogScrollView.cs │ │ │ ├── LogScrollView.cs.meta │ │ │ ├── MessageFilter.cs │ │ │ ├── MessageFilter.cs.meta │ │ │ ├── SpinningIcon.cs │ │ │ ├── SpinningIcon.cs.meta │ │ │ ├── ToggleImageAction.cs │ │ │ └── ToggleImageAction.cs.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── icon_error.psd │ │ ├── icon_error.psd.meta │ │ ├── icon_info.psd │ │ ├── icon_info.psd.meta │ │ ├── icon_warning.psd │ │ ├── icon_warning.psd.meta │ │ ├── loading.png │ │ ├── loading.png.meta │ │ ├── ui_skin.png │ │ └── ui_skin.png.meta ├── Plugins.meta └── Plugins │ ├── MoonSharp.meta │ └── MoonSharp │ ├── Debugger.meta │ ├── Debugger │ ├── DebuggerLogic.meta │ ├── DebuggerLogic │ │ ├── AsyncDebugger.cs │ │ ├── AsyncDebugger.cs.meta │ │ ├── EmptyDebugSession.cs │ │ ├── EmptyDebugSession.cs.meta │ │ ├── IAsyncDebuggerClient.cs │ │ ├── IAsyncDebuggerClient.cs.meta │ │ ├── MoonSharpDebugSession.cs │ │ ├── MoonSharpDebugSession.cs.meta │ │ ├── VariableInspector.cs │ │ └── VariableInspector.cs.meta │ ├── MoonSharpVsCodeDebugServer.cs │ ├── MoonSharpVsCodeDebugServer.cs.meta │ ├── SDK.meta │ └── SDK │ │ ├── DebugSession.cs │ │ ├── DebugSession.cs.meta │ │ ├── Protocol.cs │ │ ├── Protocol.cs.meta │ │ ├── Utilities.cs │ │ └── Utilities.cs.meta │ ├── Interpreter.meta │ └── Interpreter │ ├── AsyncExtensions.cs │ ├── AsyncExtensions.cs.meta │ ├── CodeAnalysis.meta │ ├── CodeAnalysis │ ├── AstNode.cs │ └── AstNode.cs.meta │ ├── Compatibility.meta │ ├── Compatibility │ ├── Attributes.cs │ ├── Attributes.cs.meta │ ├── Framework.cs │ ├── Framework.cs.meta │ ├── Frameworks.meta │ ├── Frameworks │ │ ├── Base.meta │ │ ├── Base │ │ │ ├── FrameworkBase.cs │ │ │ ├── FrameworkBase.cs.meta │ │ │ ├── FrameworkClrBase.cs │ │ │ ├── FrameworkClrBase.cs.meta │ │ │ ├── FrameworkReflectionBase.cs │ │ │ └── FrameworkReflectionBase.cs.meta │ │ ├── FrameworkCLR.cs │ │ ├── FrameworkCLR.cs.meta │ │ ├── FrameworkCore.cs │ │ ├── FrameworkCore.cs.meta │ │ ├── FrameworkPCL.cs │ │ ├── FrameworkPCL.cs.meta │ │ ├── FrameworkWin8.cs │ │ └── FrameworkWin8.cs.meta │ ├── Stopwatch.cs │ └── Stopwatch.cs.meta │ ├── CoreLib.meta │ ├── CoreLib │ ├── BasicModule.cs │ ├── BasicModule.cs.meta │ ├── Bit32Module.cs │ ├── Bit32Module.cs.meta │ ├── CoroutineModule.cs │ ├── CoroutineModule.cs.meta │ ├── DebugModule.cs │ ├── DebugModule.cs.meta │ ├── DynamicModule.cs │ ├── DynamicModule.cs.meta │ ├── ErrorHandlingModule.cs │ ├── ErrorHandlingModule.cs.meta │ ├── IO.meta │ ├── IO │ │ ├── BinaryEncoding.cs │ │ ├── BinaryEncoding.cs.meta │ │ ├── FileUserData.cs │ │ ├── FileUserData.cs.meta │ │ ├── FileUserDataBase.cs │ │ ├── FileUserDataBase.cs.meta │ │ ├── StandardIOFileUserDataBase.cs │ │ ├── StandardIOFileUserDataBase.cs.meta │ │ ├── StreamFileUserDataBase.cs │ │ └── StreamFileUserDataBase.cs.meta │ ├── IoModule.cs │ ├── IoModule.cs.meta │ ├── JsonModule.cs │ ├── JsonModule.cs.meta │ ├── LoadModule.cs │ ├── LoadModule.cs.meta │ ├── MathModule.cs │ ├── MathModule.cs.meta │ ├── MetaTableModule.cs │ ├── MetaTableModule.cs.meta │ ├── OsSystemModule.cs │ ├── OsSystemModule.cs.meta │ ├── OsTimeModule.cs │ ├── OsTimeModule.cs.meta │ ├── StringLib.meta │ ├── StringLib │ │ ├── KopiLua_StrLib.cs │ │ ├── KopiLua_StrLib.cs.meta │ │ ├── StringRange.cs │ │ └── StringRange.cs.meta │ ├── StringModule.cs │ ├── StringModule.cs.meta │ ├── TableIteratorsModule.cs │ ├── TableIteratorsModule.cs.meta │ ├── TableModule.cs │ └── TableModule.cs.meta │ ├── DataStructs.meta │ ├── DataStructs │ ├── Extension_Methods.cs │ ├── Extension_Methods.cs.meta │ ├── FastStack.cs │ ├── FastStack.cs.meta │ ├── FastStackDynamic.cs │ ├── FastStackDynamic.cs.meta │ ├── LinkedListIndex.cs │ ├── LinkedListIndex.cs.meta │ ├── MultiDictionary.cs │ ├── MultiDictionary.cs.meta │ ├── ReferenceEqualityComparer.cs │ ├── ReferenceEqualityComparer.cs.meta │ ├── Slice.cs │ └── Slice.cs.meta │ ├── DataTypes.meta │ ├── DataTypes │ ├── CallbackArguments.cs │ ├── CallbackArguments.cs.meta │ ├── CallbackFunction.cs │ ├── CallbackFunction.cs.meta │ ├── Closure.cs │ ├── Closure.cs.meta │ ├── Coroutine.cs │ ├── Coroutine.cs.meta │ ├── CoroutineState.cs │ ├── CoroutineState.cs.meta │ ├── DataType.cs │ ├── DataType.cs.meta │ ├── DynValue.cs │ ├── DynValue.cs.meta │ ├── IScriptPrivateResource.cs │ ├── IScriptPrivateResource.cs.meta │ ├── RefIdObject.cs │ ├── RefIdObject.cs.meta │ ├── ScriptFunctionDelegate.cs │ ├── ScriptFunctionDelegate.cs.meta │ ├── SymbolRef.cs │ ├── SymbolRef.cs.meta │ ├── SymbolRefType.cs │ ├── SymbolRefType.cs.meta │ ├── Table.cs │ ├── Table.cs.meta │ ├── TablePair.cs │ ├── TablePair.cs.meta │ ├── TailCallData.cs │ ├── TailCallData.cs.meta │ ├── TypeValidationFlags.cs │ ├── TypeValidationFlags.cs.meta │ ├── UserData.cs │ ├── UserData.cs.meta │ ├── WellKnownSymbols.cs │ ├── WellKnownSymbols.cs.meta │ ├── YieldRequest.cs │ └── YieldRequest.cs.meta │ ├── Debugging.meta │ ├── Debugging │ ├── DebugService.cs │ ├── DebugService.cs.meta │ ├── DebuggerAction.cs │ ├── DebuggerAction.cs.meta │ ├── DebuggerCaps.cs │ ├── DebuggerCaps.cs.meta │ ├── IDebugger.cs │ ├── IDebugger.cs.meta │ ├── SourceCode.cs │ ├── SourceCode.cs.meta │ ├── SourceRef.cs │ ├── SourceRef.cs.meta │ ├── WatchItem.cs │ ├── WatchItem.cs.meta │ ├── WatchType.cs │ └── WatchType.cs.meta │ ├── Diagnostics.meta │ ├── Diagnostics │ ├── PerformanceCounter.cs │ ├── PerformanceCounter.cs.meta │ ├── PerformanceCounterType.cs │ ├── PerformanceCounterType.cs.meta │ ├── PerformanceCounters.meta │ ├── PerformanceCounters │ │ ├── DummyPerformanceStopwatch.cs │ │ ├── DummyPerformanceStopwatch.cs.meta │ │ ├── GlobalPerformanceStopwatch.cs │ │ ├── GlobalPerformanceStopwatch.cs.meta │ │ ├── IPerformanceStopwatch.cs │ │ ├── IPerformanceStopwatch.cs.meta │ │ ├── PerformanceStopwatch.cs │ │ └── PerformanceStopwatch.cs.meta │ ├── PerformanceResult.cs │ ├── PerformanceResult.cs.meta │ ├── PerformanceStatistics.cs │ └── PerformanceStatistics.cs.meta │ ├── Errors.meta │ ├── Errors │ ├── DynamicExpressionException.cs │ ├── DynamicExpressionException.cs.meta │ ├── InternalErrorException.cs │ ├── InternalErrorException.cs.meta │ ├── InterpreterException.cs │ ├── InterpreterException.cs.meta │ ├── ScriptRuntimeException.cs │ ├── ScriptRuntimeException.cs.meta │ ├── SyntaxErrorException.cs │ └── SyntaxErrorException.cs.meta │ ├── Execution.meta │ ├── Execution │ ├── DynamicExpression.cs │ ├── DynamicExpression.cs.meta │ ├── InstructionFieldUsage.cs │ ├── InstructionFieldUsage.cs.meta │ ├── Scopes.meta │ ├── Scopes │ │ ├── BuildTimeScope.cs │ │ ├── BuildTimeScope.cs.meta │ │ ├── BuildTimeScopeBlock.cs │ │ ├── BuildTimeScopeBlock.cs.meta │ │ ├── BuildTimeScopeFrame.cs │ │ ├── BuildTimeScopeFrame.cs.meta │ │ ├── ClosureContext.cs │ │ ├── ClosureContext.cs.meta │ │ ├── IClosureBuilder.cs │ │ ├── IClosureBuilder.cs.meta │ │ ├── LoopTracker.cs │ │ ├── LoopTracker.cs.meta │ │ ├── RuntimeScopeBlock.cs │ │ ├── RuntimeScopeBlock.cs.meta │ │ ├── RuntimeScopeFrame.cs │ │ └── RuntimeScopeFrame.cs.meta │ ├── ScriptExecutionContext.cs │ ├── ScriptExecutionContext.cs.meta │ ├── ScriptLoadingContext.cs │ ├── ScriptLoadingContext.cs.meta │ ├── VM.meta │ └── VM │ │ ├── ByteCode.cs │ │ ├── ByteCode.cs.meta │ │ ├── CallStackItem.cs │ │ ├── CallStackItem.cs.meta │ │ ├── CallStackItemFlags.cs │ │ ├── CallStackItemFlags.cs.meta │ │ ├── ExecutionState.cs │ │ ├── ExecutionState.cs.meta │ │ ├── Instruction.cs │ │ ├── Instruction.cs.meta │ │ ├── OpCode.cs │ │ ├── OpCode.cs.meta │ │ ├── OpCodeMetadataType.cs │ │ ├── OpCodeMetadataType.cs.meta │ │ ├── Processor.meta │ │ └── Processor │ │ ├── DebugContext.cs │ │ ├── DebugContext.cs.meta │ │ ├── Processor.cs │ │ ├── Processor.cs.meta │ │ ├── Processor_BinaryDump.cs │ │ ├── Processor_BinaryDump.cs.meta │ │ ├── Processor_Coroutines.cs │ │ ├── Processor_Coroutines.cs.meta │ │ ├── Processor_Debugger.cs │ │ ├── Processor_Debugger.cs.meta │ │ ├── Processor_Errors.cs │ │ ├── Processor_Errors.cs.meta │ │ ├── Processor_IExecutionContext.cs │ │ ├── Processor_IExecutionContext.cs.meta │ │ ├── Processor_InstructionLoop.cs │ │ ├── Processor_InstructionLoop.cs.meta │ │ ├── Processor_Scope.cs │ │ ├── Processor_Scope.cs.meta │ │ ├── Processor_UtilityFunctions.cs │ │ └── Processor_UtilityFunctions.cs.meta │ ├── IO.meta │ ├── IO │ ├── BinDumpBinaryReader.cs │ ├── BinDumpBinaryReader.cs.meta │ ├── BinDumpBinaryWriter.cs │ ├── BinDumpBinaryWriter.cs.meta │ ├── UndisposableStream.cs │ └── UndisposableStream.cs.meta │ ├── Interop.meta │ ├── Interop │ ├── Attributes.meta │ ├── Attributes │ │ ├── MoonSharpHiddenAttribute.cs │ │ ├── MoonSharpHiddenAttribute.cs.meta │ │ ├── MoonSharpHideMemberAttribute.cs │ │ ├── MoonSharpHideMemberAttribute.cs.meta │ │ ├── MoonSharpPropertyAttribute.cs │ │ ├── MoonSharpPropertyAttribute.cs.meta │ │ ├── MoonSharpUserDataAttribute.cs │ │ ├── MoonSharpUserDataAttribute.cs.meta │ │ ├── MoonSharpUserDataMetamethodAttribute.cs │ │ ├── MoonSharpUserDataMetamethodAttribute.cs.meta │ │ ├── MoonSharpVisibleAttribute.cs │ │ └── MoonSharpVisibleAttribute.cs.meta │ ├── BasicDescriptors.meta │ ├── BasicDescriptors │ │ ├── DispatchingUserDataDescriptor.cs │ │ ├── DispatchingUserDataDescriptor.cs.meta │ │ ├── IMemberDescriptor.cs │ │ ├── IMemberDescriptor.cs.meta │ │ ├── IOptimizableDescriptor.cs │ │ ├── IOptimizableDescriptor.cs.meta │ │ ├── IOverloadableMemberDescriptor.cs │ │ ├── IOverloadableMemberDescriptor.cs.meta │ │ ├── MemberDescriptorAccess.cs │ │ ├── MemberDescriptorAccess.cs.meta │ │ ├── ParameterDescriptor.cs │ │ └── ParameterDescriptor.cs.meta │ ├── Converters.meta │ ├── Converters │ │ ├── ClrToScriptConversions.cs │ │ ├── ClrToScriptConversions.cs.meta │ │ ├── NumericConversions.cs │ │ ├── NumericConversions.cs.meta │ │ ├── ScriptToClrConversions.cs │ │ ├── ScriptToClrConversions.cs.meta │ │ ├── StringConversions.cs │ │ ├── StringConversions.cs.meta │ │ ├── TableConversions.cs │ │ └── TableConversions.cs.meta │ ├── CustomConvertersCollection.cs │ ├── CustomConvertersCollection.cs.meta │ ├── DescriptorHelpers.cs │ ├── DescriptorHelpers.cs.meta │ ├── IGeneratorUserDataDescriptor.cs │ ├── IGeneratorUserDataDescriptor.cs.meta │ ├── IUserDataDescriptor.cs │ ├── IUserDataDescriptor.cs.meta │ ├── IUserDataMemberDescriptor.cs │ ├── IUserDataMemberDescriptor.cs.meta │ ├── IUserDataType.cs │ ├── IUserDataType.cs.meta │ ├── IWireableDescriptor.cs │ ├── IWireableDescriptor.cs.meta │ ├── InteropAccessMode.cs │ ├── InteropAccessMode.cs.meta │ ├── InteropRegistrationPolicy.cs │ ├── InteropRegistrationPolicy.cs.meta │ ├── LuaStateInterop.meta │ ├── LuaStateInterop │ │ ├── CharPtr.cs │ │ ├── CharPtr.cs.meta │ │ ├── LuaBase.cs │ │ ├── LuaBase.cs.meta │ │ ├── LuaBase_CLib.cs │ │ ├── LuaBase_CLib.cs.meta │ │ ├── LuaLBuffer.cs │ │ ├── LuaLBuffer.cs.meta │ │ ├── LuaState.cs │ │ ├── LuaState.cs.meta │ │ ├── Tools.cs │ │ └── Tools.cs.meta │ ├── PredefinedUserData.meta │ ├── PredefinedUserData │ │ ├── AnonWrapper.cs │ │ ├── AnonWrapper.cs.meta │ │ ├── EnumerableWrapper.cs │ │ └── EnumerableWrapper.cs.meta │ ├── PropertyTableAssigner.cs │ ├── PropertyTableAssigner.cs.meta │ ├── ProxyObjects.meta │ ├── ProxyObjects │ │ ├── DelegateProxyFactory.cs │ │ ├── DelegateProxyFactory.cs.meta │ │ ├── IProxyFactory.cs │ │ └── IProxyFactory.cs.meta │ ├── ReflectionSpecialNames.cs │ ├── ReflectionSpecialNames.cs.meta │ ├── RegistrationPolicies.meta │ ├── RegistrationPolicies │ │ ├── AutomaticRegistrationPolicy.cs │ │ ├── AutomaticRegistrationPolicy.cs.meta │ │ ├── DefaultRegistrationPolicy.cs │ │ ├── DefaultRegistrationPolicy.cs.meta │ │ ├── IRegistrationPolicy.cs │ │ ├── IRegistrationPolicy.cs.meta │ │ ├── PermanentRegistrationPolicy.cs │ │ └── PermanentRegistrationPolicy.cs.meta │ ├── StandardDescriptors.meta │ ├── StandardDescriptors │ │ ├── AutoDescribingUserDataDescriptor.cs │ │ ├── AutoDescribingUserDataDescriptor.cs.meta │ │ ├── CompositeUserDataDescriptor.cs │ │ ├── CompositeUserDataDescriptor.cs.meta │ │ ├── EventFacade.cs │ │ ├── EventFacade.cs.meta │ │ ├── HardwiredDescriptors.meta │ │ ├── HardwiredDescriptors │ │ │ ├── DefaultValue.cs │ │ │ ├── DefaultValue.cs.meta │ │ │ ├── HardwiredMemberDescriptor.cs │ │ │ ├── HardwiredMemberDescriptor.cs.meta │ │ │ ├── HardwiredMethodMemberDescriptor.cs │ │ │ ├── HardwiredMethodMemberDescriptor.cs.meta │ │ │ ├── HardwiredUserDataDescriptor.cs │ │ │ └── HardwiredUserDataDescriptor.cs.meta │ │ ├── MemberDescriptors.meta │ │ ├── MemberDescriptors │ │ │ ├── ArrayMemberDescriptor.cs │ │ │ ├── ArrayMemberDescriptor.cs.meta │ │ │ ├── DynValueMemberDescriptor.cs │ │ │ ├── DynValueMemberDescriptor.cs.meta │ │ │ ├── FunctionMemberDescriptorBase.cs │ │ │ ├── FunctionMemberDescriptorBase.cs.meta │ │ │ ├── ObjectCallbackMemberDescriptor.cs │ │ │ └── ObjectCallbackMemberDescriptor.cs.meta │ │ ├── ProxyUserDataDescriptor.cs │ │ ├── ProxyUserDataDescriptor.cs.meta │ │ ├── ReflectionMemberDescriptors.meta │ │ ├── ReflectionMemberDescriptors │ │ │ ├── EventMemberDescriptor.cs │ │ │ ├── EventMemberDescriptor.cs.meta │ │ │ ├── FieldMemberDescriptor.cs │ │ │ ├── FieldMemberDescriptor.cs.meta │ │ │ ├── MethodMemberDescriptor.cs │ │ │ ├── MethodMemberDescriptor.cs.meta │ │ │ ├── OverloadedMethodMemberDescriptor.cs │ │ │ ├── OverloadedMethodMemberDescriptor.cs.meta │ │ │ ├── PropertyMemberDescriptor.cs │ │ │ ├── PropertyMemberDescriptor.cs.meta │ │ │ ├── ValueTypeDefaultCtorMemberDescriptor.cs │ │ │ └── ValueTypeDefaultCtorMemberDescriptor.cs.meta │ │ ├── StandardEnumUserDataDescriptor.cs │ │ ├── StandardEnumUserDataDescriptor.cs.meta │ │ ├── StandardGenericsUserDataDescriptor.cs │ │ ├── StandardGenericsUserDataDescriptor.cs.meta │ │ ├── StandardUserDataDescriptor.cs │ │ └── StandardUserDataDescriptor.cs.meta │ ├── UserDataMemberType.cs │ ├── UserDataMemberType.cs.meta │ ├── UserDataRegistries.meta │ └── UserDataRegistries │ │ ├── ExtensionMethodsRegistry.cs │ │ ├── ExtensionMethodsRegistry.cs.meta │ │ ├── TypeDescriptorRegistry.cs │ │ └── TypeDescriptorRegistry.cs.meta │ ├── LinqHelpers.cs │ ├── LinqHelpers.cs.meta │ ├── Loaders.meta │ ├── Loaders │ ├── EmbeddedResourcesScriptLoader.cs │ ├── EmbeddedResourcesScriptLoader.cs.meta │ ├── FileSystemScriptLoader.cs │ ├── FileSystemScriptLoader.cs.meta │ ├── IScriptLoader.cs │ ├── IScriptLoader.cs.meta │ ├── InvalidScriptLoader.cs │ ├── InvalidScriptLoader.cs.meta │ ├── ScriptLoaderBase.cs │ ├── ScriptLoaderBase.cs.meta │ ├── UnityAssetsScriptLoader.cs │ └── UnityAssetsScriptLoader.cs.meta │ ├── Modules.meta │ ├── Modules │ ├── CoreModules.cs │ ├── CoreModules.cs.meta │ ├── ModuleRegister.cs │ ├── ModuleRegister.cs.meta │ ├── MoonSharpModuleAttribute.cs │ ├── MoonSharpModuleAttribute.cs.meta │ ├── MoonSharpModuleConstantAttribute.cs │ ├── MoonSharpModuleConstantAttribute.cs.meta │ ├── MoonSharpModuleMethodAttribute.cs │ └── MoonSharpModuleMethodAttribute.cs.meta │ ├── NameSpace_XmlHelp.cs │ ├── NameSpace_XmlHelp.cs.meta │ ├── Options.meta │ ├── Options │ ├── ColonOperatorBehaviour.cs │ └── ColonOperatorBehaviour.cs.meta │ ├── Platforms.meta │ ├── Platforms │ ├── DotNetCorePlatformAccessor.cs │ ├── DotNetCorePlatformAccessor.cs.meta │ ├── IPlatformAccessor.cs │ ├── IPlatformAccessor.cs.meta │ ├── LimitedPlatformAccessor.cs │ ├── LimitedPlatformAccessor.cs.meta │ ├── PlatformAccessorBase.cs │ ├── PlatformAccessorBase.cs.meta │ ├── PlatformAutoDetector.cs │ ├── PlatformAutoDetector.cs.meta │ ├── StandardFileType.cs │ ├── StandardFileType.cs.meta │ ├── StandardPlatformAccessor.cs │ └── StandardPlatformAccessor.cs.meta │ ├── REPL.meta │ ├── REPL │ ├── ReplHistoryNavigator.cs │ ├── ReplHistoryNavigator.cs.meta │ ├── ReplInterpreter.cs │ ├── ReplInterpreter.cs.meta │ ├── ReplInterpreterScriptLoader.cs │ └── ReplInterpreterScriptLoader.cs.meta │ ├── Script.cs │ ├── Script.cs.meta │ ├── ScriptGlobalOptions.cs │ ├── ScriptGlobalOptions.cs.meta │ ├── ScriptOptions.cs │ ├── ScriptOptions.cs.meta │ ├── Serialization.meta │ ├── Serialization │ ├── Json.meta │ ├── Json │ │ ├── JsonNull.cs │ │ ├── JsonNull.cs.meta │ │ ├── JsonTableConverter.cs │ │ └── JsonTableConverter.cs.meta │ ├── ObjectValueConverter.cs │ ├── ObjectValueConverter.cs.meta │ ├── SerializationExtensions.cs │ └── SerializationExtensions.cs.meta │ ├── Tree.meta │ └── Tree │ ├── Expression_.cs │ ├── Expression_.cs.meta │ ├── Expressions.meta │ ├── Expressions │ ├── AdjustmentExpression.cs │ ├── AdjustmentExpression.cs.meta │ ├── BinaryOperatorExpression.cs │ ├── BinaryOperatorExpression.cs.meta │ ├── DynamicExprExpression.cs │ ├── DynamicExprExpression.cs.meta │ ├── ExprListExpression.cs │ ├── ExprListExpression.cs.meta │ ├── FunctionCallExpression.cs │ ├── FunctionCallExpression.cs.meta │ ├── FunctionDefinitionExpression.cs │ ├── FunctionDefinitionExpression.cs.meta │ ├── IndexExpression.cs │ ├── IndexExpression.cs.meta │ ├── LiteralExpression.cs │ ├── LiteralExpression.cs.meta │ ├── SymbolRefExpression.cs │ ├── SymbolRefExpression.cs.meta │ ├── TableConstructor.cs │ ├── TableConstructor.cs.meta │ ├── UnaryOperatorExpression.cs │ └── UnaryOperatorExpression.cs.meta │ ├── Fast_Interface.meta │ ├── Fast_Interface │ ├── Loader_Fast.cs │ └── Loader_Fast.cs.meta │ ├── IVariable.cs │ ├── IVariable.cs.meta │ ├── Lexer.meta │ ├── Lexer │ ├── Lexer.cs │ ├── Lexer.cs.meta │ ├── LexerUtils.cs │ ├── LexerUtils.cs.meta │ ├── Token.cs │ ├── Token.cs.meta │ ├── TokenType.cs │ └── TokenType.cs.meta │ ├── Loop.cs │ ├── Loop.cs.meta │ ├── NodeBase.cs │ ├── NodeBase.cs.meta │ ├── Statement.cs │ ├── Statement.cs.meta │ ├── Statements.meta │ └── Statements │ ├── AssignmentStatement.cs │ ├── AssignmentStatement.cs.meta │ ├── BreakStatement.cs │ ├── BreakStatement.cs.meta │ ├── ChunkStatement.cs │ ├── ChunkStatement.cs.meta │ ├── CompositeStatement.cs │ ├── CompositeStatement.cs.meta │ ├── EmptyStatement.cs │ ├── EmptyStatement.cs.meta │ ├── ForEachLoopStatement.cs │ ├── ForEachLoopStatement.cs.meta │ ├── ForLoopStatement.cs │ ├── ForLoopStatement.cs.meta │ ├── FunctionCallStatement.cs │ ├── FunctionCallStatement.cs.meta │ ├── FunctionDefinitionStatement.cs │ ├── FunctionDefinitionStatement.cs.meta │ ├── GotoStatement.cs │ ├── GotoStatement.cs.meta │ ├── IfStatement.cs │ ├── IfStatement.cs.meta │ ├── LabelStatement.cs │ ├── LabelStatement.cs.meta │ ├── RepeatStatement.cs │ ├── RepeatStatement.cs.meta │ ├── ReturnStatement.cs │ ├── ReturnStatement.cs.meta │ ├── ScopeBlockStatement.cs │ ├── ScopeBlockStatement.cs.meta │ ├── WhileStatement.cs │ └── WhileStatement.cs.meta ├── Documentation ├── custom_command_parser.png ├── custom_commands.png ├── custom_feedback_form.png ├── custom_pause_handler.png └── header.png ├── LICENSE.txt ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md ├── UWP ├── project.json └── project.lock.json └── UnityPackageManager └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | #Junk folders 2 | Library/* 3 | Temp/* 4 | Assets/Tests/* 5 | Assets/Tests* 6 | Assets/Testing/* 7 | Assets/Testing* 8 | Assets/Local/* 9 | Assets/Local* 10 | Build/* 11 | Assets/UnityVS* 12 | obj/* 13 | .vs/* 14 | 15 | #Junk files 16 | Assets/Tests.meta 17 | Assembly-CSharp* 18 | Assembly-UnityScript* 19 | Assembly-Boo* 20 | *.sln 21 | *.suo 22 | *.csproj 23 | *.userprefs 24 | *.usertasks 25 | *.orig.meta 26 | *.orig 27 | *.pfx 28 | *.pfx.meta 29 | *.keystore 30 | Plan.txt 31 | Plan.txt.meta 32 | -------------------------------------------------------------------------------- /Assets/Console.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebe0a3cc343052e45868e1aa5a7a1c45 3 | folderAsset: yes 4 | timeCreated: 1502540636 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Addons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ca5e6f0bce699246a3108d654f896fc 3 | folderAsset: yes 4 | timeCreated: 1502879006 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 997e0e2bf24ae6d44ac0bea976ef0cc8 3 | folderAsset: yes 4 | timeCreated: 1502879031 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe265a6c2ed21e2429c237c657748594 3 | folderAsset: yes 4 | timeCreated: 1504873871 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser/Source/LuaCommandAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Luminosity.Console 4 | { 5 | public class LuaCommandAttribute : Attribute 6 | { 7 | public readonly string Help; 8 | 9 | public LuaCommandAttribute(string help) 10 | { 11 | Help = help; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser/Source/LuaCommandAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9241fa357c4f1124db6df81a04b014d3 3 | timeCreated: 1504696809 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser/Source/LuaCommandModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1909f632375ca42b7c73050ca28e99 3 | timeCreated: 1502807112 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser/Source/LuaCommandParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e81f3dc5b7ff1e145949e97ffaf797c6 3 | timeCreated: 1502879498 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser/Source/ReflectionUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11e52c8bbff7f9349a109d1ad62b7a44 3 | timeCreated: 1516129066 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Console/Addons/LuaCommandParser/Source/StandardCommandModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13c2391d9ca9b804aa8615d7504a939b 3 | timeCreated: 1502806504 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45a8857f765f24c4994a604b90dd131e 3 | folderAsset: yes 4 | timeCreated: 1516126940 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a61d4d33e940fd548bfb259e56cbd0d7 3 | folderAsset: yes 4 | timeCreated: 1516127712 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/AsyncOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e489454afc6d6f445b5d7a34c3e888f1 3 | timeCreated: 1516126973 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/Card.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Luminosity.Trello 3 | { 4 | public struct Card 5 | { 6 | public string Name; 7 | public string ListID; 8 | public string Description; 9 | public string Comment; 10 | public string Attachment; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/Card.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67cd4499d1250a540a6787e4177cff34 3 | timeCreated: 1515840578 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/ImgurAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc491ab33a127274285bbf0c9d74413a 3 | timeCreated: 1515850133 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/MiniJson.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faa4991004581b54a86128457a625e95 3 | timeCreated: 1515844552 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/TrelloAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 738701ad4127eeb409a6459cdf45e1ad 3 | timeCreated: 1515840578 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/TrelloFeedbackForm.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02f9962a78b9d034aa1bc3df757e0626 3 | timeCreated: 1515744004 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/TrelloFormSettings.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Luminosity.Console 4 | { 5 | [CreateAssetMenu(menuName = "Luminosity/Trello Form Settings")] 6 | public class TrelloFormSettings : ScriptableObject 7 | { 8 | public string TrelloAppKey; 9 | public string TrelloAccessToken; 10 | public string ImgurClientID; 11 | public string BugListID; 12 | public string SuggestionsListID; 13 | public string GeneralFeedbackListID; 14 | } 15 | } -------------------------------------------------------------------------------- /Assets/Console/Addons/TrelloFeedbackForm/Source/TrelloFormSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd78781238c8fc4489620e4886df8f9d 3 | timeCreated: 1515744022 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0e1e0c93092c9d4e9d8995e9b1afdd0 3 | folderAsset: yes 4 | timeCreated: 1504703833 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Resources/DebugConsole.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cdc620fcba97914ba5f7a7ca303cb5f 3 | folderAsset: yes 4 | timeCreated: 1504703841 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Resources/DebugConsole/debug_console.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c04c91b5f2a723429b4e232c7d76ae4 3 | timeCreated: 1504690360 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Resources/DebugConsole/event_system.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 869deaf34e366c843a02ad559340f074 3 | timeCreated: 1504690251 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4be062cfc5e7a841b67e57049e30503 3 | folderAsset: yes 4 | timeCreated: 1502540641 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Source/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 740f9b036dceabe4b942e41216497d6f 3 | folderAsset: yes 4 | timeCreated: 1502540646 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Source/Editor/Inspectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84a4014ab84b1e74bae878b5da3b1dba 3 | folderAsset: yes 4 | timeCreated: 1502864496 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Source/Editor/Inspectors/DebugConsoleUIInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9faa3b4138b950844852f36f073a6a83 3 | timeCreated: 1502864511 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c5753977e24de54b932f5db4ebf7eb1 3 | folderAsset: yes 4 | timeCreated: 1502540650 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/DebugConsole.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99f8b09d949e36d41958b0136ce7065a 3 | timeCreated: 1502881768 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: -10000 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/DebugLevel.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Luminosity.Console 3 | { 4 | public enum DebugLevel 5 | { 6 | Low, // Errors and exceptions 7 | Normal, // Errors, exceptions and warnings 8 | High // Errors, exceptions, warnings and debug logs 9 | } 10 | } -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/DebugLevel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64f4a5df54fbeb047b8686be20f3237e 3 | timeCreated: 1502548668 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/GenericPauseHandler.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Luminosity.Console 4 | { 5 | public class GenericPauseHandler : MonoBehaviour, IPauseHandler 6 | { 7 | private void Start() 8 | { 9 | DebugConsole.PauseHandler = this; 10 | } 11 | 12 | private void OnDestroy() 13 | { 14 | if(DebugConsole.PauseHandler == (IPauseHandler)this) 15 | { 16 | DebugConsole.PauseHandler = null; 17 | } 18 | } 19 | 20 | public void OnDebugConsolePause() 21 | { 22 | Time.timeScale = 0.0f; 23 | } 24 | 25 | public void OnDebugConsoleUnpause() 26 | { 27 | Time.timeScale = 1.0f; 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/GenericPauseHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c43d8e75930e1478b27818e86fe6f3 3 | timeCreated: 1504869774 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/ICommandParser.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Luminosity.Console 3 | { 4 | public interface ICommandParser 5 | { 6 | void Run(string command); 7 | string PrintHelp(); 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/ICommandParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beabb5171ccb071408fce43fe15ecc55 3 | timeCreated: 1502878923 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/IPauseHandler.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Luminosity.Console 3 | { 4 | public interface IPauseHandler 5 | { 6 | void OnDebugConsolePause(); 7 | void OnDebugConsoleUnpause(); 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/IPauseHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fba98a30cfddc3c42959f4b5c8b37fe7 3 | timeCreated: 1502881259 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65b947fdfbad10449b2dab1f319f9257 3 | folderAsset: yes 4 | timeCreated: 1502867056 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/Internal/DebugConsolePrefs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a3a5b29294ef2649a92206fe147ade5 3 | timeCreated: 1502867056 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/Internal/DebugConsoleUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: deffc51f466ba5448b958cd67ac99388 3 | timeCreated: 1504700249 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/LogLevel.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Luminosity.Console 3 | { 4 | public enum LogLevel 5 | { 6 | Debug = 1 << 0, 7 | Warning = 1 << 1, 8 | Error = 1 << 2 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/LogLevel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e62742fa4bf489c4fb1c99b78f14df1b 3 | timeCreated: 1502801188 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/LogMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7c7cc64cb2b8964ca39b640c0233081 3 | timeCreated: 1502547743 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/ToggleDebugConsoleOnKey.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Luminosity.Console 4 | { 5 | public class ToggleDebugConsoleOnKey : MonoBehaviour 6 | { 7 | public KeyCode KeyCode; 8 | 9 | private void Update() 10 | { 11 | if(Input.GetKeyDown(KeyCode)) 12 | { 13 | if(DebugConsole.IsOpen) 14 | { 15 | DebugConsole.Close(); 16 | } 17 | else 18 | { 19 | DebugConsole.Open(); 20 | } 21 | } 22 | } 23 | 24 | private void Reset() 25 | { 26 | KeyCode = KeyCode.BackQuote; 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/ToggleDebugConsoleOnKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c70f19975bcf70418b8ff02a0794fdf 3 | timeCreated: 1502865671 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66b98328b949af04b8b8e28238cae31a 3 | folderAsset: yes 4 | timeCreated: 1502543986 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/DebugConsoleUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29cb385e487ae45448e29e4e6268681c 3 | timeCreated: 1502881808 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: -9999 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/DialogBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec9216a6ec5b3fd46bc0b5d2339f018f 3 | timeCreated: 1504697523 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/FeedbackType.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Luminosity.Console.UI 3 | { 4 | public enum FeedbackType 5 | { 6 | Bug = 0, 7 | Suggestion, 8 | Other 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/FeedbackType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7abaf5f7562257408e75ee04c846ee8 3 | timeCreated: 1504700249 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/FeedbackUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df8f91b1ddf17c14caa89436ccbd40a3 3 | timeCreated: 1504697523 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/HelpUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97bb1df8e2dca6342abee55cf9170aba 3 | timeCreated: 1517822721 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/IFeedbackForm.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f34f57d8cd680974ba9fd4dbe5375ee0 3 | timeCreated: 1504700249 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/InputField.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine.EventSystems; 2 | 3 | namespace Luminosity.Console.UI 4 | { 5 | public class InputField : UnityEngine.UI.InputField 6 | { 7 | public bool IsDeselecting { get; private set; } 8 | public bool IsBeingDisabled { get; private set; } 9 | 10 | public override void OnDeselect(BaseEventData eventData) 11 | { 12 | IsDeselecting = true; 13 | base.OnDeselect(eventData); 14 | IsDeselecting = false; 15 | } 16 | 17 | protected override void OnDisable() 18 | { 19 | IsBeingDisabled = true; 20 | base.OnDisable(); 21 | IsBeingDisabled = false; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/InputField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebcbc79418426dc4bb25ca454b9128b3 3 | timeCreated: 1502872349 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/LoadingDialogBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03e199ab2eba8664d882507590507010 3 | timeCreated: 1504697523 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/LogMessageCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 714e054657f3adc4992fa6035061e7a3 3 | timeCreated: 1516959417 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/LogMessageEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ee72a312f278344cb83de0126982673 3 | timeCreated: 1502797560 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/LogScrollView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79640ad95f8a4c04c938bf3675e4dbaf 3 | timeCreated: 1516956907 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/MessageFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbb846eb5341f2a4ca3f227d136a3428 3 | timeCreated: 1502801188 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/SpinningIcon.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Luminosity.Console.UI 4 | { 5 | public class SpinningIcon : MonoBehaviour 6 | { 7 | [SerializeField] 8 | private float m_iconSpinSpeed; 9 | 10 | private void OnEnable() 11 | { 12 | transform.localEulerAngles = Vector3.zero; 13 | } 14 | 15 | private void Update() 16 | { 17 | Vector3 eulerAngles = transform.localEulerAngles; 18 | eulerAngles += Vector3.forward * m_iconSpinSpeed * Time.unscaledDeltaTime; 19 | eulerAngles.z %= 360; 20 | 21 | transform.localEulerAngles = eulerAngles; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/SpinningIcon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0be0b2f0660e35d44997dba1a651628c 3 | timeCreated: 1504700249 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/ToggleImageAction.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | 4 | namespace Luminosity.Console.UI 5 | { 6 | public class ToggleImageAction : MonoBehaviour 7 | { 8 | [SerializeField] 9 | private Image m_targetImage; 10 | [SerializeField] 11 | private bool m_invert; 12 | 13 | public void ToggleImage() 14 | { 15 | m_targetImage.enabled = !m_targetImage.enabled; 16 | } 17 | 18 | public void SetImageEnabled(bool enabled) 19 | { 20 | m_targetImage.enabled = m_invert ? !enabled : enabled; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Assets/Console/Source/Runtime/UI/ToggleImageAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15a4e202769e3b54ba9720acc93ea96c 3 | timeCreated: 1502544041 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Console/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfcaa9ceb5e621e418def55d2ac6a15d 3 | folderAsset: yes 4 | timeCreated: 1502541067 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Console/Sprites/icon_error.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Assets/Console/Sprites/icon_error.psd -------------------------------------------------------------------------------- /Assets/Console/Sprites/icon_info.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Assets/Console/Sprites/icon_info.psd -------------------------------------------------------------------------------- /Assets/Console/Sprites/icon_warning.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Assets/Console/Sprites/icon_warning.psd -------------------------------------------------------------------------------- /Assets/Console/Sprites/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Assets/Console/Sprites/loading.png -------------------------------------------------------------------------------- /Assets/Console/Sprites/ui_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Assets/Console/Sprites/ui_skin.png -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41ddaa180a7bf48858ce11b8cec33593 3 | folderAsset: yes 4 | timeCreated: 1475786108 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d146bab99f9448b882add0b6413c8eb 3 | folderAsset: yes 4 | timeCreated: 1475786115 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe983e267963641219d60f73a36907ce 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71b4d33685e4746ca9cfe341d75910d9 3 | folderAsset: yes 4 | timeCreated: 1476112669 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/AsyncDebugger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9984211c3fbdf48d2bab7bc81675b60f 3 | timeCreated: 1476432885 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/EmptyDebugSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e92a4cfb128864cc1a914e4f59b2c73e 3 | timeCreated: 1476432887 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/IAsyncDebuggerClient.cs: -------------------------------------------------------------------------------- 1 | #if (!PCL) && ((!UNITY_5 && !UNITY_5_3_OR_NEWER) || UNITY_STANDALONE) 2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using MoonSharp.Interpreter; 8 | using MoonSharp.Interpreter.Debugging; 9 | 10 | namespace MoonSharp.VsCodeDebugger.DebuggerLogic 11 | { 12 | internal interface IAsyncDebuggerClient 13 | { 14 | void SendStopEvent(); 15 | void OnWatchesUpdated(WatchType watchType); 16 | void OnSourceCodeChanged(int sourceID); 17 | void OnExecutionEnded(); 18 | void OnException(ScriptRuntimeException ex); 19 | void Unbind(); 20 | } 21 | } 22 | 23 | #endif -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/IAsyncDebuggerClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 439fb2da136aa426ab021def5caf0f6e 3 | timeCreated: 1476265156 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/MoonSharpDebugSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e5d177091ab64f8fbd15ad5f48d06ae 3 | timeCreated: 1476432884 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/VariableInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b828a4315be6894f9ae25f9d3cacd0e 3 | timeCreated: 1476265158 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/MoonSharpVsCodeDebugServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f49800a7463743149b597062d1b42a2 3 | timeCreated: 1476432878 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c4fed5fd89f42c5ba1250cd726961b 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK/DebugSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41359a96dff8e497abb39aab280e3dcf 3 | timeCreated: 1476265156 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK/Protocol.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62430b596d436444d80bee2512f25a29 3 | timeCreated: 1476265157 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK/Utilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91853d42160014ebd843ee4e1a4f676e 3 | timeCreated: 1476432884 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d2c5df22fca24da0aab88203047712f 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/AsyncExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66aa67af332e348cbb7dd54b3d5d6433 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CodeAnalysis.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eef0a4b7d8c7458b9f013fcbe0202b3 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CodeAnalysis/AstNode.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.CodeAnalysis 3 | { 4 | class AstNode 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CodeAnalysis/AstNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db3e424c3ff444bb5b4872a8ecb430dd 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d150008f68617545b69adb7e7fe0f28 3 | folderAsset: yes 4 | timeCreated: 1476432865 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Attributes.cs: -------------------------------------------------------------------------------- 1 | #if PCL || ((!UNITY_EDITOR) && (ENABLE_DOTNET)) 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | 7 | namespace System.Reflection 8 | { 9 | internal class ComVisibleAttribute : Attribute 10 | { 11 | public ComVisibleAttribute(bool dummy) 12 | { } 13 | } 14 | internal class GuidAttribute : Attribute 15 | { 16 | public GuidAttribute(string dummy) 17 | { } 18 | } 19 | } 20 | #endif 21 | 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Attributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24be313cbb7a91d42bb1de866ca88289 3 | timeCreated: 1476432878 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Framework.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Reflection; 5 | using System.Text; 6 | using MoonSharp.Interpreter.Compatibility.Frameworks; 7 | 8 | namespace MoonSharp.Interpreter.Compatibility 9 | { 10 | public static class Framework 11 | { 12 | static FrameworkCurrent s_FrameworkCurrent = new FrameworkCurrent(); 13 | 14 | public static FrameworkBase Do { get { return s_FrameworkCurrent; } } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Framework.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96e3b35563b935d4c8baa02b06f40965 3 | timeCreated: 1476432884 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d5353a4a6a04164095893dcf6dcd6cb 3 | folderAsset: yes 4 | timeCreated: 1476432866 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0acf142145bc05446acafd786f0bac46 3 | folderAsset: yes 4 | timeCreated: 1476432866 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbb9f51b6e0b0684ca09c843924edd61 3 | timeCreated: 1476432886 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkClrBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bbb9dec367acb94dbebde49d3745c4d 3 | timeCreated: 1476432876 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkReflectionBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f03cffebd263dcb4ab8680ce8d152968 3 | timeCreated: 1476432887 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCLR.cs: -------------------------------------------------------------------------------- 1 | #if !(DOTNET_CORE || NETFX_CORE) && !PCL 2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Reflection; 7 | using System.Text; 8 | 9 | namespace MoonSharp.Interpreter.Compatibility.Frameworks 10 | { 11 | class FrameworkCurrent : FrameworkClrBase 12 | { 13 | public override bool IsDbNull(object o) 14 | { 15 | return o != null && Convert.IsDBNull(o); 16 | } 17 | 18 | 19 | public override bool StringContainsChar(string str, char chr) 20 | { 21 | return str.Contains(chr); 22 | } 23 | 24 | public override Type GetInterface(Type type, string name) 25 | { 26 | return type.GetInterface(name); 27 | } 28 | } 29 | } 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCLR.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25aeabf9258b9944ab81620030353790 3 | timeCreated: 1476432878 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6df3d0c4b051a347a75d7268c2f6d2a 3 | timeCreated: 1476432886 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkPCL.cs: -------------------------------------------------------------------------------- 1 | #if !(DOTNET_CORE || NETFX_CORE) && PCL 2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | 8 | namespace MoonSharp.Interpreter.Compatibility.Frameworks 9 | { 10 | class FrameworkCurrent : FrameworkClrBase 11 | { 12 | public override bool IsDbNull(object o) 13 | { 14 | return o != null && o.GetType().FullName.StartsWith("System.DBNull"); 15 | } 16 | 17 | public override bool StringContainsChar(string str, char chr) 18 | { 19 | return str.Contains(chr.ToString()); 20 | } 21 | 22 | public override Type GetInterface(Type type, string name) 23 | { 24 | return type.GetInterfaces(). 25 | FirstOrDefault(t => t.Name == name); 26 | } 27 | } 28 | } 29 | 30 | #endif -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkPCL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bac0f6f9dc5d85f41af33f3b83dbee01 3 | timeCreated: 1476432885 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkWin8.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ab1e37f96fc08418f4794c17e8be0c 3 | timeCreated: 1476435850 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Stopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ea8da0a506c1444af1949fa30dd149 3 | timeCreated: 1476432878 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 960b24834b8044fc6acf64f473b5ca61 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/BasicModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eed70b0c3561d4512b8cf9426b5814cd 3 | timeCreated: 1476205335 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/Bit32Module.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c71b14e2cd41a4f70a45ea70cab3e2c7 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/CoroutineModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c160220c9253a4031baa523b549ea9e4 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/DebugModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3743855cdb543c88b2320c61f28424 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/DynamicModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a82c0d3fa46554bd5857d852f9bd2812 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/ErrorHandlingModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25a48a75173cc44959f158f5aed1fc00 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1f6f1bb70deb40239486ed094a36ea2 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/BinaryEncoding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 675a461a252db43b0a24db05a6dbeabc 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserData.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | using System.Text; 3 | 4 | namespace MoonSharp.Interpreter.CoreLib.IO 5 | { 6 | /// 7 | /// Abstract class implementing a file Lua userdata. Methods are meant to be called by Lua code. 8 | /// 9 | internal class FileUserData : StreamFileUserDataBase 10 | { 11 | public FileUserData(Script script, string filename, Encoding encoding, string mode) 12 | { 13 | Stream stream = Script.GlobalOptions.Platform.IO_OpenFile(script, filename, encoding, mode); 14 | 15 | StreamReader reader = (stream.CanRead) ? new StreamReader(stream, encoding) : null; 16 | StreamWriter writer = (stream.CanWrite) ? new StreamWriter(stream, encoding) : null; 17 | 18 | base.Initialize(stream, reader, writer); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af797d1c8ef1a415ca0a84f11c04a6f5 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserDataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e0c682730fd243eca755897f724ff91 3 | timeCreated: 1476432878 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StandardIOFileUserDataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1fccf4c28e9a4667a0a6984cb2c736d 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StreamFileUserDataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07ffca2aa60ad4febb46043b8eb2b531 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IoModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5209e5cca6a8f4dbc888ed4b7e061d55 3 | timeCreated: 1476432882 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/JsonModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df9d3ec3d79f5431c88af4ab97b6f18a 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/LoadModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90b319234a9a342b6a8649eef72352fd 3 | timeCreated: 1476432884 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/MathModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38103786f8d984326b5123cab6ca4b47 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/MetaTableModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3b971ba440d24e91a6ff0bc9e306d59 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsSystemModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb7798955cba48c6b0e19cf3daa219f 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsTimeModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29679b67516094990a23d5066e7af0ea 3 | timeCreated: 1476432879 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a18a955a013284f08b443c601f5b9612 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/KopiLua_StrLib.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d921f217918ee4c0e97d5ad218c273ab 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/StringRange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 155a3aa6f6abc4dd5b920c33c2151dab 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3eb3848b53e142a483d14eb6b5b0484 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableIteratorsModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fb696693dc174ef7b58af6c5943ee38 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e546c66c742f41e3a49f2c94b7bcdf1 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8525c6b6dcc334ffa93491a383ce3145 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/Extension_Methods.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0546d50186dae45b188cb90769f531fb 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56e96f413de90402ab09850b6f0595bb 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStackDynamic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae0613a18d7ac40a9a347eb3a7f035bf 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/LinkedListIndex.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4764798f782dc41a7836a15d09732df9 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/MultiDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21bc1423753524404b9f04f6776374b7 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace MoonSharp.Interpreter.DataStructs 4 | { 5 | /// 6 | /// Implementation of IEqualityComparer enforcing reference equality 7 | /// 8 | internal class ReferenceEqualityComparer : IEqualityComparer 9 | { 10 | bool IEqualityComparer.Equals(object x, object y) 11 | { 12 | return object.ReferenceEquals(x, y); 13 | } 14 | 15 | int IEqualityComparer.GetHashCode(object obj) 16 | { 17 | return obj.GetHashCode(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/ReferenceEqualityComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6c35b07dca764f3c84a55b226e566d9 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/Slice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3b76552db4154323bf03ab9a17c9726 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f7715f68bc084ebea28cfa9651c5e1a 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackArguments.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0cb95a447d5e4c3fa38eac099c683f7 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06332ea2b09864a55b347cf90f8c356a 3 | timeCreated: 1476432875 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/Closure.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1376e6ba9bb8f48d6b90e2cc221c1688 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/Coroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17cc8db8f75a445b98b2dadb6b57fad9 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/CoroutineState.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// State of coroutines 6 | /// 7 | public enum CoroutineState 8 | { 9 | /// 10 | /// This is the main coroutine 11 | /// 12 | Main, 13 | /// 14 | /// Coroutine has not started yet 15 | /// 16 | NotStarted, 17 | /// 18 | /// Coroutine is suspended 19 | /// 20 | Suspended, 21 | /// 22 | /// Coroutine has been forcefully suspended (i.e. auto-yielded) 23 | /// 24 | ForceSuspended, 25 | /// 26 | /// Coroutine is running 27 | /// 28 | Running, 29 | /// 30 | /// Coroutine has terminated 31 | /// 32 | Dead 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/CoroutineState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 302b7cccdc563441aa02f713b8499dd5 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/DataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e69902df68e94fb4a5045ec29223fbe 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/DynValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb946bcf860604e7a80e5f6de7ba52b9 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/IScriptPrivateResource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a91440692a5f477cbbcda0519a017e2 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/RefIdObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c70741410e27f4d988d264b28542f906 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/ScriptFunctionDelegate.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// A Delegate type which can wrap a script function 6 | /// 7 | /// The arguments. 8 | /// The return value of the script function 9 | public delegate object ScriptFunctionDelegate(params object[] args); 10 | /// 11 | /// A Delegate type which can wrap a script function with a generic typed return value 12 | /// 13 | /// 14 | /// The arguments. 15 | /// The return value of the script function 16 | public delegate T ScriptFunctionDelegate(params object[] args); 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/ScriptFunctionDelegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ceff9083490405a894c3449e6ba298 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRef.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58b27c094997047ae9928bf5a12300ec 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRefType.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// Enumeration of the types of SymbolRef 6 | /// 7 | public enum SymbolRefType 8 | { 9 | /// 10 | /// The symbol ref of a local variable 11 | /// 12 | Local, 13 | /// 14 | /// The symbol ref of an upvalue variable 15 | /// 16 | Upvalue, 17 | /// 18 | /// The symbol ref of a global variable 19 | /// 20 | Global, 21 | /// 22 | /// The symbol ref of the global environment 23 | /// 24 | DefaultEnv, 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRefType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3be185a345f9749c89fabf1ebbc303b3 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/Table.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292c9066bc68e43159ce78722a01c6ad 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/TablePair.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1beadb21e231f4d6891d4d7beb1af735 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/TailCallData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31dfb37b59f214af2970db3e9221e434 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/TypeValidationFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbc6163822d6143888f051df856e46fc 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/UserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03de1779812bd4d91ad1a727814c4b44 3 | timeCreated: 1476432875 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/WellKnownSymbols.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// Constants of well known "symbols" in the MoonSharp grammar 6 | /// 7 | public static class WellKnownSymbols 8 | { 9 | /// 10 | /// The variadic argument symbol ("...") 11 | /// 12 | public const string VARARGS = "..."; 13 | 14 | /// 15 | /// The environment symbol ("_ENV") 16 | /// 17 | public const string ENV = "_ENV"; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/WellKnownSymbols.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e13b2437cd7bb41ffbc4dc15747f72b4 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/YieldRequest.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// Class wrapping a request to yield a coroutine 6 | /// 7 | public class YieldRequest 8 | { 9 | /// 10 | /// The return values of the coroutine 11 | /// 12 | public DynValue[] ReturnValues; 13 | 14 | /// 15 | /// Gets or sets a value indicating whether this is a forced yield. 16 | /// 17 | public bool Forced { get; internal set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/YieldRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46a92da4c9cb74156b884a2747c47d18 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49374a2936ec745ae9772ac472ba5a68 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/DebugService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 379514bc3987a421bbe8212078c44357 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e8c0efc458574d55b100345b94437a4 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerCaps.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Debugging 7 | { 8 | /// 9 | /// Enumeration of capabilities for a debugger 10 | /// 11 | [Flags] 12 | public enum DebuggerCaps 13 | { 14 | /// 15 | /// Flag set if the debugger can debug source code 16 | /// 17 | CanDebugSourceCode = 0x1, 18 | /// 19 | /// Flag set if the can debug VM bytecode 20 | /// 21 | CanDebugByteCode = 0x2, 22 | /// 23 | /// Flag set if the debugger uses breakpoints based on lines instead of tokens 24 | /// 25 | HasLineBasedBreakpoints = 0x4 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerCaps.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04d9ee740c4e143d380226cbe30c764d 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/IDebugger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b71f3121415ae4a53b982a2d4d5dfa52 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e0338b248bf246018c51f627e19316d 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceRef.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5d1e04c4f0624d3992544d4cd95f0ca 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4994c0c84e6a4db6be8bc3e5f0e5eee 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 860273ba9b80a4a1593d49aa6f635dc5 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b5a8e9e7757242b6a6ee001fff1b7bb 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3459463391c5b44c2887e430b71fe6ad 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounterType.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Diagnostics 3 | { 4 | /// 5 | /// Enumeration of unit of measures of the performance counters 6 | /// 7 | public enum PerformanceCounterType 8 | { 9 | /// 10 | /// The performance counter is specified in bytes (of memory) 11 | /// 12 | MemoryBytes, 13 | /// 14 | /// The performance counter is specified in milliseconds 15 | /// 16 | TimeMilliseconds, 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounterType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20c8c649dc2fa4dafaee21558a89e22b 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b3cdd8c40a894f9eb42641818d1dcd8 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/DummyPerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a704cc3c74346473b982177587e0a5d6 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/GlobalPerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d577d45b204d44d6e83f9b9b9aa87b85 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/IPerformanceStopwatch.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Diagnostics.PerformanceCounters 4 | { 5 | internal interface IPerformanceStopwatch 6 | { 7 | IDisposable Start(); 8 | PerformanceResult GetResult(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/IPerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d40047edee4d41299107f0971437a01 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/PerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9412c984a07ac419ebfe125e10587369 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a35566b08a4648eb8fc450a2f474ab5 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceStatistics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4da67d6c3268944d1b61e900c6ee03c6 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab6c9254365404ee291f5e483cdcc013 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/DynamicExpressionException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ae9f92c5d814bddb79d2d408445528 3 | timeCreated: 1476432875 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/InternalErrorException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter 4 | { 5 | /// 6 | /// Exception thrown when an inconsistent state is reached in the interpreter 7 | /// 8 | #if !(PCL || ((!UNITY_EDITOR) && (ENABLE_DOTNET)) || NETFX_CORE) 9 | [Serializable] 10 | #endif 11 | public class InternalErrorException : InterpreterException 12 | { 13 | internal InternalErrorException(string message) 14 | : base(message) 15 | { 16 | 17 | } 18 | 19 | internal InternalErrorException(string format, params object[] args) 20 | : base(format, args) 21 | { 22 | 23 | } 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/InternalErrorException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13de1d70141a34d4b8bf573b8e34141e 3 | timeCreated: 1476432876 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/InterpreterException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a33571f2cc4394cbdbc9c36a6169ab2b 3 | timeCreated: 1476432885 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/ScriptRuntimeException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad0eda6e2c434e57bb9a0f0e734f25b 3 | timeCreated: 1476432880 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/SyntaxErrorException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b67a9ceda4da4d3db59ddd83f429de0 3 | timeCreated: 1476432879 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2edd8922123614d8f8adb17141acc4c7 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/DynamicExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ab0d868f03964a7388078a35f3efc96 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/InstructionFieldUsage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c04c0f8c4300420cbff782f16d58ceb 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 820a29f48bbed4387be744ba4987898e 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbaced08cc4ed4cd1a9f03e23721587e 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b791e8fa773646c59cafb0c3d25de14 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeFrame.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 358f799740da74110b5e8484d5e44f8b 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/ClosureContext.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Linq; 3 | 4 | namespace MoonSharp.Interpreter.Execution 5 | { 6 | /// 7 | /// The scope of a closure (container of upvalues) 8 | /// 9 | internal class ClosureContext : List 10 | { 11 | /// 12 | /// Gets the symbols. 13 | /// 14 | public string[] Symbols { get; private set; } 15 | 16 | internal ClosureContext(SymbolRef[] symbols, IEnumerable values) 17 | { 18 | Symbols = symbols.Select(s => s.i_Name).ToArray(); 19 | this.AddRange(values); 20 | } 21 | 22 | internal ClosureContext() 23 | { 24 | Symbols = new string[0]; 25 | } 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/ClosureContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72b8addb6dc01451c9f00b9e3fa6e99c 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/IClosureBuilder.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Execution 3 | { 4 | internal interface IClosureBuilder 5 | { 6 | SymbolRef CreateUpvalue(BuildTimeScope scope, SymbolRef symbol); 7 | 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/IClosureBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aa6722808ba44d63ae56df721463389 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/LoopTracker.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.DataStructs; 2 | using MoonSharp.Interpreter.Execution.VM; 3 | 4 | namespace MoonSharp.Interpreter.Execution 5 | { 6 | interface ILoop 7 | { 8 | void CompileBreak(ByteCode bc); 9 | bool IsBoundary(); 10 | } 11 | 12 | 13 | internal class LoopTracker 14 | { 15 | public FastStack Loops = new FastStack(16384); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/LoopTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c68a60d7d69aa43a0b61e842816f8628 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeBlock.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Execution 4 | { 5 | internal class RuntimeScopeBlock 6 | { 7 | public int From { get; internal set; } 8 | public int To { get; internal set; } 9 | public int ToInclusive { get; internal set; } 10 | 11 | public override string ToString() 12 | { 13 | return String.Format("ScopeBlock : {0} -> {1} --> {2}", From, To, ToInclusive); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7ad49968dc9f47e2b9659c891f4ce64 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeFrame.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace MoonSharp.Interpreter.Execution 4 | { 5 | internal class RuntimeScopeFrame 6 | { 7 | public List DebugSymbols { get; private set; } 8 | public int Count { get { return DebugSymbols.Count; } } 9 | public int ToFirstBlock { get; internal set; } 10 | 11 | public RuntimeScopeFrame() 12 | { 13 | DebugSymbols = new List(); 14 | } 15 | 16 | public override string ToString() 17 | { 18 | return string.Format("ScopeFrame : #{0}", Count); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeFrame.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326d78bb223bf4da9ab216b6e6dca845 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptExecutionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e996c955797e0411581fa95c1a6292f4 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptLoadingContext.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.Debugging; 2 | using MoonSharp.Interpreter.Tree; 3 | 4 | namespace MoonSharp.Interpreter.Execution 5 | { 6 | class ScriptLoadingContext 7 | { 8 | public Script Script { get; private set; } 9 | public BuildTimeScope Scope { get; set; } 10 | public SourceCode Source { get; set; } 11 | public bool Anonymous { get; set; } 12 | public bool IsDynamicExpression { get; set; } 13 | public Lexer Lexer { get; set; } 14 | 15 | public ScriptLoadingContext(Script s) 16 | { 17 | Script = s; 18 | } 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptLoadingContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e91439430f62045af8f2ba3ac7cc22ac 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60ef6708e89cb4c06acfe44b4da24e92 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ByteCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69f30676f2c1f43129e1951bcf1fbb78 3 | timeCreated: 1476432882 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItem.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.Debugging; 2 | 3 | namespace MoonSharp.Interpreter.Execution.VM 4 | { 5 | internal class CallStackItem 6 | { 7 | public int Debug_EntryPoint; 8 | public SymbolRef[] Debug_Symbols; 9 | 10 | public SourceRef CallingSourceRef; 11 | 12 | public CallbackFunction ClrFunction; 13 | public CallbackFunction Continuation; 14 | public CallbackFunction ErrorHandler; 15 | public DynValue ErrorHandlerBeforeUnwind; 16 | 17 | public int BasePointer; 18 | public int ReturnAddress; 19 | public DynValue[] LocalScope; 20 | public ClosureContext ClosureScope; 21 | 22 | public CallStackItemFlags Flags; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0ca8870651834b14b0d156d519c4fd5 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItemFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Execution.VM 4 | { 5 | [Flags] 6 | internal enum CallStackItemFlags 7 | { 8 | None = 0, 9 | 10 | EntryPoint = 1, 11 | ResumeEntryPoint = 3, 12 | CallEntryPoint = 5, 13 | 14 | TailCall = 0x10, 15 | MethodCall = 0x20, 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItemFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 878e867c5978449e69be8ab4ea0dcfd3 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ExecutionState.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.DataStructs; 2 | 3 | namespace MoonSharp.Interpreter.Execution.VM 4 | { 5 | internal sealed class ExecutionState 6 | { 7 | public FastStack ValueStack = new FastStack(131072); 8 | public FastStack ExecutionStack = new FastStack(131072); 9 | public int InstructionPtr = 0; 10 | public CoroutineState State = CoroutineState.NotStarted; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ExecutionState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d70c5c3749f0b41f483627ce2739c3a9 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Instruction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ceba5e09ced4424b381ee3ecdad9d7 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 662d815c0bd354682b108a365efa53e1 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCodeMetadataType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Execution.VM 7 | { 8 | public enum OpCodeMetadataType 9 | { 10 | ChunkEntrypoint, 11 | FunctionEntrypoint, 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCodeMetadataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12ca7d7e7076c4ba4b4b00de453dc302 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad53e8811d85343429a2bc712086ae13 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/DebugContext.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using MoonSharp.Interpreter.Debugging; 3 | 4 | namespace MoonSharp.Interpreter.Execution.VM 5 | { 6 | sealed partial class Processor 7 | { 8 | private class DebugContext 9 | { 10 | public bool DebuggerEnabled = true; 11 | public IDebugger DebuggerAttached = null; 12 | public DebuggerAction.ActionType DebuggerCurrentAction = DebuggerAction.ActionType.None; 13 | public int DebuggerCurrentActionTarget = -1; 14 | public SourceRef LastHlRef = null; 15 | public int ExStackDepthAtStep = -1; 16 | public List BreakPoints = new List(); 17 | public bool LineBasedBreakPoints = false; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/DebugContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff385e31e89d24d64857ab6853481c94 3 | timeCreated: 1475786658 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba54b0d11328c46bca41774da91778ac 3 | timeCreated: 1476432885 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_BinaryDump.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77aed18c39bbf4622b4f89b55462f9fe 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Coroutines.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaa97e004216b41329c5edcecff9dd06 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Debugger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f96a834c0285427ca58ccf3ab55f375 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Errors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c4f89d27a6dc4f6c9b4b047b14ad0ae 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_IExecutionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68c018ee0303f4b96a1c6f40d04dcff7 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_InstructionLoop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aac163d6eae4e482d9cf0a8228d9c478 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Scope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844ac2c7bb2c44b2984dc9a12fc56249 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_UtilityFunctions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 206de72702bb94beabc11fba6fdd4909 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e410e3c8213d94c479ac64c761bf27ad 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9630ca7af0f3d48619d58504f1dbb6b3 3 | timeCreated: 1476114345 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca91469c26113477bb1e415a258455a1 3 | timeCreated: 1476114345 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO/UndisposableStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47bb89da31361462e9af8e6d1a095dba 3 | timeCreated: 1476432881 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dea8f20f6c57d4199afcb08c5507266b 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcaef8dbe6c534df48286583c9064457 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHiddenAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter 4 | { 5 | /// 6 | /// Forces a class member visibility to scripts. Can be used to hide public members. Equivalent to MoonSharpVisible(false). 7 | /// 8 | [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field 9 | | AttributeTargets.Constructor | AttributeTargets.Event, Inherited = true, AllowMultiple = false)] 10 | public sealed class MoonSharpHiddenAttribute : Attribute 11 | { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHiddenAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f197b11750ee4cb5a0a99530134ac4d 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHideMemberAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9324d060638ed4b6fbd5c758f73a7860 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6bd97fe737d342759d142ccf0f4b9cd 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cdbe535e00374a92b3399423847bb6d 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataMetamethodAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8137a8eb2596340f189b48bf22075d30 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpVisibleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f68fd7d7efa94e8797afbe18c9611ff 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fff6b69649c5489a8a455974eef0d17 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/DispatchingUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f6722db3448418ca54601519f9ada3 3 | timeCreated: 1476432883 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f537e8782afd64f3cb92fde721e22630 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOptimizableDescriptor.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Interop.BasicDescriptors 3 | { 4 | /// 5 | /// Interface for descriptors of any kind which support optimizations of their implementation according to InteropAccessMode 6 | /// modes. This should seldom - if ever - be implemented in user code. 7 | /// 8 | public interface IOptimizableDescriptor 9 | { 10 | /// 11 | /// Called by standard descriptors when background optimization or preoptimization needs to be performed. 12 | /// 13 | void Optimize(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOptimizableDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89ddfcabad76c4c069ffb6bf5a0c72f0 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOverloadableMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 472ef7b45723a40b3be9a09a1956855d 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/MemberDescriptorAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Interop.BasicDescriptors 4 | { 5 | /// 6 | /// Permissions for members access 7 | /// 8 | [Flags] 9 | public enum MemberDescriptorAccess 10 | { 11 | /// 12 | /// The member can be read from 13 | /// 14 | CanRead = 1, 15 | /// 16 | /// The member can be written to 17 | /// 18 | CanWrite = 2, 19 | /// 20 | /// The can be invoked 21 | /// 22 | CanExecute = 4 23 | } 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | } 32 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/MemberDescriptorAccess.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98dc2ad5966d441eabeb7b6d3caa06c0 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/ParameterDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfdea66115b9243f7a6d6ff5f668ca12 3 | timeCreated: 1476432886 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e1eef8f70a324da28ea652a0cfe07a5 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ClrToScriptConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8987bd245f18a47329890d8e91c3201e 3 | timeCreated: 1476432883 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/NumericConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2917a412c40884d278878fc20d4489e4 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ScriptToClrConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab7d32bef2374608a4029d5dc7d6d0f 3 | timeCreated: 1476432877 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/StringConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8e3e17185184a2dbc2b6f6b4a6ab6b 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/TableConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2cc8ba4595c94d9088fb3984297bb61 3 | timeCreated: 1476432886 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/CustomConvertersCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fbaa0e2934334bdaa46819569766141 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/DescriptorHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bae8c1686637b4ac79638fb285f37b31 3 | timeCreated: 1476432886 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IGeneratorUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f7c9c3c7e52b445aa477098fba7292b 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5125e07adbc5b4d03a354736ba7d3d5b 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c69b26b560a4e44b9f58d7828c5950 3 | timeCreated: 1475786652 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e50fc9f2a8442a9b64c98c5d5bfefa 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IWireableDescriptor.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Interop.BasicDescriptors 3 | { 4 | /// 5 | /// Interface for descriptors with the capability of being serialized 6 | /// for later hardwiring. 7 | /// 8 | public interface IWireableDescriptor 9 | { 10 | /// 11 | /// Prepares the descriptor for hard-wiring. 12 | /// The descriptor fills the passed table with all the needed data for hardwire generators to generate the appropriate code. 13 | /// 14 | /// The table to be filled 15 | void PrepareForWiring(Table t); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IWireableDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed0502d7d281c4d02b2a73333e63b2e8 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/InteropAccessMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddbbc4d0ce9bf46e4b917c7822227382 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/InteropRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afe3b2b1b8cd14f27a728db1c45eedee 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37c3fef251200440e8f39e1ce26298bc 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/CharPtr.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2985effb32c74d16bb8c4fbbc607c19 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d6e9b8cd186543aca616a6ab3ee89d7 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase_CLib.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 922b575dd83cc46739a020c8abe4849c 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaLBuffer.cs: -------------------------------------------------------------------------------- 1 | // Disable warnings about XML documentation 2 | #pragma warning disable 1591 3 | 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Interop.LuaStateInterop 7 | { 8 | public class LuaLBuffer 9 | { 10 | public StringBuilder StringBuilder { get; private set; } 11 | public LuaState LuaState { get; private set; } 12 | 13 | public LuaLBuffer(LuaState l) 14 | { 15 | StringBuilder = new StringBuilder(); 16 | LuaState = l; 17 | } 18 | 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaLBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ced9744069c3426897ab8ab28f78e19 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: affc833f5facd456cb7f3c1c877e016b 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/Tools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fe8355bb2687470dabdf9f53cebcb53 3 | timeCreated: 1476299274 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d430a004bd11940fd86af1069ddb1047 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/AnonWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db64414b452e5425d9d5cd1f1ca701bd 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/EnumerableWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f476b461a5ed4435db657147a9c73395 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PropertyTableAssigner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29adf7e98b14849d3bf021d9978d0d8b 3 | timeCreated: 1476432879 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80ab0075d11a3452d85ef5f5c0c1429d 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/DelegateProxyFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a78a604367d5437c8bc7738a353e330 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/IProxyFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e66b6f4653072444789b4a589c6c2a3a 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ReflectionSpecialNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29cafe9c63e8f4065b1ac596fd1fd9aa 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7488f095cc83413fab5d27e801a6f7b 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/AutomaticRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4097ed8fbf294e999f9a29e89df8443 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/DefaultRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2265b5b2975b4d0ab2200362101da9e 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/IRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90c78875ddfdf453aacf15d5c1bddf77 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/PermanentRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3158077890b1545c0b603ef17da60db1 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 788e7624b69a54e90b7799e9950d6c05 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/AutoDescribingUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 352d20f0b03db4824871ccc4ff8c616a 3 | timeCreated: 1476432880 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/CompositeUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5dd2e97a42ab4fa2a71abc2d46f59a4 3 | timeCreated: 1476432888 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/EventFacade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59883d2da472c41518f0226b0304586d 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dd94b90014ad4b27833a0378cb1c198 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/DefaultValue.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Interop.StandardDescriptors.HardwiredDescriptors 3 | { 4 | public sealed class DefaultValue 5 | { 6 | public static readonly DefaultValue Instance = new DefaultValue(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/DefaultValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4488f26dceb7a4be786386e8fd64cf9d 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e219ae3995f14bca923411ed343be4c 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMethodMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 509d3c7494a174d159037c1ce772f139 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredUserDataDescriptor.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using MoonSharp.Interpreter.Interop.BasicDescriptors; 3 | 4 | namespace MoonSharp.Interpreter.Interop.StandardDescriptors.HardwiredDescriptors 5 | { 6 | public abstract class HardwiredUserDataDescriptor : DispatchingUserDataDescriptor 7 | { 8 | protected HardwiredUserDataDescriptor(Type T) : 9 | base(T, "::hardwired::" + T.Name) 10 | { 11 | 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e68a6f21a26414d3593a07cf99936209 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 687121c5bf0774587b701926f24663f1 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ArrayMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16ace6782aaff42ef925471de4da3385 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/DynValueMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c886654d00dad4d1b9c3f337bb813cc0 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/FunctionMemberDescriptorBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89a6426ea6fe947ae99733cb677468d2 3 | timeCreated: 1476432883 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ObjectCallbackMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caf88b714be7b4cf39d668ad94a2cdbf 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ProxyUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dfd27bda419d4d66ac0202bd5129321 3 | timeCreated: 1476432878 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ade967f20823d48baa0ac5d6598f0cec 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/EventMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 459fecf3c2e24493dbb3343468794c2e 3 | timeCreated: 1476432881 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/FieldMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4e7bfec90fd646a39c733281c5c9a11 3 | timeCreated: 1476432886 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/MethodMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68afe79e1ad244daeabefece087d3ba8 3 | timeCreated: 1476432882 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/OverloadedMethodMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 855e4d30c04db49fcaeb34cbaf67ebac 3 | timeCreated: 1476432883 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/PropertyMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1751047691c3846a7ade184baf0c247c 3 | timeCreated: 1476432877 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/ValueTypeDefaultCtorMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0c456f1fb2c24452a3bcbb4d5e989db 3 | timeCreated: 1476432885 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardEnumUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad85406d968d4e16b8f8bbb261c515e 3 | timeCreated: 1476432880 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardGenericsUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89ded8cbedd28423587da705e814718b 3 | timeCreated: 1476432884 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29d5118b685fd415ead4294ee7d93b79 3 | timeCreated: 1476432879 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataMemberType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Interop 7 | { 8 | public enum UserDataMemberType 9 | { 10 | Constructor, 11 | Method, 12 | Property, 13 | Field, 14 | Event 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataMemberType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7d6d5b090694ba99789897e23621e1 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38f3c44fe0e4340779e1f37669bbe026 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/ExtensionMethodsRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0751e8a68a8854239b86b7412fe9b9a6 3 | timeCreated: 1476432876 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/TypeDescriptorRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cb8d3a3cea1d4c42841978ca26ff333 3 | timeCreated: 1476432877 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/LinqHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b04c0dc1a035c460fa89f603876c6db9 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b09180aac6c874f8c8858be2de83e0aa 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/EmbeddedResourcesScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe66f88e60a984221b3f9d6e2e270c96 3 | timeCreated: 1476432894 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/FileSystemScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5265cb278419c4704996e50cd50d1da2 3 | timeCreated: 1476432882 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/IScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c399d96b868674b5eaa2ad00e443dc9d 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/InvalidScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 920af4d96074142d1bc72d3d5a672d20 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/ScriptLoaderBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af35d862d07134a6ca74cd42b63c1794 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/UnityAssetsScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47df7bd1ab9d64724a8f364747e1f599 3 | timeCreated: 1476432881 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21c21ae128168455cbf6fa358cd20670 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/CoreModules.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea0b736032491445383db1568b651959 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/ModuleRegister.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c2ca3cd92354d37a71219519c65c84 3 | timeCreated: 1476452538 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 647ec1caf30824863bf83c0c674b64b7 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleConstantAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter 4 | { 5 | /// 6 | /// In a module type, mark fields with this attribute to have them exposed as a module constant. 7 | /// 8 | /// See for more information about modules. 9 | /// 10 | [AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)] 11 | public sealed class MoonSharpModuleConstantAttribute : Attribute 12 | { 13 | /// 14 | /// Gets or sets the name of the constant - if different from the name of the field itself 15 | /// 16 | public string Name { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleConstantAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 801d444ded66b4a45b100c59c373243b 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleMethodAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 616cf146f24304ea9a82d1f9178a7268 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/NameSpace_XmlHelp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce2e5bd5d0b2b49fe99dbc8fc4aec9bb 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Options.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21cfe29c05df44124bb1eb4c1321f2a2 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Options/ColonOperatorBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10dd09e5e726b415bb24bc6eada8c8ff 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae8c935142dcf48aa99686d7db177e4e 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/DotNetCorePlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16eaeaa203bc1df4eb279ad911bba358 3 | timeCreated: 1476432877 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/IPlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 359de24f05b4c4d97a383e19fd739ca7 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/LimitedPlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b62203e94e404916af303e96d55e003 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAccessorBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58597ecc9be4e445d905f52523ca4e8e 3 | timeCreated: 1476438094 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAutoDetector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6155c702b863d4de6b65e3661d34dc44 3 | timeCreated: 1476432882 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardFileType.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Platforms 3 | { 4 | /// 5 | /// Enumeration of standard file handles 6 | /// 7 | public enum StandardFileType 8 | { 9 | /// 10 | /// Standard Input 11 | /// 12 | StdIn, 13 | /// 14 | /// Standard Output 15 | /// 16 | StdOut, 17 | /// 18 | /// Standard Error Output 19 | /// 20 | StdErr 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardFileType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7636d0d07fa514ae584b49d65025b600 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardPlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4a9977fe0bfc48959d1b05c17c8549f 3 | timeCreated: 1476432887 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c128cb6b2ae4291aa464c6b0549674 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL/ReplHistoryNavigator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b54be6e9e41364e02968550fb2cf7c4d 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf481bf6781294381b77d6aadecbd712 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreterScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c6efcf1ce8064e5087b1afbbd9d592e 3 | timeCreated: 1476299275 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Script.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6af9aaf13dfaa46648711a12b5f9abe0 3 | timeCreated: 1476452567 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/ScriptGlobalOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 019755db0735e4261a6d88f4cc170256 3 | timeCreated: 1475786652 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/ScriptOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76e1b875ac6f54131b71043d3a9e1c0b 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91bac364723d8471ab99d29f64eb6b0e 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/Json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bab288299fa6645b5914160c1e123c29 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonNull.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Serialization.Json 7 | { 8 | /// 9 | /// UserData representing a null value in a table converted from Json 10 | /// 11 | public sealed class JsonNull 12 | { 13 | public static bool isNull() { return true; } 14 | 15 | [MoonSharpHidden] 16 | public static bool IsJsonNull(DynValue v) 17 | { 18 | return v.Type == DataType.UserData && 19 | v.UserData.Descriptor != null && 20 | v.UserData.Descriptor.Type == typeof(JsonNull); 21 | } 22 | 23 | [MoonSharpHidden] 24 | public static DynValue Create() 25 | { 26 | return UserData.CreateStatic(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonNull.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb11cd56d51474a3a9ee3d63f52c7e3d 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonTableConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e090b4783b83443f7959adaeebbd831c 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/ObjectValueConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99653e9435d7e458aa2f9b83455d0a61 3 | timeCreated: 1476432884 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/SerializationExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f17c5a72ff1c431380cf0baea989b83 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1350f7d7e684046a48b64bc186bc85fe 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expression_.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 917ffb77be09c4bc3ad9735a663b7de8 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef6cb9e63cf584d5093a94897811a0eb 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/AdjustmentExpression.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.Execution; 2 | 3 | 4 | namespace MoonSharp.Interpreter.Tree.Expressions 5 | { 6 | class AdjustmentExpression : Expression 7 | { 8 | private Expression expression; 9 | 10 | public AdjustmentExpression(ScriptLoadingContext lcontext, Expression exp) 11 | : base(lcontext) 12 | { 13 | expression = exp; 14 | } 15 | 16 | public override void Compile(Execution.VM.ByteCode bc) 17 | { 18 | expression.Compile(bc); 19 | bc.Emit_Scalar(); 20 | } 21 | 22 | public override DynValue Eval(ScriptExecutionContext context) 23 | { 24 | return expression.Eval(context).ToScalar(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/AdjustmentExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c494a9ff07b4f47f69bf840276bc16c7 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/BinaryOperatorExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e429a1e253ff48d494ae2f4082bf9e5 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/DynamicExprExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ad167454775547d2b876de4ba0fd483 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/ExprListExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd8ca3d30a17e4eaf8b77c38a66ba301 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionCallExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fa461df57eb84d5f9427189139597c9 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionDefinitionExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 818d56204214b495cac1759ba69e62cc 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/IndexExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddb1f940605694b16a3484b5ff7efdfb 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/LiteralExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b79e917718e94fc2ad0c27697cb8f72 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/SymbolRefExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f336cd46dea12403c80a301cb514a829 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/TableConstructor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26b87a1b8116245ab9e9c873ab2c815f 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/UnaryOperatorExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cea61ff404d734620ac74f0d77cbf723 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Fast_Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7f541eb890e3467ea8ceddd017638ea 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Fast_Interface/Loader_Fast.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2b48e341b32244b7b804e5c678d43e8 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/IVariable.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Tree 3 | { 4 | interface IVariable 5 | { 6 | void CompileAssignment(Execution.VM.ByteCode bc, int stackofs, int tupleidx); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/IVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f8fab7b547fe49d3a6c39d5bf1aa16d 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fc9e851c11cb4ee7a4813c8ea533745 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Lexer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36f7acbfc89a742ae98ca7798c9fa46c 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/LexerUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfd39fdc4578b46bd94fbec6ef1d52c6 3 | timeCreated: 1476432886 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Token.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28db96375f67f40a0977eb0e231b87df 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/TokenType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6951b5c7d34424ebc93855f3a8e6abd0 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Loop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b96a843097755462eaa09a5418609431 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/NodeBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f93e310164b44950948a1ff5c698f2f 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e115ec17228964ee5854b305fb19784c 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5978d7a5435614f438554bd7a238eb78 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/AssignmentStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 984d08ac2d2c649f0937d1a8e239ef6a 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/BreakStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d931c98bfed744a40a11ce008f739485 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ChunkStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 467e042a564454047a5215038dce40d6 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/CompositeStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e1daf24800e444e98cb1fbd9d7853b2 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/EmptyStatement.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.Execution; 2 | 3 | namespace MoonSharp.Interpreter.Tree.Statements 4 | { 5 | class EmptyStatement : Statement 6 | { 7 | public EmptyStatement(ScriptLoadingContext lcontext) 8 | : base(lcontext) 9 | { 10 | } 11 | 12 | 13 | public override void Compile(Execution.VM.ByteCode bc) 14 | { 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/EmptyStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb5f717a1d224a8984924a6567831c8 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForEachLoopStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42fdf5ae14c55483cbc6624a805b54d6 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForLoopStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8997b2af29c946b5831782aa877fe8c 3 | timeCreated: 1475786655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionCallStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01dd56b964b0444d9be30c32362e0f12 3 | timeCreated: 1475786652 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionDefinitionStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eaf1f1a72396485d8ab026632b4984f 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/GotoStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3292cfca00390432290faa3fa7f8e387 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/IfStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d806fb47926040f89e9016b4c1e0e11 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/LabelStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6b59b6847c944bbcbff9891ed73131b 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/RepeatStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53c80ada0f4af4f728ba10d35256441d 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ReturnStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6dd3b70f20ab4e84b11d4e2d91268a6 3 | timeCreated: 1475786656 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ScopeBlockStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 908e6665aa8a94114b90c8061da39a21 3 | timeCreated: 1475786654 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/WhileStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3857a0c186ff6400896fe8d16e00c457 3 | timeCreated: 1475786653 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Documentation/custom_command_parser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Documentation/custom_command_parser.png -------------------------------------------------------------------------------- /Documentation/custom_commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Documentation/custom_commands.png -------------------------------------------------------------------------------- /Documentation/custom_feedback_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Documentation/custom_feedback_form.png -------------------------------------------------------------------------------- /Documentation/custom_pause_handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Documentation/custom_pause_handler.png -------------------------------------------------------------------------------- /Documentation/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemon3000/UnityDebugConsole/d97dcb411efe8ef561a5855a3d60404bb598d116/Documentation/header.png -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_DisableAudio: 0 16 | m_VirtualizeEffects: 1 17 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_EnablePCM: 1 18 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 19 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Testing/Scenes/scene_01.unity 10 | guid: 2ca5b5df349b7004097590460431f66b 11 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_DefaultBehaviorMode: 1 10 | m_SpritePackerMode: 2 11 | m_SpritePackerPaddingPower: 1 12 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;lua 13 | m_ProjectGenerationRootNamespace: 14 | m_UserGeneratedProjectSuffix: 15 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.3.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /UWP/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.ApplicationInsights": "1.0.0", 4 | "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0", 5 | "Microsoft.ApplicationInsights.WindowsApps": "1.0.0", 6 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0" 7 | }, 8 | "frameworks": { 9 | "uap10.0": {} 10 | }, 11 | "runtimes": { 12 | "win10-arm": {}, 13 | "win10-arm-aot": {}, 14 | "win10-x86": {}, 15 | "win10-x86-aot": {}, 16 | "win10-x64": {}, 17 | "win10-x64-aot": {} 18 | } 19 | } -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------