├── .DS_Store ├── quill2.png ├── img ├── sample.png ├── panel_sample.png ├── quill_button.png ├── quill_label.png ├── button_sample.png ├── button_hierarchy.png └── unity_editor_ui_objects.png ├── Assets ├── .DS_Store ├── Plugins │ ├── .DS_Store │ ├── MoonSharp │ │ ├── Interpreter │ │ │ ├── CodeAnalysis │ │ │ │ ├── AstNode.cs │ │ │ │ └── AstNode.cs.meta │ │ │ ├── Tree │ │ │ │ ├── IVariable.cs │ │ │ │ ├── Lexer.meta │ │ │ │ ├── Expressions.meta │ │ │ │ ├── Fast_Interface.meta │ │ │ │ ├── Statements.meta │ │ │ │ ├── Loop.cs.meta │ │ │ │ ├── IVariable.cs.meta │ │ │ │ ├── NodeBase.cs.meta │ │ │ │ ├── Statement.cs.meta │ │ │ │ ├── Expression_.cs.meta │ │ │ │ ├── Lexer │ │ │ │ │ ├── Lexer.cs.meta │ │ │ │ │ ├── Token.cs.meta │ │ │ │ │ ├── TokenType.cs.meta │ │ │ │ │ └── LexerUtils.cs.meta │ │ │ │ ├── Statements │ │ │ │ │ ├── BreakStatement.cs.meta │ │ │ │ │ ├── ChunkStatement.cs.meta │ │ │ │ │ ├── EmptyStatement.cs.meta │ │ │ │ │ ├── GotoStatement.cs.meta │ │ │ │ │ ├── IfStatement.cs.meta │ │ │ │ │ ├── LabelStatement.cs.meta │ │ │ │ │ ├── WhileStatement.cs.meta │ │ │ │ │ ├── AssignmentStatement.cs.meta │ │ │ │ │ ├── CompositeStatement.cs.meta │ │ │ │ │ ├── ForLoopStatement.cs.meta │ │ │ │ │ ├── RepeatStatement.cs.meta │ │ │ │ │ ├── ReturnStatement.cs.meta │ │ │ │ │ ├── ScopeBlockStatement.cs.meta │ │ │ │ │ ├── ForEachLoopStatement.cs.meta │ │ │ │ │ ├── FunctionCallStatement.cs.meta │ │ │ │ │ ├── FunctionDefinitionStatement.cs.meta │ │ │ │ │ └── EmptyStatement.cs │ │ │ │ ├── Expressions │ │ │ │ │ ├── ExprListExpression.cs.meta │ │ │ │ │ ├── IndexExpression.cs.meta │ │ │ │ │ ├── LiteralExpression.cs.meta │ │ │ │ │ ├── TableConstructor.cs.meta │ │ │ │ │ ├── AdjustmentExpression.cs.meta │ │ │ │ │ ├── DynamicExprExpression.cs.meta │ │ │ │ │ ├── FunctionCallExpression.cs.meta │ │ │ │ │ ├── SymbolRefExpression.cs.meta │ │ │ │ │ ├── UnaryOperatorExpression.cs.meta │ │ │ │ │ ├── BinaryOperatorExpression.cs.meta │ │ │ │ │ └── FunctionDefinitionExpression.cs.meta │ │ │ │ └── Fast_Interface │ │ │ │ │ └── Loader_Fast.cs.meta │ │ │ ├── Execution │ │ │ │ ├── Scopes │ │ │ │ │ ├── IClosureBuilder.cs │ │ │ │ │ ├── LoopTracker.cs.meta │ │ │ │ │ ├── BuildTimeScope.cs.meta │ │ │ │ │ ├── ClosureContext.cs.meta │ │ │ │ │ ├── IClosureBuilder.cs.meta │ │ │ │ │ ├── RuntimeScopeBlock.cs.meta │ │ │ │ │ ├── RuntimeScopeFrame.cs.meta │ │ │ │ │ ├── BuildTimeScopeBlock.cs.meta │ │ │ │ │ ├── BuildTimeScopeFrame.cs.meta │ │ │ │ │ ├── LoopTracker.cs │ │ │ │ │ ├── RuntimeScopeBlock.cs │ │ │ │ │ └── RuntimeScopeFrame.cs │ │ │ │ ├── VM.meta │ │ │ │ ├── Scopes.meta │ │ │ │ ├── VM │ │ │ │ │ ├── Processor.meta │ │ │ │ │ ├── OpCodeMetadataType.cs │ │ │ │ │ ├── CallStackItemFlags.cs │ │ │ │ │ ├── OpCode.cs.meta │ │ │ │ │ ├── ByteCode.cs.meta │ │ │ │ │ ├── Instruction.cs.meta │ │ │ │ │ ├── CallStackItem.cs.meta │ │ │ │ │ ├── ExecutionState.cs.meta │ │ │ │ │ ├── CallStackItemFlags.cs.meta │ │ │ │ │ ├── OpCodeMetadataType.cs.meta │ │ │ │ │ ├── Processor │ │ │ │ │ │ ├── DebugContext.cs.meta │ │ │ │ │ │ ├── Processor.cs.meta │ │ │ │ │ │ ├── Processor_Errors.cs.meta │ │ │ │ │ │ ├── Processor_Scope.cs.meta │ │ │ │ │ │ ├── Processor_BinaryDump.cs.meta │ │ │ │ │ │ ├── Processor_Coroutines.cs.meta │ │ │ │ │ │ ├── Processor_Debugger.cs.meta │ │ │ │ │ │ ├── Processor_IExecutionContext.cs.meta │ │ │ │ │ │ ├── Processor_InstructionLoop.cs.meta │ │ │ │ │ │ └── Processor_UtilityFunctions.cs.meta │ │ │ │ │ └── ExecutionState.cs │ │ │ │ ├── DynamicExpression.cs.meta │ │ │ │ ├── ScriptLoadingContext.cs.meta │ │ │ │ ├── InstructionFieldUsage.cs.meta │ │ │ │ ├── ScriptExecutionContext.cs.meta │ │ │ │ └── ScriptLoadingContext.cs │ │ │ ├── IO.meta │ │ │ ├── REPL.meta │ │ │ ├── Tree.meta │ │ │ ├── CoreLib.meta │ │ │ ├── DataTypes.meta │ │ │ ├── Debugging.meta │ │ │ ├── Errors.meta │ │ │ ├── Execution.meta │ │ │ ├── Interop.meta │ │ │ ├── Loaders.meta │ │ │ ├── Modules.meta │ │ │ ├── Options.meta │ │ │ ├── Platforms.meta │ │ │ ├── CodeAnalysis.meta │ │ │ ├── Compatibility.meta │ │ │ ├── CoreLib │ │ │ │ ├── IO.meta │ │ │ │ ├── StringLib.meta │ │ │ │ ├── BasicModule.cs.meta │ │ │ │ ├── Bit32Module.cs.meta │ │ │ │ ├── DebugModule.cs.meta │ │ │ │ ├── IoModule.cs.meta │ │ │ │ ├── JsonModule.cs.meta │ │ │ │ ├── LoadModule.cs.meta │ │ │ │ ├── MathModule.cs.meta │ │ │ │ ├── StringModule.cs.meta │ │ │ │ ├── TableModule.cs.meta │ │ │ │ ├── CoroutineModule.cs.meta │ │ │ │ ├── DynamicModule.cs.meta │ │ │ │ ├── IO │ │ │ │ │ ├── BinaryEncoding.cs.meta │ │ │ │ │ ├── FileUserData.cs.meta │ │ │ │ │ ├── FileUserDataBase.cs.meta │ │ │ │ │ ├── StreamFileUserDataBase.cs.meta │ │ │ │ │ └── StandardIOFileUserDataBase.cs.meta │ │ │ │ ├── MetaTableModule.cs.meta │ │ │ │ ├── OsSystemModule.cs.meta │ │ │ │ ├── OsTimeModule.cs.meta │ │ │ │ ├── ErrorHandlingModule.cs.meta │ │ │ │ ├── StringLib │ │ │ │ │ ├── StringRange.cs.meta │ │ │ │ │ └── KopiLua_StrLib.cs.meta │ │ │ │ └── TableIteratorsModule.cs.meta │ │ │ ├── DataStructs.meta │ │ │ ├── Diagnostics.meta │ │ │ ├── Serialization.meta │ │ │ ├── Interop │ │ │ │ ├── Attributes.meta │ │ │ │ ├── Converters.meta │ │ │ │ ├── BasicDescriptors.meta │ │ │ │ ├── LuaStateInterop.meta │ │ │ │ ├── ProxyObjects.meta │ │ │ │ ├── PredefinedUserData.meta │ │ │ │ ├── RegistrationPolicies.meta │ │ │ │ ├── StandardDescriptors.meta │ │ │ │ ├── UserDataRegistries.meta │ │ │ │ ├── StandardDescriptors │ │ │ │ │ ├── HardwiredDescriptors.meta │ │ │ │ │ ├── HardwiredDescriptors │ │ │ │ │ │ ├── DefaultValue.cs │ │ │ │ │ │ ├── DefaultValue.cs.meta │ │ │ │ │ │ ├── HardwiredMemberDescriptor.cs.meta │ │ │ │ │ │ ├── HardwiredMethodMemberDescriptor.cs.meta │ │ │ │ │ │ ├── HardwiredUserDataDescriptor.cs.meta │ │ │ │ │ │ └── HardwiredUserDataDescriptor.cs │ │ │ │ │ ├── MemberDescriptors.meta │ │ │ │ │ ├── ReflectionMemberDescriptors.meta │ │ │ │ │ ├── EventFacade.cs.meta │ │ │ │ │ ├── ProxyUserDataDescriptor.cs.meta │ │ │ │ │ ├── StandardUserDataDescriptor.cs.meta │ │ │ │ │ ├── CompositeUserDataDescriptor.cs.meta │ │ │ │ │ ├── StandardEnumUserDataDescriptor.cs.meta │ │ │ │ │ ├── AutoDescribingUserDataDescriptor.cs.meta │ │ │ │ │ ├── StandardGenericsUserDataDescriptor.cs.meta │ │ │ │ │ ├── MemberDescriptors │ │ │ │ │ │ ├── ArrayMemberDescriptor.cs.meta │ │ │ │ │ │ ├── DynValueMemberDescriptor.cs.meta │ │ │ │ │ │ ├── FunctionMemberDescriptorBase.cs.meta │ │ │ │ │ │ └── ObjectCallbackMemberDescriptor.cs.meta │ │ │ │ │ └── ReflectionMemberDescriptors │ │ │ │ │ │ ├── EventMemberDescriptor.cs.meta │ │ │ │ │ │ ├── FieldMemberDescriptor.cs.meta │ │ │ │ │ │ ├── MethodMemberDescriptor.cs.meta │ │ │ │ │ │ ├── PropertyMemberDescriptor.cs.meta │ │ │ │ │ │ ├── OverloadedMethodMemberDescriptor.cs.meta │ │ │ │ │ │ └── ValueTypeDefaultCtorMemberDescriptor.cs.meta │ │ │ │ ├── UserDataMemberType.cs │ │ │ │ ├── IUserDataType.cs.meta │ │ │ │ ├── InteropAccessMode.cs.meta │ │ │ │ ├── DescriptorHelpers.cs.meta │ │ │ │ ├── IUserDataDescriptor.cs.meta │ │ │ │ ├── IWireableDescriptor.cs.meta │ │ │ │ ├── LuaStateInterop │ │ │ │ │ ├── Tools.cs.meta │ │ │ │ │ ├── CharPtr.cs.meta │ │ │ │ │ ├── LuaBase.cs.meta │ │ │ │ │ ├── LuaLBuffer.cs.meta │ │ │ │ │ ├── LuaState.cs.meta │ │ │ │ │ ├── LuaBase_CLib.cs.meta │ │ │ │ │ └── LuaLBuffer.cs │ │ │ │ ├── PropertyTableAssigner.cs.meta │ │ │ │ ├── ReflectionSpecialNames.cs.meta │ │ │ │ ├── UserDataMemberType.cs.meta │ │ │ │ ├── CustomConvertersCollection.cs.meta │ │ │ │ ├── IUserDataMemberDescriptor.cs.meta │ │ │ │ ├── InteropRegistrationPolicy.cs.meta │ │ │ │ ├── ProxyObjects │ │ │ │ │ ├── IProxyFactory.cs.meta │ │ │ │ │ └── DelegateProxyFactory.cs.meta │ │ │ │ ├── Converters │ │ │ │ │ ├── NumericConversions.cs.meta │ │ │ │ │ ├── StringConversions.cs.meta │ │ │ │ │ ├── TableConversions.cs.meta │ │ │ │ │ ├── ClrToScriptConversions.cs.meta │ │ │ │ │ └── ScriptToClrConversions.cs.meta │ │ │ │ ├── IGeneratorUserDataDescriptor.cs.meta │ │ │ │ ├── PredefinedUserData │ │ │ │ │ ├── AnonWrapper.cs.meta │ │ │ │ │ └── EnumerableWrapper.cs.meta │ │ │ │ ├── Attributes │ │ │ │ │ ├── MoonSharpHiddenAttribute.cs.meta │ │ │ │ │ ├── MoonSharpPropertyAttribute.cs.meta │ │ │ │ │ ├── MoonSharpUserDataAttribute.cs.meta │ │ │ │ │ ├── MoonSharpVisibleAttribute.cs.meta │ │ │ │ │ ├── MoonSharpHideMemberAttribute.cs.meta │ │ │ │ │ ├── MoonSharpUserDataMetamethodAttribute.cs.meta │ │ │ │ │ └── MoonSharpHiddenAttribute.cs │ │ │ │ ├── BasicDescriptors │ │ │ │ │ ├── IMemberDescriptor.cs.meta │ │ │ │ │ ├── ParameterDescriptor.cs.meta │ │ │ │ │ ├── IOptimizableDescriptor.cs.meta │ │ │ │ │ ├── MemberDescriptorAccess.cs.meta │ │ │ │ │ ├── DispatchingUserDataDescriptor.cs.meta │ │ │ │ │ ├── IOverloadableMemberDescriptor.cs.meta │ │ │ │ │ ├── IOptimizableDescriptor.cs │ │ │ │ │ └── MemberDescriptorAccess.cs │ │ │ │ ├── RegistrationPolicies │ │ │ │ │ ├── IRegistrationPolicy.cs.meta │ │ │ │ │ ├── DefaultRegistrationPolicy.cs.meta │ │ │ │ │ ├── AutomaticRegistrationPolicy.cs.meta │ │ │ │ │ └── PermanentRegistrationPolicy.cs.meta │ │ │ │ ├── UserDataRegistries │ │ │ │ │ ├── TypeDescriptorRegistry.cs.meta │ │ │ │ │ └── ExtensionMethodsRegistry.cs.meta │ │ │ │ └── IWireableDescriptor.cs │ │ │ ├── Serialization │ │ │ │ ├── Json.meta │ │ │ │ ├── Json │ │ │ │ │ ├── JsonNull.cs.meta │ │ │ │ │ └── JsonTableConverter.cs.meta │ │ │ │ ├── ObjectValueConverter.cs.meta │ │ │ │ └── SerializationExtensions.cs.meta │ │ │ ├── Compatibility │ │ │ │ ├── Frameworks.meta │ │ │ │ ├── Frameworks │ │ │ │ │ ├── Base.meta │ │ │ │ │ ├── FrameworkCLR.cs.meta │ │ │ │ │ ├── FrameworkCore.cs.meta │ │ │ │ │ ├── FrameworkPCL.cs.meta │ │ │ │ │ ├── FrameworkWin8.cs.meta │ │ │ │ │ └── Base │ │ │ │ │ │ ├── FrameworkBase.cs.meta │ │ │ │ │ │ ├── FrameworkClrBase.cs.meta │ │ │ │ │ │ └── FrameworkReflectionBase.cs.meta │ │ │ │ ├── Attributes.cs.meta │ │ │ │ ├── Framework.cs.meta │ │ │ │ ├── Stopwatch.cs.meta │ │ │ │ ├── Attributes.cs │ │ │ │ └── Framework.cs │ │ │ ├── Diagnostics │ │ │ │ ├── PerformanceCounters.meta │ │ │ │ ├── PerformanceCounters │ │ │ │ │ ├── IPerformanceStopwatch.cs │ │ │ │ │ ├── IPerformanceStopwatch.cs.meta │ │ │ │ │ ├── PerformanceStopwatch.cs.meta │ │ │ │ │ ├── DummyPerformanceStopwatch.cs.meta │ │ │ │ │ └── GlobalPerformanceStopwatch.cs.meta │ │ │ │ ├── PerformanceCounter.cs.meta │ │ │ │ ├── PerformanceResult.cs.meta │ │ │ │ ├── PerformanceCounterType.cs.meta │ │ │ │ ├── PerformanceStatistics.cs.meta │ │ │ │ └── PerformanceCounterType.cs │ │ │ ├── Script.cs.meta │ │ │ ├── AsyncExtensions.cs.meta │ │ │ ├── DataTypes │ │ │ │ ├── Table.cs.meta │ │ │ │ ├── Closure.cs.meta │ │ │ │ ├── Coroutine.cs.meta │ │ │ │ ├── DataType.cs.meta │ │ │ │ ├── DynValue.cs.meta │ │ │ │ ├── SymbolRef.cs.meta │ │ │ │ ├── TablePair.cs.meta │ │ │ │ ├── UserData.cs.meta │ │ │ │ ├── CoroutineState.cs.meta │ │ │ │ ├── RefIdObject.cs.meta │ │ │ │ ├── SymbolRefType.cs.meta │ │ │ │ ├── TailCallData.cs.meta │ │ │ │ ├── YieldRequest.cs.meta │ │ │ │ ├── CallbackArguments.cs.meta │ │ │ │ ├── CallbackFunction.cs.meta │ │ │ │ ├── TypeValidationFlags.cs.meta │ │ │ │ ├── WellKnownSymbols.cs.meta │ │ │ │ ├── IScriptPrivateResource.cs.meta │ │ │ │ ├── ScriptFunctionDelegate.cs.meta │ │ │ │ ├── WellKnownSymbols.cs │ │ │ │ ├── YieldRequest.cs │ │ │ │ └── SymbolRefType.cs │ │ │ ├── LinqHelpers.cs.meta │ │ │ ├── ScriptOptions.cs.meta │ │ │ ├── DataStructs │ │ │ │ ├── Slice.cs.meta │ │ │ │ ├── FastStack.cs.meta │ │ │ │ ├── Extension_Methods.cs.meta │ │ │ │ ├── FastStackDynamic.cs.meta │ │ │ │ ├── LinkedListIndex.cs.meta │ │ │ │ ├── MultiDictionary.cs.meta │ │ │ │ ├── ReferenceEqualityComparer.cs.meta │ │ │ │ └── ReferenceEqualityComparer.cs │ │ │ ├── Debugging │ │ │ │ ├── IDebugger.cs.meta │ │ │ │ ├── SourceCode.cs.meta │ │ │ │ ├── SourceRef.cs.meta │ │ │ │ ├── WatchItem.cs.meta │ │ │ │ ├── WatchType.cs.meta │ │ │ │ ├── DebugService.cs.meta │ │ │ │ ├── DebuggerAction.cs.meta │ │ │ │ └── DebuggerCaps.cs.meta │ │ │ ├── Modules │ │ │ │ ├── CoreModules.cs.meta │ │ │ │ ├── ModuleRegister.cs.meta │ │ │ │ ├── MoonSharpModuleAttribute.cs.meta │ │ │ │ ├── MoonSharpModuleConstantAttribute.cs.meta │ │ │ │ └── MoonSharpModuleMethodAttribute.cs.meta │ │ │ ├── NameSpace_XmlHelp.cs.meta │ │ │ ├── REPL │ │ │ │ ├── ReplInterpreter.cs.meta │ │ │ │ ├── ReplHistoryNavigator.cs.meta │ │ │ │ └── ReplInterpreterScriptLoader.cs.meta │ │ │ ├── ScriptGlobalOptions.cs.meta │ │ │ ├── IO │ │ │ │ ├── BinDumpBinaryReader.cs.meta │ │ │ │ ├── BinDumpBinaryWriter.cs.meta │ │ │ │ └── UndisposableStream.cs.meta │ │ │ ├── Loaders │ │ │ │ ├── IScriptLoader.cs.meta │ │ │ │ ├── ScriptLoaderBase.cs.meta │ │ │ │ ├── InvalidScriptLoader.cs.meta │ │ │ │ ├── FileSystemScriptLoader.cs.meta │ │ │ │ ├── UnityAssetsScriptLoader.cs.meta │ │ │ │ └── EmbeddedResourcesScriptLoader.cs.meta │ │ │ ├── Errors │ │ │ │ ├── InternalErrorException.cs.meta │ │ │ │ ├── InterpreterException.cs.meta │ │ │ │ ├── ScriptRuntimeException.cs.meta │ │ │ │ ├── SyntaxErrorException.cs.meta │ │ │ │ └── DynamicExpressionException.cs.meta │ │ │ ├── Options │ │ │ │ └── ColonOperatorBehaviour.cs.meta │ │ │ └── Platforms │ │ │ │ ├── IPlatformAccessor.cs.meta │ │ │ │ ├── StandardFileType.cs.meta │ │ │ │ ├── LimitedPlatformAccessor.cs.meta │ │ │ │ ├── PlatformAccessorBase.cs.meta │ │ │ │ ├── PlatformAutoDetector.cs.meta │ │ │ │ ├── StandardPlatformAccessor.cs.meta │ │ │ │ ├── DotNetCorePlatformAccessor.cs.meta │ │ │ │ └── StandardFileType.cs │ │ ├── Debugger.meta │ │ ├── Interpreter.meta │ │ └── Debugger │ │ │ ├── SDK.meta │ │ │ ├── DebuggerLogic.meta │ │ │ ├── SDK │ │ │ ├── Protocol.cs.meta │ │ │ ├── DebugSession.cs.meta │ │ │ └── Utilities.cs.meta │ │ │ ├── DebuggerLogic │ │ │ ├── AsyncDebugger.cs.meta │ │ │ ├── EmptyDebugSession.cs.meta │ │ │ ├── VariableInspector.cs.meta │ │ │ ├── IAsyncDebuggerClient.cs.meta │ │ │ ├── MoonSharpDebugSession.cs.meta │ │ │ └── IAsyncDebuggerClient.cs │ │ │ └── MoonSharpVsCodeDebugServer.cs.meta │ ├── LunarBind.meta │ ├── LunarBind │ │ ├── LunarBind.csproj.meta │ │ ├── Binding.meta │ │ ├── Internal.meta │ │ ├── Runners.meta │ │ ├── Standards.meta │ │ ├── Yielding.meta │ │ ├── Attributes.meta │ │ ├── Documentation.meta │ │ ├── Exceptions.meta │ │ ├── Binding │ │ │ ├── BindEnum.cs.meta │ │ │ ├── BindFunc.cs.meta │ │ │ ├── BindItem.cs.meta │ │ │ ├── BindTable.cs.meta │ │ │ ├── BindUserObject.cs.meta │ │ │ ├── ScriptBindings.cs.meta │ │ │ └── GlobalScriptBindings.cs.meta │ │ ├── QuickScripting.cs.meta │ │ ├── ScriptFunction.cs.meta │ │ ├── ScriptLibrary.cs.meta │ │ ├── ScriptReference.cs.meta │ │ ├── Yielding │ │ │ ├── Yielder.cs.meta │ │ │ ├── WaitForDone.cs.meta │ │ │ ├── WaitFrames.cs.meta │ │ │ ├── WaitUntil.cs.meta │ │ │ ├── Yielder.cs │ │ │ ├── WaitForDone.cs │ │ │ ├── WaitFrames.cs │ │ │ └── WaitUntil.cs │ │ ├── Standards │ │ │ ├── LuaFuncType.cs.meta │ │ │ └── LuaScriptStandard.cs.meta │ │ ├── Internal │ │ │ ├── BindingHelpers.cs.meta │ │ │ ├── StandardHelpers.cs.meta │ │ │ └── StandardHelpers.cs │ │ ├── OptimizedUnityCoroutine.cs.meta │ │ ├── Runners │ │ │ ├── BasicScriptRunner.cs.meta │ │ │ ├── HookedScriptRunner.cs.meta │ │ │ ├── ScriptRunnerBase.cs.meta │ │ │ ├── UserScriptRunner.cs.meta │ │ │ ├── HookedScriptContainer.cs.meta │ │ │ ├── HookedStateScriptRunner.cs.meta │ │ │ ├── MultiHookedScriptRunner.cs.meta │ │ │ └── ScriptRunnerBase.cs │ │ ├── Attributes │ │ │ ├── LunarBindEnumAttribute.cs.meta │ │ │ ├── LunarBindExampleAttribute.cs.meta │ │ │ ├── LunarBindHideAttribute.cs.meta │ │ │ ├── LunarBindPrefixAttribute.cs.meta │ │ │ ├── LunarBindStaticAttribute.cs.meta │ │ │ ├── LunarBindTypeAttribute.cs.meta │ │ │ ├── LunarBindYielderAttribute.cs.meta │ │ │ ├── LunarBindFunctionAttribute.cs.meta │ │ │ ├── LunarBindInstanceAttribute.cs.meta │ │ │ ├── LunarBindDocumentationAttribute.cs.meta │ │ │ ├── LunarBindIgnoreAssemblyAddAttribute.cs.meta │ │ │ ├── LunarBindIgnoreAssemblyAddAttribute.cs │ │ │ ├── LunarBindEnumAttribute.cs │ │ │ ├── LunarBindHideAttribute.cs │ │ │ ├── LunarBindYielderAttribute.cs │ │ │ └── LunarBindExampleAttribute.cs │ │ ├── Documentation │ │ │ └── BindingDocumentation.cs.meta │ │ └── Exceptions │ │ │ └── LunarBindStandardException.cs.meta │ └── MoonSharp.meta ├── StreamingAssets │ ├── .DS_Store │ ├── IMAGE │ │ ├── body.png │ │ ├── .DS_Store │ │ ├── dices │ │ │ ├── dice-spritesheet.png │ │ │ └── dice-spritesheet.png.meta │ │ ├── body.png.meta │ │ └── dices.meta │ ├── LUA │ │ ├── .DS_Store │ │ ├── lib │ │ │ ├── test.lua │ │ │ └── test.lua.meta │ │ ├── main.lua.meta │ │ └── lib.meta │ ├── IMAGE.meta │ └── LUA.meta ├── Quill │ ├── Elements │ │ ├── QuillBox.cs │ │ ├── QuillLabel.cs │ │ ├── QuillButton.cs │ │ ├── QuillBox.cs.meta │ │ ├── QuillButton.cs.meta │ │ ├── QuillElement.cs.meta │ │ └── QuillLabel.cs.meta │ ├── Proxy.meta │ ├── Elements.meta │ ├── Extensions.meta │ ├── Message.meta │ ├── Quill.cs.meta │ ├── QuillLua.cs.meta │ ├── Message │ │ └── Message.cs.meta │ ├── Proxy │ │ └── LuaProxy.cs.meta │ └── Extensions │ │ └── RectTransformExtensions.cs.meta ├── Example.meta ├── Example │ ├── Scenes │ │ ├── Main.unity.meta │ │ └── New Scene.unity.meta │ ├── Scenes.meta │ ├── RunLua.cs.meta │ ├── AppStartupLua.cs.meta │ ├── AppStarupCSharp.cs.meta │ └── AppStarupCSharp.cs ├── Quill.meta ├── StreamingAssets.meta └── Plugins.meta └── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── NetworkManager.asset ├── XRSettings.asset ├── TimeManager.asset ├── EditorBuildSettings.asset ├── VFXManager.asset ├── AudioManager.asset └── TagManager.asset /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/.DS_Store -------------------------------------------------------------------------------- /quill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/quill2.png -------------------------------------------------------------------------------- /img/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/img/sample.png -------------------------------------------------------------------------------- /Assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/Assets/.DS_Store -------------------------------------------------------------------------------- /img/panel_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/img/panel_sample.png -------------------------------------------------------------------------------- /img/quill_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/img/quill_button.png -------------------------------------------------------------------------------- /img/quill_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/img/quill_label.png -------------------------------------------------------------------------------- /img/button_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/img/button_sample.png -------------------------------------------------------------------------------- /Assets/Plugins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/Assets/Plugins/.DS_Store -------------------------------------------------------------------------------- /img/button_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/img/button_hierarchy.png -------------------------------------------------------------------------------- /Assets/StreamingAssets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/Assets/StreamingAssets/.DS_Store -------------------------------------------------------------------------------- /img/unity_editor_ui_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/img/unity_editor_ui_objects.png -------------------------------------------------------------------------------- /Assets/StreamingAssets/IMAGE/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/Assets/StreamingAssets/IMAGE/body.png -------------------------------------------------------------------------------- /Assets/StreamingAssets/LUA/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/Assets/StreamingAssets/LUA/.DS_Store -------------------------------------------------------------------------------- /Assets/StreamingAssets/IMAGE/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/Assets/StreamingAssets/IMAGE/.DS_Store -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.24f1 2 | m_EditorVersionWithRevision: 2019.4.24f1 (5da6f0345e82) 3 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/IMAGE/dices/dice-spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemuka/quill/HEAD/Assets/StreamingAssets/IMAGE/dices/dice-spritesheet.png -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CodeAnalysis/AstNode.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace MoonSharp.Interpreter.CodeAnalysis 3 | { 4 | class AstNode 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/LUA/lib/test.lua: -------------------------------------------------------------------------------- 1 | test = {} 2 | 3 | 4 | function test.greeter() 5 | quill.log("hello cemuka from other file") 6 | end 7 | 8 | return test -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Quill/Elements/QuillBox.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | namespace QuillLib 4 | { 5 | public class QuillBox : Image 6 | { 7 | public QuillElement element; 8 | } 9 | } -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Assets/Example.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4dca28dcfe604cf5acefe70293ba04e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Example/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57861d2fecf384b66b509c159b21edba 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Quill.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09af13c86f44949d5ba52ffab04b5d94 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/LUA/main.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 026f53c94964b42259890520db27743b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Example/Scenes/New Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74b67860dacc7487994a1448d7de1e58 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Quill/Proxy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdc31ef4106fe4fa9b8993e11ef7bd60 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/IMAGE/body.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c6b1baee532a44abaa9642fa8e8242f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/LUA/lib/test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e04941c14020409cb07febc582af2a9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Example/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd2f9c423643c4441acab32acc8ede92 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 993015e90168f4dc29a9126587a85e90 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/LunarBind.csproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b64d37f9ae5f41e38dcc1ed87938c1b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Quill/Elements.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c64c5fd0d86948fdaba3e736beb9b3d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Quill/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5270746a6861b4203b65093f4cb841cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Quill/Message.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e11abbfd6896647498cc51b63bc1d8f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 657d1bfe121e54151a742e7cabd56733 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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/StreamingAssets/IMAGE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e03fb7156f894b018fd309acd1cfd2e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/LUA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a64f9cb952034ce1a5601b57b2799de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Binding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62ba30aa9ac4c4a02aeeeb002f3ebcc7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b6fd3211d74246f4b18cf4aca807bd8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2297b39087064409baae2c6e34a1f39f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Standards.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4be45a2209d464b50981cca93d70d289 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Yielding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa10481bf58714a69b57fd713843f113 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/IMAGE/dices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4b5a1604cca24c4b8600bb6c315f702 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/IMAGE/dices/dice-spritesheet.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bcb02e16568e4d3483008ed42e8041b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/LUA/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d23ba1dded87480da8b753112f278ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b96ab511cd25849b2bd9f5472cdd3ea7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94585c79a02fc47b0aabe1b8c381b02a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1693ae3ac86d4a2c8efff8ab13f1ea3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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/Quill/Elements/QuillLabel.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | 5 | namespace QuillLib 6 | { 7 | public class QuillLabel : Text 8 | { 9 | public IQuillElement element; 10 | } 11 | } -------------------------------------------------------------------------------- /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/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/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/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/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/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/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 | -------------------------------------------------------------------------------- /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.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/Quill/Elements/QuillButton.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | namespace QuillLib 4 | { 5 | public class QuillButton : Button 6 | { 7 | public QuillElement element; 8 | public QuillLabel label; 9 | public QuillBox box; 10 | } 11 | } -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/Example/RunLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 134c413d92c074627abdaf4a47d9a191 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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/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/Quill/Quill.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e34c43d5dae4a499f83d37a350057655 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Quill/QuillLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6af9e8629fe754999a51991a04d9a5a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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/Example/AppStartupLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 815dddee4ed704c5d848ff3b1499b19b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Example/AppStarupCSharp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99e51a2038194496985f0cfa7b9d944a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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/Quill/Elements/QuillBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7e17c41001614a249f21e2e771421f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Quill/Message/Message.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70c49bf6bb71471192629f35c9f2cbe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Quill/Proxy/LuaProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e304671bc781a467bbad780c039395a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Quill/Elements/QuillButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f42b7bb0a229e4ae3848a8ff882ebbca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Quill/Elements/QuillElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70f25d4d98a764bd5bb081148775264d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Quill/Elements/QuillLabel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e288e369d4e1940009c81a3ec86b20a0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Binding/BindEnum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2438c0e48f95d43669365a60bb250b7d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Binding/BindFunc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5601f5b5775fb45b1913a4bf8672e172 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Binding/BindItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f143c8262fbff48609893c4f16398e5d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/QuickScripting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2ccf9150142e4a9390c524bb7e13d1a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/ScriptFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0009b17d38491d9ac5ff8ec01b09e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/ScriptLibrary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32d8bb609cf2546809dd236f8534e501 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/ScriptReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7a151178d9b640e6b81db81c43753a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Yielding/Yielder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62b568d98516343209740b30f19f1a63 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Binding/BindTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a468c754c70f2440ebb04d92a17663c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Standards/LuaFuncType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86a293f064fee4a3aae100813d6d19d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Yielding/WaitForDone.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0cefd2d822554442a18a7aa531ac94a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Yielding/WaitFrames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ddbd51e652ef46a8b4a9c27b9a1d61e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Yielding/WaitUntil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 811cc99b4bf1c43bba6ebfa251d08de6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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/LunarBind/Binding/BindUserObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 113e200ffd8494862a30f41854d1e86c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Binding/ScriptBindings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df1bdec1861a405f9032309e43334c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Internal/BindingHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 532f8e9a592684466b4457179a53625d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Internal/StandardHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 833da27c87bf34af6ac4419b7f298efc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/OptimizedUnityCoroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aef597f088e574bc6832338c61b0b9b6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/BasicScriptRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3732a7bd05e3b4898aba44921073c4eb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/HookedScriptRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9d7ada264a6b48f687a93ec9fa5c997 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/ScriptRunnerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38095a5940a5b46bca1a2c2113abd358 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/UserScriptRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d12f45f73a9049c78e6f6e67f37bd24 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Quill/Extensions/RectTransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11a8d7cb8937b4e4e8643eef3caa8688 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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/Example/Scenes/Main.unity 10 | guid: 57861d2fecf384b66b509c159b21edba 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Binding/GlobalScriptBindings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88ce4bbc793b3456bbe006ca3f403900 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/HookedScriptContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5208bb64c58284abda0ad5d2a16961f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/HookedStateScriptRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eea18a7909675489eb309c8639c4eeaa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/MultiHookedScriptRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1af10100dc738447ab6b930bd60882aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Standards/LuaScriptStandard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e334cbca79f14634985bd64c971cb52 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindEnumAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7796887b34134d7cbd94ebe23aceb33 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindExampleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 216bccb67cd9a4130a991380d566db42 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindHideAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f042d099f12e475f8d93806e7560213 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindPrefixAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7c6503082b7d47f0a79c44e8a86ca53 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindStaticAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16484a62cd37c49aba756602007c1681 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindTypeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: effb701b3ea1a4504821a90675664d39 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindYielderAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b6becd435a2e43bea0ab8444fd74884 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Documentation/BindingDocumentation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c394a51963d8e45b084760a64a861d04 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindFunctionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a41ff42dce245455d847db94dd86693b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindInstanceAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6054ffcc7ce64765b0858adfb69acd1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Exceptions/LunarBindStandardException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 909362ee8d3624e02a84d30a76df23a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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/LunarBind/Attributes/LunarBindDocumentationAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7379210b6dda349248358d842b505b31 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindIgnoreAssemblyAddAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c929d206a927441ca9637e54c1425426 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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.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/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/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/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/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.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/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/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/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/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/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/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/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/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.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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/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/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.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/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.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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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.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/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/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/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/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_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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 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/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_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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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.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/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/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/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/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/LunarBind/Yielding/Yielder.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind 2 | { 3 | using MoonSharp.Interpreter; 4 | 5 | [MoonSharpUserData] 6 | public abstract class Yielder 7 | { 8 | /// 9 | /// Returns the state of the yielder. True means complete, False means continue yielding 10 | /// 11 | /// 12 | public abstract bool CheckStatus(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /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/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/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/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/LunarBind/Yielding/WaitForDone.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace LunarBind.Yielding 3 | { 4 | using MoonSharp.Interpreter; 5 | 6 | /// 7 | /// Waits until Done is set to true by an external source 8 | /// 9 | [MoonSharpUserData] 10 | public class WaitForDone : Yielder 11 | { 12 | public bool Done { get; set; } = false; 13 | 14 | public override bool CheckStatus() 15 | { 16 | return Done; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /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/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/Example/AppStarupCSharp.cs: -------------------------------------------------------------------------------- 1 | 2 | using QuillLib; 3 | using UnityEngine; 4 | using QuillLib.Lua; 5 | using System; 6 | using System.Collections.Generic; 7 | 8 | public class AppStarupCSharp : MonoBehaviour 9 | { 10 | private void Start() 11 | { 12 | Quill.Init(); 13 | 14 | var button = Quill.CreateButton("my awesome button"); 15 | button.box.color = Color.blue; 16 | button.label.color = Color.yellow; 17 | 18 | button.element.SetAnchoredPosition(200, -100); 19 | } 20 | } -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindIgnoreAssemblyAddAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace LunarBind 3 | { 4 | /// 5 | /// Hide class from being added through assembly 6 | /// 7 | [System.AttributeUsage(AttributeTargets.Struct | AttributeTargets.Class, Inherited = false, AllowMultiple = false)] 8 | public class LunarBindIgnoreAssemblyAddAttribute : Attribute 9 | { 10 | public LunarBindIgnoreAssemblyAddAttribute() 11 | { 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /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/LunarBind/Attributes/LunarBindEnumAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind 2 | { 3 | //For use in bind assembly functions 4 | using System; 5 | [System.AttributeUsage(AttributeTargets.Enum, Inherited = false, AllowMultiple = false)] 6 | public sealed class LunarBindEnumAttribute : Attribute 7 | { 8 | readonly string name; 9 | public string Name => name; 10 | public LunarBindEnumAttribute(string name = null) 11 | { 12 | this.name = name; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Runners/ScriptRunnerBase.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind 2 | { 3 | using MoonSharp.Interpreter; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Text; 7 | 8 | /// 9 | /// The base class of all ScriptRunners. Contains a MoonSharp script 10 | /// 11 | public abstract class ScriptRunnerBase 12 | { 13 | public Script Lua { get; protected set; } 14 | 15 | public Guid Guid { get; private set; } = Guid.NewGuid(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /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/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/LunarBind/Attributes/LunarBindHideAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind 2 | { 3 | using System; 4 | /// 5 | /// Hide from being added 6 | /// 7 | [System.AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Struct | AttributeTargets.Class, Inherited = false, AllowMultiple = false)] 8 | public class LunarBindHideAttribute : Attribute 9 | { 10 | public LunarBindHideAttribute() 11 | { 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /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 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindYielderAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind 2 | { 3 | using System; 4 | 5 | /// 6 | /// Marks a class that is derived from for assembly binding. 7 | /// 8 | [System.AttributeUsage(AttributeTargets.Struct | AttributeTargets.Class, Inherited = false, AllowMultiple = false)] 9 | public class LunarBindYielderAttribute : Attribute 10 | { 11 | public LunarBindYielderAttribute() 12 | { 13 | 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /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/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/LunarBind/Yielding/WaitFrames.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind.Yielding 2 | { 3 | using MoonSharp.Interpreter; 4 | /// 5 | /// Waits X amount of calls 6 | /// 7 | [MoonSharpUserData] 8 | public class WaitFrames : Yielder 9 | { 10 | long framesLeft; 11 | 12 | public WaitFrames(long frames) 13 | { 14 | framesLeft = frames; 15 | } 16 | public override bool CheckStatus() 17 | { 18 | return (framesLeft-- <= 0); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /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/LunarBind/Internal/StandardHelpers.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind 2 | { 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Text; 6 | using LunarBind.Standards; 7 | internal static class StandardHelpers 8 | { 9 | internal static LuaFuncType GetLuaFuncType(bool coroutine, bool autoreset) 10 | { 11 | if (!coroutine) return LuaFuncType.Function; 12 | else if (autoreset) return LuaFuncType.AutoCoroutine; 13 | else return LuaFuncType.SingleUseCoroutine; 14 | } 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /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/LunarBind/Yielding/WaitUntil.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind.Yielding 2 | { 3 | using MoonSharp.Interpreter; 4 | using System; 5 | 6 | /// 7 | /// Waits until the passed in function returns true 8 | /// 9 | [MoonSharpUserData] 10 | public class WaitUntil : Yielder 11 | { 12 | Func waiter; 13 | 14 | public WaitUntil(Func waiter) 15 | { 16 | this.waiter = waiter; 17 | } 18 | public override bool CheckStatus() 19 | { 20 | return waiter(); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Plugins/LunarBind/Attributes/LunarBindExampleAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace LunarBind 2 | { 3 | using System; 4 | [System.AttributeUsage(AttributeTargets.Method | AttributeTargets.Field | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, Inherited = false, AllowMultiple = false)] 5 | public sealed class LunarBindExampleAttribute : Attribute 6 | { 7 | readonly string data; 8 | 9 | public string Data 10 | { 11 | get { return data; } 12 | } 13 | public LunarBindExampleAttribute(string data) 14 | { 15 | this.data = data; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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/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/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/Debugger/DebuggerLogic/IAsyncDebuggerClient.cs: -------------------------------------------------------------------------------- 1 | #if (!PCL) && ((!UNITY_5) || 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 --------------------------------------------------------------------------------