Commit 6db2bde4 authored by redsuncore's avatar redsuncore

Model Updated, Quest Pop Up Available

모델 업데이트, 퀘스트 팝업 업데이트. 피노 엔딩 추가. 퀘스트 추가.
parent 580601f1
fileFormatVersion: 2
guid: 06d1e9b94983c2b43b353b6afc3e4574
timeCreated: 1519738849
timeCreated: 1519986380
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: 14316eefeff7b8c4882dee9cb31df5f1
timeCreated: 1519738849
timeCreated: 1519986380
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: 51a4ccfc53e3bd3489fedcd4adb9e458
timeCreated: 1519738849
timeCreated: 1519986380
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
......@@ -524,17 +524,22 @@
</member>
<member name="P:CivModel.Game.TurnObservable">
<summary>
An <see cref="T:CivModel.Observable`1"/> which can be observed by <see cref="T:CivModel.ITurnObserver"/>.
An <see cref="T:CivModel.Observable`1"/> object which can be observed by <see cref="T:CivModel.ITurnObserver"/>.
</summary>
</member>
<member name="P:CivModel.Game.TileObjectObservable">
<summary>
An <see cref="T:CivModel.Observable`1"/> which can be observed by <see cref="T:CivModel.ITileObjectObserver"/>.
An <see cref="T:CivModel.Observable`1"/> object which can be observed by <see cref="T:CivModel.ITileObjectObserver"/>.
</summary>
</member>
<member name="P:CivModel.Game.BattleObservable">
<summary>
An <see cref="T:CivModel.Observable`1"/> which can be observed by <see cref="T:CivModel.IBattleObserver"/>.
An <see cref="T:CivModel.Observable`1"/> object which can be observed by <see cref="T:CivModel.IBattleObserver"/>.
</summary>
</member>
<member name="P:CivModel.Game.QuestObservable">
<summary>
An <see cref="T:CivModel.Observable`1"/> object which can be observed by <see cref="T:CivModel.IQuestObserver"/>.
</summary>
</member>
<member name="T:CivModel.GameConstants">
......@@ -1149,6 +1154,31 @@
<exception cref="T:System.InvalidOperationException">production is not completed yet</exception>
<exception cref="T:System.ArgumentException">point is invalid</exception>
</member>
<member name="T:CivModel.IQuestObserver">
<summary>
The interface to observe <see cref="T:CivModel.Quest"/> related events.
</summary>
<seealso cref="T:CivModel.Game"/>
<seealso cref="T:CivModel.Quest"/>
</member>
<member name="M:CivModel.IQuestObserver.QuestAccepted(CivModel.Quest)">
<summary>
Called when quest is accepted.
</summary>
<param name="quest"></param>
</member>
<member name="M:CivModel.IQuestObserver.QuestGivenup(CivModel.Quest)">
<summary>
Called when quest is given up.
</summary>
<param name="quest"></param>
</member>
<member name="M:CivModel.IQuestObserver.QuestCompleted(CivModel.Quest)">
<summary>
Called when quest is completed.
</summary>
<param name="quest"></param>
</member>
<member name="T:CivModel.ITileObjectObserver">
<summary>
The interface to observe <see cref="T:CivModel.TileObject"/> related events.
......
......@@ -182,7 +182,7 @@
All members of this class are thread-safe and may be used concurrently from multiple threads.</remarks>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Get``1(``0[0:, 0:],System.Int32,System.Int32)">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Get``1(``0[0:,0:],System.Int32,System.Int32)">
<summary>Fetches an element from a 2D array. You can also use the syntax <c>array.[index1,index2]</c>.</summary>
<param name="array">The input array.</param>
......@@ -192,7 +192,7 @@
<returns>The value of the array at the given index.</returns>
<exception cref="System.ArgumentException">Thrown when the indices are negative or exceed the bounds of the array.</exception>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Set``1(``0[0:, 0:],System.Int32,System.Int32,``0)">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Set``1(``0[0:,0:],System.Int32,System.Int32,``0)">
<summary>Sets the value of an element in an array. You can also use the syntax <c>array.[index1,index2] &lt;- value</c>.</summary>
<param name="array">The input array.</param>
......@@ -201,7 +201,7 @@
<param name="value">The value to set in the array.</param>
<exception cref="System.ArgumentException">Thrown when the indices are negative or exceed the bounds of the array.</exception>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Rebase``1(``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Rebase``1(``0[0:,0:])">
<summary>Builds a new array whose elements are the same as the input array but
where a non-zero-based input array generates a corresponding zero-based
output array.</summary>
......@@ -210,7 +210,7 @@
<returns>The zero-based output array.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.MapIndexed``2(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,``1}}},``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.MapIndexed``2(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,``1}}},``0[0:,0:])">
<summary>Builds a new array whose elements are the results of applying the given function
to each of the elements of the array. The integer indices passed to the
function indicates the element being transformed.</summary>
......@@ -224,7 +224,7 @@
<returns>An array whose elements have been transformed by the given mapping.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Map``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Map``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},``0[0:,0:])">
<summary>Builds a new array whose elements are the results of applying the given function
to each of the elements of the array.</summary>
......@@ -236,28 +236,28 @@
<returns>An array whose elements have been transformed by the given mapping.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Length2``1(``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Length2``1(``0[0:,0:])">
<summary>Returns the length of an array in the second dimension.</summary>
<param name="array">The input array.</param>
<returns>The length of the array in the second dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Length1``1(``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Length1``1(``0[0:,0:])">
<summary>Returns the length of an array in the first dimension.</summary>
<param name="array">The input array.</param>
<returns>The length of the array in the first dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.IterateIndexed``1(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit}}},``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.IterateIndexed``1(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit}}},``0[0:,0:])">
<summary>Applies the given function to each element of the array. The integer indices passed to the
function indicates the index of element.</summary>
<param name="action">A function to apply to each element of the array with the indices available as an argument.</param>
<param name="array">The input array.</param>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Iterate``1(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit},``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Iterate``1(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit},``0[0:,0:])">
<summary>Applies the given function to each element of the array.</summary>
<param name="action">A function to apply to each element of the array.</param>
......@@ -327,7 +327,7 @@
<returns>The generated array.</returns>
<exception cref="System.ArgumentException">Thrown when either of the lengths is negative.</exception>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.CopyTo``1(``0[0:, 0:],System.Int32,System.Int32,``0[0:, 0:],System.Int32,System.Int32,System.Int32,System.Int32)">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.CopyTo``1(``0[0:,0:],System.Int32,System.Int32,``0[0:,0:],System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Reads a range of elements from the first array and write them into the second.</summary>
<param name="source">The source array.</param>
......@@ -341,7 +341,7 @@
<exception cref="System.ArgumentException">Thrown when any of the indices are negative or if either of
the counts are larger than the dimensions of the array allow.</exception>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Copy``1(``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Copy``1(``0[0:,0:])">
<summary>Builds a new array whose elements are the same as the input array.</summary>
<remarks>For non-zero-based arrays the basing on an input array will be propagated to the output
......@@ -351,14 +351,14 @@
<returns>A copy of the input array.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Base2``1(``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Base2``1(``0[0:,0:])">
<summary>Fetches the base-index for the second dimension of the array.</summary>
<param name="array">The input array.</param>
<returns>The base-index of the second dimension of the array.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Base1``1(``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array2DModule.Base1``1(``0[0:,0:])">
<summary>Fetches the base-index for the first dimension of the array.</summary>
<param name="array">The input array.</param>
......@@ -3441,7 +3441,7 @@
<member name="T:Microsoft.FSharp.Collections.ArrayModule">
<summary>Basic operations on arrays.</summary>
</member>
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Set``1(``0[0:, 0:, 0:, 0:],System.Int32,System.Int32,System.Int32,System.Int32,``0)">
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Set``1(``0[0:,0:,0:,0:],System.Int32,System.Int32,System.Int32,System.Int32,``0)">
<summary>Sets the value of an element in an array. You can also
use the syntax 'array.[index1,index2,index3,index4] &lt;- value'.</summary>
<param name="array">The input array.</param>
......@@ -3451,7 +3451,7 @@
<param name="index4">The index along the fourth dimension.</param>
<param name="value">The value to set.</param>
</member>
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Get``1(``0[0:, 0:, 0:, 0:],System.Int32,System.Int32,System.Int32,System.Int32)">
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Get``1(``0[0:,0:,0:,0:],System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Fetches an element from a 4D array. You can also use the syntax 'array.[index1,index2,index3,index4]'</summary>
<param name="array">The input array.</param>
<param name="index1">The index along the first dimension.</param>
......@@ -3468,22 +3468,22 @@
<param name="length4">The length of the fourth dimension.</param>
<returns>The created array.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length4``1(``0[0:, 0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length4``1(``0[0:,0:,0:,0:])">
<summary>Returns the length of an array in the fourth dimension.</summary>
<param name="array">The input array.</param>
<returns>The length of the array in the fourth dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length3``1(``0[0:, 0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length3``1(``0[0:,0:,0:,0:])">
<summary>Returns the length of an array in the third dimension.</summary>
<param name="array">The input array.</param>
<returns>The length of the array in the third dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length2``1(``0[0:, 0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length2``1(``0[0:,0:,0:,0:])">
<summary>Returns the length of an array in the second dimension.</summary>
<param name="array">The input array.</param>
<returns>The length of the array in the second dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length1``1(``0[0:, 0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array4DModule.Length1``1(``0[0:,0:,0:,0:])">
<summary>Returns the length of an array in the first dimension </summary>
<param name="array">The input array.</param>
<returns>The length of the array in the first dimension.</returns>
......@@ -3516,7 +3516,7 @@
<param name="length3">The length of the third dimension.</param>
<returns>The created array.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Set``1(``0[0:, 0:, 0:],System.Int32,System.Int32,System.Int32,``0)">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Set``1(``0[0:,0:,0:],System.Int32,System.Int32,System.Int32,``0)">
<summary>Sets the value of an element in an array. You can also
use the syntax 'array.[index1,index2,index3] &lt;- value'.</summary>
<param name="array">The input array.</param>
......@@ -3525,7 +3525,7 @@
<param name="index3">The index along the third dimension.</param>
<param name="value">The value to set at the given index.</param>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.MapIndexed``2(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,``1}}}},``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.MapIndexed``2(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,``1}}}},``0[0:,0:,0:])">
<summary>Builds a new array whose elements are the results of applying the given function
to each of the elements of the array. The integer indices passed to the
function indicates the element being transformed.</summary>
......@@ -3536,7 +3536,7 @@
<param name="array">The input array.</param>
<returns>The array created from the transformed elements.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Map``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Map``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},``0[0:,0:,0:])">
<summary>Builds a new array whose elements are the results of applying the given function
to each of the elements of the array.</summary>
......@@ -3546,33 +3546,33 @@
<param name="array">The input array.</param>
<returns>The array created from the transformed elements.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Length3``1(``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Length3``1(``0[0:,0:,0:])">
<summary>Returns the length of an array in the third dimension.</summary>
<param name="array">The input array.</param>
<returns>The length of the array in the third dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Length2``1(``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Length2``1(``0[0:,0:,0:])">
<summary>Returns the length of an array in the second dimension.</summary>
<param name="array">The input array.</param>
<returns>The length of the array in the second dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Length1``1(``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Length1``1(``0[0:,0:,0:])">
<summary>Returns the length of an array in the first dimension </summary>
<param name="array">The input array.</param>
<returns>The length of the array in the first dimension.</returns>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.IterateIndexed``1(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit}}}},``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.IterateIndexed``1(Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{System.Int32,Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit}}}},``0[0:,0:,0:])">
<summary>Applies the given function to each element of the array. The integer indices passed to the
function indicates the index of element.</summary>
<param name="action">The function to apply to each element of the array.</param>
<param name="array">The input array.</param>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Iterate``1(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit},``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Iterate``1(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.Unit},``0[0:,0:,0:])">
<summary>Applies the given function to each element of the array.</summary>
<param name="action">The function to apply to each element of the array.</param>
<param name="array">The input array.</param>
</member>
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Get``1(``0[0:, 0:, 0:],System.Int32,System.Int32,System.Int32)">
<member name="M:Microsoft.FSharp.Collections.Array3DModule.Get``1(``0[0:,0:,0:],System.Int32,System.Int32,System.Int32)">
<summary>Fetches an element from a 3D array. You can also use the syntax 'array.[index1,index2,index3]'</summary>
<param name="array">The input array.</param>
<param name="index1">The index along the first dimension.</param>
......@@ -5915,6 +5915,19 @@
and not infinite.</exception>
</member>
<member name="M:Microsoft.FSharp.Control.FSharpAsync.RunSynchronously``1(Microsoft.FSharp.Control.FSharpAsync{``0},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Threading.CancellationToken})">
<summary>Runs the asynchronous computation and await its result.</summary>
<remarks>If an exception occurs in the asynchronous computation then an exception is re-raised by this
function.
If no cancellation token is provided then the default cancellation token is used.
The timeout parameter is given in milliseconds. A value of -1 is equivalent to
System.Threading.Timeout.Infinite.</remarks>
<param name="computation">The computation to run.</param>
<param name="timeout">The amount of time in milliseconds to wait for the result of the
computation before raising a <c>System.TimeoutException</c>. If no value is provided
for timeout then a default of -1 is used to correspond to System.Threading.Timeout.Infinite.</param>
<param name="cancellationToken">The cancellation token to be associated with the computation.
If one is not supplied, the default cancellation token is used.</param>
<returns>The result of the computation.</returns>
......@@ -7713,7 +7726,7 @@
due to the use of <c>null</c> as a value representation.</remarks>
</member>
<member name="T:Microsoft.FSharp.Core.ref`1">
<summary>The type of mutable references. Use the functions [!] and [:=] to get and
<summary>The type of mutable references. Use the functions [:=] and [!] to get and
set values of this type.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.FSharpRef`1.contents">
......@@ -7728,7 +7741,7 @@
<summary>The current value of the reference cell</summary>
</member>
<member name="T:Microsoft.FSharp.Core.FSharpRef`1">
<summary>The type of mutable references. Use the functions [!] and [:=] to get and
<summary>The type of mutable references. Use the functions [:=] and [!] to get and
set values of this type.</summary>
</member>
<member name="M:Microsoft.FSharp.Core.FuncConvert.ToFSharpFunc``2(System.Converter{``0,``1})">
......@@ -8678,429 +8691,6 @@
<member name="T:Microsoft.FSharp.Core.MatchFailureException">
<summary>Non-exhaustive match failures will raise the MatchFailureException exception</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.unsupportedQueryConstructKind">
<summary>This is not a valid query expression. The construct '{0}' was used in a query but is not recognized by the F#-to-LINQ query translator. Check the specification of permitted queries and consider moving some of the operations out of the query expression.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.unsupportedQueryProperty">
<summary>This is not a valid query expression. The property '{0}' was used in a query but is not recognized by the F#-to-LINQ query translator. Check the specification of permitted queries and consider moving some of the operations out of the query expression.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.unsupportedQueryCall">
<summary>This is not a valid query expression. The method '{0}' was used in a query but is not recognized by the F#-to-LINQ query translator. Check the specification of permitted queries and consider moving some of the operations out of the query expression</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.unsupportedQueryConstruct">
<summary>This is not a valid query expression. The following construct was used in a query but is not recognized by the F#-to-LINQ query translator:\n{0}\nCheck the specification of permitted queries and consider moving some of the operations out of the query expression.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.unsupportedIfThenElse">
<summary>An if/then/else conditional or pattern matching expression with multiple branches is not permitted in a query. An if/then/else conditional may be used.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.failDueToUnsupportedInputTypeInSumByOrAverageBy">
<summary>Unrecognized use of a 'sumBy' or 'averageBy' operator in a query. In queries whose original data is of static type IQueryable, these operators may only be used with result type int32, int64, single, double or decimal</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.thenByError">
<summary>'thenBy' and 'thenByDescending' may only be used with an ordered input</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.inputSequenceTooLong">
<summary>The input sequence contains more than one element.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.invalidTupleTypeConstructorNotDefined">
<summary>The tuple type '{0}' is invalid. Required constructor is not defined.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.invalidRecordTypeConstructorNotDefined">
<summary>The record type '{0}' is invalid. Required constructor is not defined.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.controlContinuationInvokedMultipleTimes">
<summary>A continuation provided by Async.FromContinuations was invoked multiple times</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.optionValueWasNone">
<summary>The option value was None</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.thisValueCannotBeMutated">
<summary>This value cannot be mutated</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtypeArgumentOutOfRange">
<summary>type argument out of range</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QillFormedAppOrLet">
<summary>ill formed expression: AppOp or LetOp</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QfailedToBindAssembly">
<summary>Failed to bind assembly '{0}' while processing quotation data</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QcannotTakeAddress">
<summary>Cannot take the address of this quotation</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QcannotBindToMethod">
<summary>Could not bind to method</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QcannotBindProperty">
<summary>Could not bind property {0} in type {1}</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QcannotBindFunction">
<summary>Could not bind function {0} in type {1}</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfWidthSpecifierIllegal">
<summary>Bad format specifier (width)</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfSpecifierAfterIllegal">
<summary>Bad format specifier (after {0})</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfPrecisonSpecifierIllegal">
<summary>Bad format specifier (precision)</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfNotAFunType">
<summary>Not a function type</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfMissingFormatSpecifier">
<summary>Missing format specifier</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfHashFormatSpecifierIllegal">
<summary>The # formatting modifier is invalid in F#</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfExpectedWidth">
<summary>Expected a width argument</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfExpectedPrecision">
<summary>Expected a precision argument</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfBadIntegerForDynamicFomatter">
<summary>Bad integer supplied to dynamic formatter</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfBadFormatSpecifier">
<summary>Bad format specifier:{0}</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.printfBadFloatValue">
<summary>Bad float value</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.multipleCompilationMappings">
<summary>Multiple CompilationMappingAttributes, expected at most one</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.moveNextNotCalledOrFinished">
<summary>MoveNext not called, or finished</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.firstClassUsesOfSplice">
<summary>first class uses of '%' or '%%' are not permitted</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.constructorForUnionCaseNotFound">
<summary>The constructor method '{0}' for the union case could not be found</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.keyNotFoundAlt">
<summary>An index satisfying the predicate was not found in the collection.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QwrongNumOfTypeArgs">
<summary>The method '{0}' expects {1} type arguments but {2} were provided</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QwritingGetOnly">
<summary>Writing a get-only property</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QunionNeedsDiffNumArgs">
<summary>F# union type requires different number of arguments</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtupleLengthsDiffer">
<summary>The tuple lengths are different</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtupleAccessOutOfRange">
<summary>Tuple access out of range</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmRaw">
<summary>Type mismatch when splicing expression into quotation literal. The type of the expression tree being inserted doesn't match the type expected by the splicing operation. Expected '{0}', but received type '{1}'. Consider type-annotating with the expected expression type, e.g., (%% x : {0}) or (%x : {0}).</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmFunTypeNotMatchDelegate">
<summary>Type mismatch when building '{0}': function type doesn't match delegate type. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmExprHasWrongType">
<summary>Type mismatch when building '{0}': the expression has the wrong type. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QstaticWithReceiverObject">
<summary>Receiver object was unexpected, as member is static</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QreadingSetOnly">
<summary>Reading a set-only property</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QparentCannotBeNull">
<summary>Parent type cannot be null</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QnonStaticNoReceiverObject">
<summary>The member is non-static (instance), but no receiver object was supplied</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QinvalidFuncType">
<summary>Invalid function type</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QincorrectType">
<summary>Incorrect type</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QincorrectNumArgs">
<summary>Incorrect number of arguments</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QincorrectInstanceType">
<summary>Incorrect instance type</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QincompatibleRecordLength">
<summary>Incompatible record length</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QfailedToBindTypeInAssembly">
<summary>Failed to bind type '{0}' in assembly '{1}'</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QfailedToBindProperty">
<summary>Failed to bind property '{0}'</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QfailedToBindField">
<summary>Failed to bind field '{0}'</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QfailedToBindConstructor">
<summary>Failed to bind constructor</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.tupleIndexOutOfRange">
<summary>The tuple index '{1}' was out of range for tuple type '{0}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.syncContextNull">
<summary>The System.Threading.SynchronizationContext.Current of the calling thread is null.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.stepCannotBeZero">
<summary>The step of a range cannot be zero.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.stepCannotBeNaN">
<summary>The step of a range cannot be NaN.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.startCannotBeNaN">
<summary>The start of a range cannot be NaN.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.resetNotSupported">
<summary>Reset is not supported on this enumerator.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QunrecognizedMethodCall">
<summary>The parameter is not a recognized method name.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QunexpectedHole">
<summary>Unexpected quotation hole in expression.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmVarTypeNotMatchRHS">
<summary>Type mismatch when building '{0}': the variable type doesn't match the type of the right-hand-side of a let binding. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmTuple">
<summary>Type mismatch when building '{0}': mismatched type of argument and tuple element. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmTrueAndFalseMustMatch">
<summary>Type mismatch when building '{0}': types of true and false branches differ. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmLowerUpperBoundMustBeInt">
<summary>Type mismatch when building '{0}': lower and upper bounds must be integers. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmLoopBodyMustBeLambdaTakingInteger">
<summary>Type mismatch when building '{0}': body of the for loop must be lambda taking integer as an argument. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmInvalidParam">
<summary>Type mismatch when building '{0}': invalid parameter for a method or indexer property. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmInitArray">
<summary>Type mismatch when building '{0}': initializer doesn't match array type. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmIncorrectArgForUnion">
<summary>Type mismatch when building '{0}': incorrect argument type for an F# union. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmIncorrectArgForRecord">
<summary>Type mismatch when building '{0}': incorrect argument type for an F# record. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmGuardMustBeBool">
<summary>Type mismatch when building '{0}': guard must return boolean. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmFunctionArgTypeMismatch">
<summary>Type mismatch when building '{0}': function argument type doesn't match. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmExprTypeMismatch">
<summary>Type mismatch when building '{0}': types of expression does not match. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmExprNotMatchTuple">
<summary>Type mismatch when building '{0}': expression doesn't match the tuple type. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmExpectedFunction">
<summary>Type mismatch when building '{0}': expected function type in function application or let binding. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmCondMustBeBool">
<summary>Type mismatch when building '{0}': condition expression must be of type bool. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmBodyMustBeUnit">
<summary>Type mismatch when building '{0}': body must return unit. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QtmmBadFieldType">
<summary>Type mismatch when building '{0}': the type of the field was incorrect. Expected '{1}', but received type '{2}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QmissingUnionCase">
<summary>Type '{0}' did not have an F# union case named '{1}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QmissingRecordField">
<summary>Type '{0}' did not have an F# record field named '{1}'.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QinvalidCaseIndex">
<summary>Not a valid F# union case index.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QexpectedTwoTypes">
<summary>Expected exactly two type arguments.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.QexpectedOneType">
<summary>Expected exactly one type argument.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.privateUnionType">
<summary>The type '{0}' is an F# union type but its representation is private. You must specify BindingFlags.NonPublic to access private type representations.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.privateRecordType">
<summary>The type '{0}' is an F# record type but its representation is private. You must specify BindingFlags.NonPublic to access private type representations.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.privateExceptionType">
<summary>The type '{0}' is the representation of an F# exception declaration but its representation is private. You must specify BindingFlags.NonPublic to access private type representations.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.outOfRange">
<summary>The index is outside the legal range.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.objIsNullAndNoType">
<summary>The object is null and no type was given. Either pass a non-null object or a non-null type parameter.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.objIsNotARecord">
<summary>The object is not an F# record value.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.nullsNotAllowedInArray">
<summary>One of the elements in the array is null.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notUsedForHashing">
<summary>This object is for recursive equality calls and cannot be used for hashing.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notEnoughElements">
<summary>The input sequence has an insufficient number of elements.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notComparable">
<summary>The two objects have different types and are not comparable.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notAUnionType">
<summary>Type '{0}' is not an F# union type.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notATupleType">
<summary>Type '{0}' is not a tuple type.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notARecordType">
<summary>Type '{0}' is not an F# record type.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notAPermutation">
<summary>The function did not compute a permutation.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notAnExceptionType">
<summary>Type '{0}' is not the representation of an F# exception declaration.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.notAFunctionType">
<summary>Type '{0}' is not a function type.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.nonZeroBasedDisallowed">
<summary>Arrays with non-zero base cannot be created on this platform.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.checkStaticInit">
<summary>The static initialization of a file or type resulted in static data being accessed recursively before it was fully initialized.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.checkInit">
<summary>The initialization of an object or value resulted in an object or value being accessed recursively before it was fully initialized.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.noNegateMinValue">
<summary>Negating the minimum value of a twos complement number is invalid.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mismatchIAREnd">
<summary>The IAsyncResult object provided does not match this 'End' operation.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mismatchIARCancel">
<summary>The IAsyncResult object provided does not match this 'Cancel' operation.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mapCannotBeMutated">
<summary>Map values cannot be mutated.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mailboxScanTimedOut">
<summary>Mailbox.Scan timed out.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mailboxReceiveTimedOut">
<summary>Mailbox.Receive timed out.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mailboxProcessorPostAndReplyTimedOut">
<summary>MailboxProcessor.PostAndReply timed out.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mailboxProcessorPostAndAsyncReplyTimedOut">
<summary>MailboxProcessor.PostAndAsyncReply timed out.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.mailboxProcessorAlreadyStarted">
<summary>The MailboxProcessor has already been started.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.listsHadDifferentLengths">
<summary>The lists had different lengths.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.keyNotFound">
<summary>The item, key, or index was not found in the collection.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.invalidTupleTypes">
<summary>This is not a valid tuple type for the F# reflection library.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.inputSequenceEmpty">
<summary>The input sequence was empty.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.inputMustBePositive">
<summary>The input must be positive.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.inputMustBeNonNegative">
<summary>The input must be non-negative.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.inputListWasEmpty">
<summary>The input list was empty.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.indexOutOfBounds">
<summary>The index was outside the range of elements in the list.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.genericCompareFail1">
<summary>Failure during generic comparison: the type '{0}' does not implement the System.IComparable interface. This error may be arise from the use of a function such as 'compare', 'max' or 'min' or a data structure such as 'Set' or 'Map' whose keys contain instances of this type.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.failedReadEnoughBytes">
<summary>Failed to read enough bytes from the stream.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.enumerationPastIntMaxValue">
<summary>Enumeration based on System.Int32 exceeded System.Int32.MaxValue.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.setContainsNoElements">
<summary>Set contains no elements.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.enumerationNotStarted">
<summary>Enumeration has not started. Call MoveNext.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.enumerationAlreadyFinished">
<summary>Enumeration already finished.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.endCannotBeNaN">
<summary>The end of a range cannot be NaN.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.dyInvOpMultOverload">
<summary>Dynamic invocation of op_Multiply involving overloading is not supported.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.dyInvOpMultCoerce">
<summary>Dynamic invocation of op_Multiply involving coercions is not supported.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.dyInvOpAddOverload">
<summary>Dynamic invocation of op_Addition involving overloading is not supported.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.dyInvOpAddCoerce">
<summary>Dynamic invocation of op_Addition involving coercions is not supported.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.dyInvDivByIntCoerce">
<summary>Dynamic invocation of DivideByInt involving coercions is not supported.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.delegateExpected">
<summary>Expecting delegate type.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.badFormatString">
<summary>Input string was not in a correct format.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.arrayWasEmpty">
<summary>The input array was empty.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.arraysHadDifferentLengths">
<summary>The arrays have different lengths.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.addressOpNotFirstClass">
<summary>First class uses of address-of operators are not permitted.</summary>
</member>
<member name="P:Microsoft.FSharp.Core.SR.matchCasesIncomplete">
<summary>The match cases were incomplete</summary>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.KeyValuePattern``2(System.Collections.Generic.KeyValuePair{``0,``1})">
<summary>An active pattern to match values of type <c>System.Collections.Generic.KeyValuePair</c></summary>
<param name="keyValuePair">The input key/value pair.</param>
......@@ -10125,7 +9715,7 @@
<param name="finish">The index of the last character of the slice.</param>
<returns>The substring from the given indices.</returns>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice4D``1(``0[0:, 0:, 0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[0:, 0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice4D``1(``0[0:,0:,0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[0:,0:,0:,0:])">
<summary>Sets a slice of an array</summary>
<param name="target">The target array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10138,7 +9728,7 @@
<param name="finish4">The end index of the fourth dimension.</param>
<param name="source">The source array.</param>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice4D``1(``0[0:, 0:, 0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice4D``1(``0[0:,0:,0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<summary>Gets a slice of an array</summary>
<param name="source">The source array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10151,7 +9741,7 @@
<param name="finish4">The end index of the fourth dimension.</param>
<returns>The four dimensional sub array from the given indices.</returns>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice3D``1(``0[0:, 0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[0:, 0:, 0:])">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice3D``1(``0[0:,0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[0:,0:,0:])">
<summary>Sets a slice of an array</summary>
<param name="target">The target array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10162,7 +9752,7 @@
<param name="finish3">The end index of the third dimension.</param>
<param name="source">The source array.</param>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice3D``1(``0[0:, 0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice3D``1(``0[0:,0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<summary>Gets a slice of an array</summary>
<param name="source">The source array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10173,7 +9763,7 @@
<param name="finish3">The end index of the third dimension.</param>
<returns>The three dimensional sub array from the given indices.</returns>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice2DFixed2``1(``0[0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},System.Int32,``0[])">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice2DFixed2``1(``0[0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},System.Int32,``0[])">
<summary>Sets a vector slice of a 2D array. The index of the second dimension is fixed.</summary>
<param name="target">The target array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10181,7 +9771,7 @@
<param name="index2">The index of the second dimension.</param>
<param name="source">The source array.</param>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice2DFixed1``1(``0[0:, 0:],System.Int32,Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[])">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice2DFixed1``1(``0[0:,0:],System.Int32,Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[])">
<summary>Sets a vector slice of a 2D array. The index of the first dimension is fixed.</summary>
<param name="target">The target array.</param>
<param name="index1">The index of the first dimension.</param>
......@@ -10189,7 +9779,7 @@
<param name="finish2">The end index of the second dimension.</param>
<param name="source">The source array.</param>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice2D``1(``0[0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[0:, 0:])">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.SetArraySlice2D``1(``0[0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},``0[0:,0:])">
<summary>Sets a region slice of an array</summary>
<param name="target">The target array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10198,7 +9788,7 @@
<param name="finish2">The end index of the second dimension.</param>
<param name="source">The source array.</param>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice2DFixed2``1(``0[0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},System.Int32)">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice2DFixed2``1(``0[0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},System.Int32)">
<summary>Gets a vector slice of a 2D array. The index of the second dimension is fixed.</summary>
<param name="source">The source array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10206,7 +9796,7 @@
<param name="index2">The fixed index of the second dimension.</param>
<returns>The sub array from the input indices.</returns>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice2DFixed1``1(``0[0:, 0:],System.Int32,Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice2DFixed1``1(``0[0:,0:],System.Int32,Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<summary>Gets a vector slice of a 2D array. The index of the first dimension is fixed.</summary>
<param name="source">The source array.</param>
<param name="index1">The index of the first dimension.</param>
......@@ -10214,7 +9804,7 @@
<param name="finish2">The end index of the second dimension.</param>
<returns>The sub array from the input indices.</returns>
</member>
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice2D``1(``0[0:, 0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<member name="M:Microsoft.FSharp.Core.Operators.OperatorIntrinsics.GetArraySlice2D``1(``0[0:,0:],Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32},Microsoft.FSharp.Core.FSharpOption{System.Int32})">
<summary>Gets a region slice of an array</summary>
<param name="source">The source array.</param>
<param name="start1">The start index of the first dimension.</param>
......@@ -10660,27 +10250,27 @@
<member name="T:Microsoft.FSharp.Core.LanguagePrimitives.HashCompare">
<summary>The F# compiler emits calls to some of the functions in this module as part of the compiled form of some language constructs</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.SetArray4D``1(``0[0:, 0:, 0:, 0:],System.Int32,System.Int32,System.Int32,System.Int32,``0)">
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.SetArray4D``1(``0[0:,0:,0:,0:],System.Int32,System.Int32,System.Int32,System.Int32,``0)">
<summary>
The standard overloaded associative (4-indexed) mutation operator
</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.SetArray3D``1(``0[0:, 0:, 0:],System.Int32,System.Int32,System.Int32,``0)">
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.SetArray3D``1(``0[0:,0:,0:],System.Int32,System.Int32,System.Int32,``0)">
<summary>The standard overloaded associative (3-indexed) mutation operator</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.SetArray2D``1(``0[0:, 0:],System.Int32,System.Int32,``0)">
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.SetArray2D``1(``0[0:,0:],System.Int32,System.Int32,``0)">
<summary>The standard overloaded associative (2-indexed) mutation operator</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.SetArray``1(``0[],System.Int32,``0)">
<summary>The standard overloaded associative (indexed) mutation operator</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.GetArray4D``1(``0[0:, 0:, 0:, 0:],System.Int32,System.Int32,System.Int32,System.Int32)">
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.GetArray4D``1(``0[0:,0:,0:,0:],System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>The standard overloaded associative (4-indexed) lookup operator</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.GetArray3D``1(``0[0:, 0:, 0:],System.Int32,System.Int32,System.Int32)">
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.GetArray3D``1(``0[0:,0:,0:],System.Int32,System.Int32,System.Int32)">
<summary>The standard overloaded associative (3-indexed) lookup operator</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.GetArray2D``1(``0[0:, 0:],System.Int32,System.Int32)">
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.GetArray2D``1(``0[0:,0:],System.Int32,System.Int32)">
<summary>The standard overloaded associative (2-indexed) lookup operator</summary>
</member>
<member name="M:Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions.GetArray``1(``0[],System.Int32)">
......@@ -10933,9 +10523,9 @@
</member>
<member name="M:Microsoft.FSharp.Core.ResultModule.MapError``3(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Microsoft.FSharp.Core.FSharpResult{``2,``0})">
<summary><c>map f inp</c> evaluates to <c>match inp with Error x -> Error (f x) | Ok v -> Ok v</c>.</summary>
<param name="mapping">A function to apply to the Error result value.</param>
<param name="mapping">A function to apply to the OK result value.</param>
<param name="result">The input result.</param>
<returns>A result of the error value after applying the mapping function, or Ok if the input is Ok.</returns>
<returns>A result of the input value after applying the mapping function, or Error if the input is Error.</returns>
</member>
<member name="M:Microsoft.FSharp.Core.ResultModule.Map``3(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Microsoft.FSharp.Core.FSharpResult{``0,``2})">
<summary><c>map f inp</c> evaluates to <c>match inp with Error e -> Error e | Ok x -> Ok (f x)</c>.</summary>
......
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1001 &100100000
Prefab:
m_ObjectHideFlags: 1
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications: []
m_RemovedComponents: []
m_ParentPrefab: {fileID: 0}
m_RootGameObject: {fileID: 1385983921246510}
m_IsPrefabParent: 1
--- !u!1 &1129861121715302
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224510139286173882}
- component: {fileID: 222935666171283308}
- component: {fileID: 114043658991696808}
m_Layer: 5
m_Name: QuestPop
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1229690472397452
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224532976418521956}
- component: {fileID: 222306543071035388}
- component: {fileID: 114472168609070420}
m_Layer: 5
m_Name: Panel
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1262682384408522
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224747717779269660}
- component: {fileID: 222162005941328512}
- component: {fileID: 114671569571501700}
m_Layer: 5
m_Name: RewardNotice
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1385983921246510
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224077218608680630}
- component: {fileID: 223773464248189726}
- component: {fileID: 114847040766320836}
- component: {fileID: 114833740534728638}
m_Layer: 5
m_Name: QuestPopUp
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1500275815358976
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224208436119173860}
- component: {fileID: 222150214901835684}
- component: {fileID: 114432947600451672}
- component: {fileID: 114527653366690656}
m_Layer: 5
m_Name: Exit
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1642096175377922
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224928198140173372}
- component: {fileID: 222896090241552234}
- component: {fileID: 114735719473202620}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1677053829727388
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224865916483022038}
- component: {fileID: 222058720498084008}
- component: {fileID: 114977105546047714}
m_Layer: 5
m_Name: Text
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1881818243407974
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 224563009306271336}
- component: {fileID: 222367191568195550}
- component: {fileID: 114717104918000672}
m_Layer: 5
m_Name: Texts
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &114043658991696808
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1129861121715302}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0, g: 0, b: 0.447, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!114 &114432947600451672
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1500275815358976}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!114 &114472168609070420
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1229690472397452}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.11764706, g: 0.11764706, b: 0.7529412, a: 0.7058824}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!114 &114527653366690656
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1500275815358976}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Navigation:
m_Mode: 3
m_SelectOnUp: {fileID: 0}
m_SelectOnDown: {fileID: 0}
m_SelectOnLeft: {fileID: 0}
m_SelectOnRight: {fileID: 0}
m_Transition: 1
m_Colors:
m_NormalColor: {r: 0.982781, g: 0.99264705, b: 0.27735728, a: 1}
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_ColorMultiplier: 1
m_FadeDuration: 0.1
m_SpriteState:
m_HighlightedSprite: {fileID: 0}
m_PressedSprite: {fileID: 0}
m_DisabledSprite: {fileID: 0}
m_AnimationTriggers:
m_NormalTrigger: Normal
m_HighlightedTrigger: Highlighted
m_PressedTrigger: Pressed
m_DisabledTrigger: Disabled
m_Interactable: 1
m_TargetGraphic: {fileID: 114432947600451672}
m_OnClick:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null
--- !u!114 &114671569571501700
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1262682384408522}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 30
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 0
m_MaxSize: 40
m_Alignment: 0
m_AlignByGeometry: 0
m_RichText: 1
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\uD22C\uBA85\uAC70\uBD81\uC120\uC740\uC9F1\uC3D0\uB530.\n\uD22C\uBA85\uAC70\uBD81\uC120\uC774\uC6B8\uBD80\uC9D3\uC5C7\uB2E4.\n\uD06C\uC544\uC544\uC544\uC544\uC544\n\uC73C\uC544\uC544
\uB3C4\uB9DD\uAC00\uC790\n\uB3C4\uB9DD\uAC04\uD53C\uB178\uB4E4\uC774\uC878\uB77C\uC9F1\uC9F1\uC13C\uD22C\uBA85\uD06C\uD234\uB8E8\uB97C\uC18C\uD658\uD588\uB530.\n\uD558\uC9C0\uB9CC\uD22C\uBA85\uAC70\uBD81\uC120\uC774\uB354\uC3CF\uB2E4."
--- !u!114 &114717104918000672
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1881818243407974}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0, g: 0, b: 0.234, a: 0.628}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!114 &114735719473202620
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1642096175377922}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 21300000, guid: cad9da4b15425b94bbad0635ccea2373, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!114 &114833740534728638
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1385983921246510}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_IgnoreReversedGraphics: 1
m_BlockingObjects: 0
m_BlockingMask:
serializedVersion: 2
m_Bits: 4294967295
--- !u!114 &114847040766320836
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1385983921246510}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_UiScaleMode: 0
m_ReferencePixelsPerUnit: 100
m_ScaleFactor: 1
m_ReferenceResolution: {x: 800, y: 600}
m_ScreenMatchMode: 0
m_MatchWidthOrHeight: 0
m_PhysicalUnit: 3
m_FallbackScreenDPI: 96
m_DefaultSpriteDPI: 96
m_DynamicPixelsPerUnit: 1
--- !u!114 &114977105546047714
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1677053829727388}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 25
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 2
m_MaxSize: 40
m_Alignment: 4
m_AlignByGeometry: 0
m_RichText: 1
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\uC640! \uC815\uB9D0 \uC54C\uACE0\uC2F6\uC5C8\uB358 \uC0AC\uC2E4\uC774\uC5C8\uC5B4\uC694!
\uAC10\uC0AC\uD569\uB2C8\uB2E4!"
--- !u!222 &222058720498084008
CanvasRenderer:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1677053829727388}
--- !u!222 &222150214901835684
CanvasRenderer:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1500275815358976}
--- !u!222 &222162005941328512
CanvasRenderer:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1262682384408522}
--- !u!222 &222306543071035388
CanvasRenderer:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1229690472397452}
--- !u!222 &222367191568195550
CanvasRenderer:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1881818243407974}
--- !u!222 &222896090241552234
CanvasRenderer:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1642096175377922}
--- !u!222 &222935666171283308
CanvasRenderer:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1129861121715302}
--- !u!223 &223773464248189726
Canvas:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1385983921246510}
m_Enabled: 1
serializedVersion: 3
m_RenderMode: 0
m_Camera: {fileID: 0}
m_PlaneDistance: 100
m_PixelPerfect: 0
m_ReceivesEvents: 1
m_OverrideSorting: 0
m_OverridePixelPerfect: 0
m_SortingBucketNormalizedSize: 0
m_AdditionalShaderChannelsFlag: 0
m_SortingLayerID: 0
m_SortingOrder: 0
m_TargetDisplay: 0
--- !u!224 &224077218608680630
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1385983921246510}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 224532976418521956}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0, y: 0}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0, y: 0}
--- !u!224 &224208436119173860
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1500275815358976}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 224865916483022038}
m_Father: {fileID: 224510139286173882}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.07}
m_AnchorMax: {x: 0.5, y: 0.07}
m_AnchoredPosition: {x: 0, y: -10}
m_SizeDelta: {x: 320, y: 70}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!224 &224510139286173882
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1129861121715302}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 224928198140173372}
- {fileID: 224208436119173860}
- {fileID: 224563009306271336}
m_Father: {fileID: 224532976418521956}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: -60, y: -60}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!224 &224532976418521956
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1229690472397452}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 224510139286173882}
m_Father: {fileID: 224077218608680630}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!224 &224563009306271336
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1881818243407974}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 224747717779269660}
m_Father: {fileID: 224510139286173882}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.1, y: 0.12}
m_AnchorMax: {x: 0.9, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!224 &224747717779269660
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1262682384408522}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 224563009306271336}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.05, y: 0.05}
m_AnchorMax: {x: 0.95, y: 0.95}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!224 &224865916483022038
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1677053829727388}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 224208436119173860}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!224 &224928198140173372
RectTransform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1642096175377922}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 224510139286173882}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 50}
m_SizeDelta: {x: 1520, y: 855}
m_Pivot: {x: 0.5, y: 0.5}
fileFormatVersion: 2
guid: c2ef4ebe00b20e942b30e4f5922f3869
timeCreated: 1519992063
licenseType: Free
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 100100000
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: 797af3a8ac5c48f40b14546bb8958aa6
timeCreated: 1519987794
licenseType: Free
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -1
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:
......@@ -8,7 +8,7 @@ TextureImporter:
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 1
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
......@@ -34,13 +34,13 @@ TextureImporter:
filterMode: -1
aniso: -1
mipBias: -1
wrapU: -1
wrapV: -1
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
......@@ -48,9 +48,9 @@ TextureImporter:
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 0
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureType: 8
textureShape: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
......@@ -66,6 +66,26 @@ TextureImporter:
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
......
......@@ -8,7 +8,7 @@ TextureImporter:
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 1
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
......@@ -34,13 +34,13 @@ TextureImporter:
filterMode: -1
aniso: -1
mipBias: -1
wrapU: -1
wrapV: -1
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
......@@ -48,9 +48,9 @@ TextureImporter:
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 0
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureType: 8
textureShape: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
......@@ -66,6 +66,26 @@ TextureImporter:
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
......
......@@ -8,7 +8,7 @@ TextureImporter:
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 1
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
......@@ -34,13 +34,13 @@ TextureImporter:
filterMode: -1
aniso: -1
mipBias: -1
wrapU: -1
wrapV: -1
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
......@@ -48,9 +48,9 @@ TextureImporter:
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 0
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureType: 8
textureShape: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
......@@ -66,6 +66,26 @@ TextureImporter:
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
......
......@@ -8,7 +8,7 @@ TextureImporter:
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 1
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
......@@ -34,13 +34,13 @@ TextureImporter:
filterMode: -1
aniso: -1
mipBias: -1
wrapU: -1
wrapV: -1
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
......@@ -48,9 +48,9 @@ TextureImporter:
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 0
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureType: 8
textureShape: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
......@@ -66,6 +66,26 @@ TextureImporter:
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
......
......@@ -8,7 +8,7 @@ TextureImporter:
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 1
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
......@@ -34,13 +34,13 @@ TextureImporter:
filterMode: -1
aniso: -1
mipBias: -1
wrapU: -1
wrapV: -1
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
......@@ -48,9 +48,9 @@ TextureImporter:
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 0
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureType: 8
textureShape: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
......@@ -66,6 +66,26 @@ TextureImporter:
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
......
......@@ -7734,117 +7734,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 605468868}
--- !u!1 &610419354
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 610419355}
- component: {fileID: 610419358}
- component: {fileID: 610419357}
- component: {fileID: 610419356}
m_Layer: 5
m_Name: Button
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &610419355
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 610419354}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 773569467}
m_Father: {fileID: 917762193}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.07}
m_AnchorMax: {x: 0.5, y: 0.07}
m_AnchoredPosition: {x: 0, y: -10}
m_SizeDelta: {x: 320, y: 70}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &610419356
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 610419354}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Navigation:
m_Mode: 3
m_SelectOnUp: {fileID: 0}
m_SelectOnDown: {fileID: 0}
m_SelectOnLeft: {fileID: 0}
m_SelectOnRight: {fileID: 0}
m_Transition: 1
m_Colors:
m_NormalColor: {r: 0.982781, g: 0.99264705, b: 0.27735728, a: 1}
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_ColorMultiplier: 1
m_FadeDuration: 0.1
m_SpriteState:
m_HighlightedSprite: {fileID: 0}
m_PressedSprite: {fileID: 0}
m_DisabledSprite: {fileID: 0}
m_AnimationTriggers:
m_NormalTrigger: Normal
m_HighlightedTrigger: Highlighted
m_PressedTrigger: Pressed
m_DisabledTrigger: Disabled
m_Interactable: 1
m_TargetGraphic: {fileID: 610419357}
m_OnClick:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null
--- !u!114 &610419357
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 610419354}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!222 &610419358
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 610419354}
--- !u!1 &610596101
GameObject:
m_ObjectHideFlags: 0
......@@ -7919,81 +7808,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 610596101}
--- !u!1 &629741620
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 629741621}
- component: {fileID: 629741623}
- component: {fileID: 629741622}
m_Layer: 5
m_Name: RewardNotice
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &629741621
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 629741620}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 1009280103}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.05, y: 0.05}
m_AnchorMax: {x: 0.95, y: 0.95}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &629741622
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 629741620}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 30
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 0
m_MaxSize: 40
m_Alignment: 0
m_AlignByGeometry: 0
m_RichText: 1
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\uD22C\uBA85\uAC70\uBD81\uC120\uC740\uC9F1\uC3D0\uB530.\n\uD22C\uBA85\uAC70\uBD81\uC120\uC774\uC6B8\uBD80\uC9D3\uC5C7\uB2E4.\n\uD06C\uC544\uC544\uC544\uC544\uC544\n\uC73C\uC544\uC544
\uB3C4\uB9DD\uAC00\uC790\n\uB3C4\uB9DD\uAC04\uD53C\uB178\uB4E4\uC774\uC878\uB77C\uC9F1\uC9F1\uC13C\uD22C\uBA85\uD06C\uD234\uB8E8\uB97C\uC18C\uD658\uD588\uB530.\n\uD558\uC9C0\uB9CC\uD22C\uBA85\uAC70\uBD81\uC120\uC774\uB354\uC3CF\uB2E4."
--- !u!222 &629741623
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 629741620}
--- !u!1 &649437858
GameObject:
m_ObjectHideFlags: 0
......@@ -8718,81 +8532,6 @@ CanvasRenderer:
type: 2}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 771222173}
--- !u!1 &773569466
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 773569467}
- component: {fileID: 773569469}
- component: {fileID: 773569468}
m_Layer: 5
m_Name: Text
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &773569467
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 773569466}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 610419355}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &773569468
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 773569466}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 25
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 2
m_MaxSize: 40
m_Alignment: 4
m_AlignByGeometry: 0
m_RichText: 1
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\uC640! \uC815\uB9D0 \uC54C\uACE0\uC2F6\uC5C8\uB358 \uC0AC\uC2E4\uC774\uC5C8\uC5B4\uC694!
\uAC10\uC0AC\uD569\uB2C8\uB2E4!"
--- !u!222 &773569469
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 773569466}
--- !u!1 &775707192
GameObject:
m_ObjectHideFlags: 0
......@@ -10407,77 +10146,6 @@ CanvasRenderer:
type: 2}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 916003748}
--- !u!1 &917762192
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 917762193}
- component: {fileID: 917762195}
- component: {fileID: 917762194}
m_Layer: 5
m_Name: QuestPop
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &917762193
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 917762192}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 1237821083}
- {fileID: 610419355}
- {fileID: 1009280103}
m_Father: {fileID: 1166433176}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: -60, y: -60}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &917762194
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 917762192}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0, g: 0, b: 0.447, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!222 &917762195
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 917762192}
--- !u!1 &936036284
GameObject:
m_ObjectHideFlags: 0
......@@ -11473,75 +11141,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1008685727}
--- !u!1 &1009280102
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 1009280103}
- component: {fileID: 1009280105}
- component: {fileID: 1009280104}
m_Layer: 5
m_Name: Texts
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &1009280103
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1009280102}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 629741621}
m_Father: {fileID: 917762193}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.1, y: 0.12}
m_AnchorMax: {x: 0.9, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1009280104
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1009280102}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0, g: 0, b: 0.234, a: 0.628}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!222 &1009280105
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1009280102}
--- !u!1 &1030154599
GameObject:
m_ObjectHideFlags: 0
......@@ -11914,7 +11513,6 @@ MonoBehaviour:
ManagementUI: {fileID: 687281509}
QuestUI: {fileID: 1243551243}
GameEND: {fileID: 108006610}
QuestPopUp: {fileID: 0}
Gold: {fileID: 520572089}
Population: {fileID: 1776750191}
Happiness: {fileID: 79311831}
......@@ -11937,6 +11535,8 @@ MonoBehaviour:
CityTab: {fileID: 200034357}
CityBuildingTab: {fileID: 1705974694}
NormalBuildingTab: {fileID: 743936512}
QuestPopPrefab: {fileID: 1385983921246510, guid: c2ef4ebe00b20e942b30e4f5922f3869,
type: 2}
--- !u!114 &1056054511
MonoBehaviour:
m_ObjectHideFlags: 0
......@@ -13005,75 +12605,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1161237002}
--- !u!1 &1166433175
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 1166433176}
- component: {fileID: 1166433178}
- component: {fileID: 1166433177}
m_Layer: 5
m_Name: Panel
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &1166433176
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1166433175}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 917762193}
m_Father: {fileID: 1770811376}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1166433177
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1166433175}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.11764706, g: 0.11764706, b: 0.7529412, a: 0.7058824}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!222 &1166433178
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1166433175}
--- !u!1 &1169209414
GameObject:
m_ObjectHideFlags: 0
......@@ -13980,74 +13511,6 @@ CanvasRenderer:
type: 2}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1230915463}
--- !u!1 &1237821082
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 1237821083}
- component: {fileID: 1237821085}
- component: {fileID: 1237821084}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &1237821083
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1237821082}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 917762193}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 50}
m_SizeDelta: {x: 1520, y: 855}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1237821084
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1237821082}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_Sprite: {fileID: 21300000, guid: cad9da4b15425b94bbad0635ccea2373, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
--- !u!222 &1237821085
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1237821082}
--- !u!1 &1243551243
GameObject:
m_ObjectHideFlags: 0
......@@ -16408,7 +15871,7 @@ GameObject:
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 0
--- !u!224 &1452676923
RectTransform:
m_ObjectHideFlags: 0
......@@ -19861,100 +19324,6 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: -20, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &1770811372
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 5
m_Component:
- component: {fileID: 1770811376}
- component: {fileID: 1770811375}
- component: {fileID: 1770811374}
- component: {fileID: 1770811373}
m_Layer: 5
m_Name: QuestPopUp
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 0
--- !u!114 &1770811373
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1770811372}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_IgnoreReversedGraphics: 1
m_BlockingObjects: 0
m_BlockingMask:
serializedVersion: 2
m_Bits: 4294967295
--- !u!114 &1770811374
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1770811372}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_UiScaleMode: 0
m_ReferencePixelsPerUnit: 100
m_ScaleFactor: 1
m_ReferenceResolution: {x: 800, y: 600}
m_ScreenMatchMode: 0
m_MatchWidthOrHeight: 0
m_PhysicalUnit: 3
m_FallbackScreenDPI: 96
m_DefaultSpriteDPI: 96
m_DynamicPixelsPerUnit: 1
--- !u!223 &1770811375
Canvas:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1770811372}
m_Enabled: 1
serializedVersion: 3
m_RenderMode: 0
m_Camera: {fileID: 0}
m_PlaneDistance: 100
m_PixelPerfect: 0
m_ReceivesEvents: 1
m_OverrideSorting: 0
m_OverridePixelPerfect: 0
m_SortingBucketNormalizedSize: 0
m_AdditionalShaderChannelsFlag: 0
m_SortingLayerID: 0
m_SortingOrder: 0
m_TargetDisplay: 0
--- !u!224 &1770811376
RectTransform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1770811372}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1166433176}
m_Father: {fileID: 0}
m_RootOrder: 8
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0, y: 0}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0, y: 0}
--- !u!1 &1776750189
GameObject:
m_ObjectHideFlags: 0
......
......@@ -36,6 +36,7 @@ public class GameManager : MonoBehaviour {
// Selected actor
private CivModel.Unit _selectedActor = null;
public CivModel.Unit SelectedActor { get { return _selectedActor; } }
public IQuestObserver QuestObserver;
// Variables from Presenter.cs
public bool isThereTodos;
......@@ -67,6 +68,8 @@ public class GameManager : MonoBehaviour {
// Map tiling
innerRadius = outerRadius * Mathf.Sqrt(3.0f) / 2;
ObserverSet();
DrawMap();
ProceedTurn();
......@@ -347,8 +350,29 @@ public class GameManager : MonoBehaviour {
}
return false;
}
private void ObserverSet()
{
QuestObserver = new CivQuestObserver();
_game.QuestObservable.AddObserver(QuestObserver);
}
}
public class CivQuestObserver : IQuestObserver
{
public void QuestAccepted(Quest quest)
{
return;
}
public void QuestCompleted(Quest quest)
{
UIManager.I.ShowQuestEnd(quest);
}
public void QuestGivenup(Quest quest)
{
return;
}
}
public static class ProductionFactoryTraits
{
public static string GetFactoryName(CivModel.IProductionFactory Factory)
......@@ -356,7 +380,7 @@ public static class ProductionFactoryTraits
char[] sep = { '.' };
string name = Factory.ToString().Split(sep)[2];
string result;
switch(name)
switch (name)
{
case "PioneerProductionFactory":
result = "개척자";
......@@ -413,5 +437,52 @@ public static class ProductionFactoryTraits
}
return result;
}
}
public static class ParseQuest
{
public static string GetQuestName(Quest qst)
{
string rlatmxmfld;
switch (qst.Name)
{
case "개꿀잼 퀘스트":
rlatmxmfld = "hwan_main2";
break;
case "불가사의 - 오티즘 빔 반사 어레이":
rlatmxmfld = "hwan_main1";
break;
case "첩보 - 크툴루 계획":
rlatmxmfld = "hwan_main2";
break;
case "불가사의- 이집트 캉덤":
rlatmxmfld = "hwan_main3";
break;
case "[전쟁 동맹] - 에뮤 연방":
rlatmxmfld = "finno_main1";
break;
case "[불가사의] - 아틀란티스":
rlatmxmfld = "finno_main2";
break;
case "[불가사의] - R'̧l̨̜y͎͎̜̺̬e͕͇͇͚͓̹h̢̳͎̗͇͇̙":
rlatmxmfld = "finno_main3";
break;
case "군사 동맹 - 궤도 장악권":
rlatmxmfld = "hwan_sub1";
break;
case "건물 기증 - 모아이 포스 필드":
rlatmxmfld = "hwan_sub2";
break;
case "불가사의 - 성간 에너지":
rlatmxmfld = "finno_sub1";
break;
case "불가사의 - 유전 연구학":
rlatmxmfld = "finno_sub2";
break;
default:
rlatmxmfld = "hwan_main1";
break;
}
return rlatmxmfld;
}
}
\ No newline at end of file
......@@ -12,7 +12,7 @@ public class UIManager : MonoBehaviour {
public GameObject ManagementUI;
public GameObject QuestUI;
public GameObject GameEND;
public GameObject QuestPopUp;
public Text Gold;
public Text Population;
public Text Happiness;
......@@ -44,6 +44,9 @@ public class UIManager : MonoBehaviour {
public GameObject EpicTab, HighTab, IntermediateTab, LowTab; // Unit production
public GameObject CityTab, CityBuildingTab, NormalBuildingTab; // Building production
public GameObject QuestPopPrefab;
private ManagementUIController uicontroller;
private static UIManager _uimanager;
public static UIManager I { get { return _uimanager; } }
......@@ -246,12 +249,54 @@ public class UIManager : MonoBehaviour {
public void ShowQuestEnd(Quest quest)
{
var Qrefab = Instantiate(QuestPopPrefab, new Vector3(0f, 0f, 0f), Quaternion.identity);
Qrefab.transform.localScale = new Vector3(1f, 1f, 1f);
Qrefab.transform.localPosition = new Vector3(0f, 0f, 0f);
Button[] buttons = Qrefab.GetComponentsInChildren<Button>();
Image[] images = Qrefab.GetComponentsInChildren<Image>();
Text[] texts = Qrefab.GetComponentsInChildren<Text>();
foreach (Button btn in buttons)
{
switch (btn.name)
{
case "Exit":
btn.onClick.AddListener(delegate { QuestEndEnd(Qrefab); });
break;
default: break;
}
}
foreach (Image img in images)
{
switch (img.name)
{
case "Image":
Debug.Log("Quests/" + ParseQuest.GetQuestName(quest));
img.sprite = Resources.Load(("Quests/" + ParseQuest.GetQuestName(quest)).ToLower(), typeof(Sprite)) as Sprite;
if(img.sprite == null)
{
Debug.Log("아씨바ㅏㅓㅇㄹ넝ㄹㅇㄴㅁㄹ");
}
break;
default: break;
}
}
foreach (Text txt in texts)
{
switch (txt.name)
{
case "RewardNotice":
txt.text = quest.CompleteNotice;
break;
default: break;
}
}
}
public void QuestEndEnd()
public void QuestEndEnd(GameObject Qrefab)
{
QuestPopUp.SetActive(false);
Destroy(Qrefab);
}
//// Management UI (Production Selection) ////
public void UnitSelTabActive()
{
......
Subproject commit d7cbc65360f281391f3c14e5176a3a3b5159b1e2
Subproject commit ac5ef696bdb34f377882f9279e12de1864fe7174
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment