diff --git a/.idea/.idea.FantasyAsset/.idea/.gitignore b/.idea/.idea.FantasyAsset/.idea/.gitignore new file mode 100644 index 00000000..aea03581 --- /dev/null +++ b/.idea/.idea.FantasyAsset/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/.idea.FantasyAsset.iml +/modules.xml +/contentModel.xml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.FantasyAsset/.idea/encodings.xml b/.idea/.idea.FantasyAsset/.idea/encodings.xml new file mode 100644 index 00000000..df87cf95 --- /dev/null +++ b/.idea/.idea.FantasyAsset/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.FantasyAsset/.idea/indexLayout.xml b/.idea/.idea.FantasyAsset/.idea/indexLayout.xml new file mode 100644 index 00000000..7b08163c --- /dev/null +++ b/.idea/.idea.FantasyAsset/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.FantasyAsset/.idea/vcs.xml b/.idea/.idea.FantasyAsset/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/.idea.FantasyAsset/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Assets/Plugins.meta b/Assets/Plugins.meta new file mode 100644 index 00000000..3ac23741 --- /dev/null +++ b/Assets/Plugins.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f474abd9e0f59942a36585ec5f411ec +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant.meta b/Assets/Plugins/Demigiant.meta new file mode 100644 index 00000000..cfb2591a --- /dev/null +++ b/Assets/Plugins/Demigiant.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 9f80792dcd2829e41b1f075e7245ca5b +labels: +- Tween +- Tweening +- Animation +- HOTween +- Paths +- VisualScripting +- VisualEditor +- iTween +- Ease +- Easing +- Shake +- Punch +- 2DToolkit +- TextMeshPro +- Text +- LeanTween +- DFTween +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween.meta b/Assets/Plugins/Demigiant/DOTween.meta new file mode 100644 index 00000000..cbebc392 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween.meta @@ -0,0 +1,21 @@ +fileFormatVersion: 2 +guid: a50bd9a009c8dfc4ebd88cc8101225a7 +labels: +- Tween +- Tweening +- Animation +- HOTween +- Paths +- iTween +- DFTween +- LeanTween +- Ease +- Easing +- Shake +- Punch +- 2DToolkit +- TextMeshPro +- Text +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/DOTween.XML b/Assets/Plugins/Demigiant/DOTween/DOTween.XML new file mode 100644 index 00000000..ceb16e43 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/DOTween.XML @@ -0,0 +1,3077 @@ + + + + DOTween + + + + + Types of autoPlay behaviours + + + + No tween is automatically played + + + Only Sequences are automatically played + + + Only Tweeners are automatically played + + + All tweens are automatically played + + + + What axis to constrain in case of Vector tweens + + + + Called the first time the tween is set in a playing state, after any eventual delay + + + + Used in place of System.Func, which is not available in mscorlib. + + + + + Used in place of System.Action. + + + + + Public so it can be used by lose scripts related to DOTween (like DOTweenAnimation) + + + + + Used to separate DOTween class from the MonoBehaviour instance (in order to use static constructors on DOTween). + Contains all instance-based methods + + + + Used internally inside Unity Editor, as a trick to update DOTween's inspector at every frame + + + + Directly sets the current max capacity of Tweeners and Sequences + (meaning how many Tweeners and Sequences can be running at the same time), + so that DOTween doesn't need to automatically increase them in case the max is reached + (which might lead to hiccups when that happens). + Sequences capacity must be less or equal to Tweeners capacity + (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's). + Beware: use this method only when there are no tweens running. + + Max Tweeners capacity. + Default: 200 + Max Sequences capacity. + Default: 50 + + + + This class contains a C# port of the easing equations created by Robert Penner (http://robertpenner.com/easing). + + + + + Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in: accelerating from zero velocity. + + + Current time (in frames or seconds). + + + Expected easing duration (in frames or seconds). + + Unused: here to keep same delegate for all ease types. + Unused: here to keep same delegate for all ease types. + + The eased value. + + + + + Easing equation function for a bounce (exponentially decaying parabolic bounce) easing out: decelerating from zero velocity. + + + Current time (in frames or seconds). + + + Expected easing duration (in frames or seconds). + + Unused: here to keep same delegate for all ease types. + Unused: here to keep same delegate for all ease types. + + The eased value. + + + + + Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in/out: acceleration until halfway, then deceleration. + + + Current time (in frames or seconds). + + + Expected easing duration (in frames or seconds). + + Unused: here to keep same delegate for all ease types. + Unused: here to keep same delegate for all ease types. + + The eased value. + + + + + Returns a value between 0 and 1 (inclusive) based on the elapsed time and ease selected + + + + + Returns a value between 0 and 1 (inclusive) based on the elapsed time and ease selected + + + + + Used to interpret AnimationCurves as eases. + Public so it can be used by external ease factories + + + + + Behaviour in case a tween nested inside a Sequence fails and is captured by safe mode + + + + If the Sequence contains other elements, kill the failed tween but preserve the rest + + + Kill the whole Sequence + + + + Log types thrown by errors captured and prevented by safe mode + + + + No logs. NOT RECOMMENDED + + + Throw a normal log + + + Throw a warning log (default) + + + Throw an error log + + + + Additional notices passed to plugins when updating. + Public so it can be used by custom plugins. Internally, only PathPlugin uses it + + + + + None + + + + + Lets the plugin know that we restarted or rewinded + + + + + OnRewind callback behaviour (can only be set via DOTween's Utility Panel) + + + + + When calling Rewind or PlayBackwards/SmoothRewind, OnRewind callbacks will be fired only if the tween isn't already rewinded + + + + + When calling Rewind, OnRewind callbacks will always be fired, even if the tween is already rewinded. + When calling PlayBackwards/SmoothRewind instead, OnRewind callbacks will be fired only if the tween isn't already rewinded + + + + + When calling Rewind or PlayBackwards/SmoothRewind, OnRewind callbacks will always be fired, even if the tween is already rewinded + + + + + Public only so custom shortcuts can access some of these methods + + + + + INTERNAL: used by DO shortcuts and Modules to set special startup mode + + + + + INTERNAL: used by DO shortcuts and Modules to set the tween as blendable + + + + + INTERNAL: used by DO shortcuts and Modules to prevent a tween from using a From setup even if passed + + + + + Used to dispatch commands that need to be captured externally, usually by Modules + + + + + Various utils + + + + + Returns a Vector3 with z = 0 + + + + + Returns the 2D angle between two vectors + + + + + Returns a point on a circle with the given center and radius, + using Unity's circle coordinates (0° points up and increases clockwise) + + + + + Uses approximate equality on each axis instead of Unity's Vector3 equality, + because the latter fails (in some cases) when assigning a Vector3 to a transform.position and then checking it. + + + + + Looks for the type within all possible project assembly names + + + + NO-GC METHOD: changes the start value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + If bigger than 0 applies it as the new tween duration + + + NO-GC METHOD: changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + NO-GC METHOD: changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If bigger than 0 applies it as the new tween duration + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + NO-GC METHOD: changes the start and end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + The new end value + If bigger than 0 applies it as the new tween duration + + + + Struct that stores two colors (used for LineRenderer tweens) + + + + + Used for tween callbacks + + + + + Used for tween callbacks + + + + + Used for custom and animationCurve-based ease functions. Must return a value between 0 and 1. + + + + + Straight Quaternion plugin. Instead of using Vector3 values accepts Quaternion values directly. + Beware: doesn't work with LoopType.Incremental (neither directly nor if inside a LoopType.Incremental Sequence). + To use it, call DOTween.To with the plugin parameter overload, passing it PureQuaternionPlugin.Plug() as first parameter + (do not use any of the other public PureQuaternionPlugin methods): + DOTween.To(PureQuaternionPlugin.Plug(), ()=> myQuaternionProperty, x=> myQuaternionProperty = x, myQuaternionEndValue, duration); + + + + + Plug this plugin inside a DOTween.To call. + Example: + DOTween.To(PureQuaternionPlugin.Plug(), ()=> myQuaternionProperty, x=> myQuaternionProperty = x, myQuaternionEndValue, duration); + + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + + Extra non-tweening-related curve methods + + + + + Cubic bezier curve methods + + + + + Calculates a point along the given Cubic Bezier segment-curve. + + Segment start point + Start point's control point/handle + Segment end point + End point's control point/handle + 0-1 percentage along which to retrieve point + + + + Returns an array containing a series of points along the given Cubic Bezier segment-curve. + + Start point + Start point's control point/handle + End point + End point's control point/handle + Cloud resolution (min: 2) + + + + Calculates a series of points along the given Cubic Bezier segment-curve and adds them to the given list. + + Start point + Start point's control point/handle + End point + End point's control point/handle + Cloud resolution (min: 2) + + + + Main DOTween class. Contains static methods to create and control tweens in a generic way + + + + DOTween's version + + + If TRUE (default) makes tweens slightly slower but safer, automatically taking care of a series of things + (like targets becoming null while a tween is playing). + Default: TRUE + + + Log type when safe mode reports capturing an error and preventing it + + + Behaviour in case a tween nested inside a Sequence fails (and is caught by safe mode). + Default: NestedTweenFailureBehaviour.TryToPreserveSequence + + + If TRUE you will get a DOTween report when exiting play mode (only in the Editor). + Useful to know how many max Tweeners and Sequences you reached and optimize your final project accordingly. + Beware, this will slightly slow down your tweens while inside Unity Editor. + Default: FALSE + + + Global DOTween global timeScale (default: 1). + The final timeScale of a non-timeScaleIndependent tween is: + Unity's Time.timeScale * DOTween.timeScale * tween.timeScale + while the final timeScale of a timeScaleIndependent tween is: + DOTween.unscaledTimeScale * DOTween.timeScale * tween.timeScale + + + DOTween timeScale applied only to timeScaleIndependent tweens (default: 1). + The final timeScale of a timeScaleIndependent tween is: + DOTween.unscaledTimeScale * DOTween.timeScale * tween.timeScale + + + If TRUE, DOTween will use Time.smoothDeltaTime instead of Time.deltaTime for UpdateType.Normal and UpdateType.Late tweens + (unless they're set as timeScaleIndependent, in which case a value between the last timestep + and will be used instead). + Setting this to TRUE will lead to smoother animations. + Default: FALSE + + + If is TRUE, this indicates the max timeStep that an independent update call can last. + Setting this to TRUE will lead to smoother animations. + Default: FALSE + + + DOTween's log behaviour. + Default: LogBehaviour.ErrorsOnly + + + Used to intercept DOTween's logs. If this method isn't NULL, DOTween will call it before writing a log via Unity's own Debug log methods. + Return TRUE if you want DOTween to proceed with the log, FALSE otherwise. + This method must return a bool and accept two parameters: + - LogType: the type of Unity log that DOTween is trying to log + - object: the log message that DOTween wants to log + + + If TRUE draws path gizmos in Unity Editor (if the gizmos button is active). + Deactivate this if you want to avoid gizmos overhead while in Unity Editor + + + If TRUE activates various debug options + + + Stores the target id so it can be used to give more info in case of safeMode error capturing. + Only active if both debugMode and useSafeMode are TRUE + + + Default updateType for new tweens. + Default: UpdateType.Normal + + + Sets whether Unity's timeScale should be taken into account by default or not. + Default: false + + + Default autoPlay behaviour for new tweens. + Default: AutoPlay.All + + + Default autoKillOnComplete behaviour for new tweens. + Default: TRUE + + + Default loopType applied to all new tweens. + Default: LoopType.Restart + + + If TRUE all newly created tweens are set as recyclable, otherwise not. + Default: FALSE + + + Default ease applied to all new Tweeners (not to Sequences which always have Ease.Linear as default). + Default: Ease.InOutQuad + + + Default overshoot/amplitude used for eases + Default: 1.70158f + + + Default period used for eases + Default: 0 + + + Used internally. Assigned/removed by DOTweenComponent.Create/DestroyInstance + + + + Must be called once, before the first ever DOTween call/reference, + otherwise it will be called automatically and will use default options. + Calling it a second time won't have any effect. + You can chain SetCapacity to this method, to directly set the max starting size of Tweeners and Sequences: + DOTween.Init(false, false, LogBehaviour.Default).SetCapacity(100, 20); + + If TRUE all new tweens will be set for recycling, meaning that when killed, + instead of being destroyed, they will be put in a pool and reused instead of creating new tweens. This option allows you to avoid + GC allocations by reusing tweens, but you will have to take care of tween references, since they might result active + even if they were killed (since they might have been respawned and are now being used for other tweens). + If you want to automatically set your tween references to NULL when a tween is killed + you can use the OnKill callback like this: + .OnKill(()=> myTweenReference = null) + You can change this setting at any time by changing the static property, + or you can set the recycling behaviour for each tween separately, using: + SetRecyclable(bool recyclable) + Default: FALSE + If TRUE makes tweens slightly slower but safer, automatically taking care of a series of things + (like targets becoming null while a tween is playing). + You can change this setting at any time by changing the static property. + Default: FALSE + Type of logging to use. + You can change this setting at any time by changing the static property. + Default: ErrorsOnly + + + + Directly sets the current max capacity of Tweeners and Sequences + (meaning how many Tweeners and Sequences can be running at the same time), + so that DOTween doesn't need to automatically increase them in case the max is reached + (which might lead to hiccups when that happens). + Sequences capacity must be less or equal to Tweeners capacity + (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's). + Beware: use this method only when there are no tweens running. + + Max Tweeners capacity. + Default: 200 + Max Sequences capacity. + Default: 50 + + + + Kills all tweens, clears all cached tween pools and plugins and resets the max Tweeners/Sequences capacities to the default values. + + If TRUE also destroys DOTween's gameObject and resets its initializiation, default settings and everything else + (so that next time you use it it will need to be re-initialized) + + + + Clears all cached tween pools. + + + + + Checks all active tweens to find and remove eventually invalid ones (usually because their targets became NULL) + and returns the total number of invalid tweens found and removed. + IMPORTANT: this will cause an error on UWP platform, so don't use it there + BEWARE: this is a slightly expensive operation so use it with care + + + + + Updates all tweens that are set to . + + Manual deltaTime + Unscaled delta time (used with tweens set as timeScaleIndependent) + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using a custom plugin + The plugin to use. Each custom plugin implements a static Get() method + you'll need to call to assign the correct plugin in the correct way, like this: + CustomPlugin.Get() + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens only one axis of a Vector3 to the given value using default plugins. + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + The axis to tween + + + Tweens only the alpha of a Color to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a virtual property from the given start to the given end value + and implements a setter that allows to use that value with an external method or a lambda + Example: + To(MyMethod, 0, 12, 0.5f); + Where MyMethod is a function that accepts a float parameter (which will be the result of the virtual tween) + The action to perform with the tweened value + The value to start from + The end value to reach + The duration of the virtual tween + + + + Punches a Vector3 towards the given direction and then back to the starting one + as if it was connected to the starting position via an elastic. + This tween type generates some GC allocations at startup + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The direction and strength of the punch + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards. + 1 creates a full oscillation between the direction and the opposite decaying direction, + while 0 oscillates only between the starting position and the decaying direction + + + Shakes a Vector3 with the given values. + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction and behave like a random punch. + If TRUE only shakes on the X Y axis (looks better with things like cameras). + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Vector3 with the given values. + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction and behave like a random punch. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Tweens a property or field to the given values using default plugins. + Ease is applied between each segment and not as a whole. + This tween type generates some GC allocations at startup + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end values to reach for each segment. This array must have the same length as durations + The duration of each segment. This array must have the same length as endValues + + + + Returns a new to be used for tween groups. + Mind that Sequences don't have a target applied automatically like Tweener creation shortcuts, + so if you want to be able to kill this Sequence when calling DOTween.Kill(target) you'll have to add + the target manually; you can do that directly by using the overload instead of this one + + + + + Returns a new to be used for tween groups, and allows to set a target + (because Sequences don't have their target set automatically like Tweener creation shortcuts). + That way killing/controlling tweens by target will apply to this Sequence too. + + The target of the Sequence. Relevant only for static target-based methods like DOTween.Kill(target), + useless otherwise + + + Completes all tweens and returns the number of actual tweens completed + (meaning tweens that don't have infinite loops and were not already complete) + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + Completes all tweens with the given ID or target and returns the number of actual tweens completed + (meaning the tweens that don't have infinite loops and were not already complete) + For Sequences only: if TRUE internal Sequence callbacks will be fired, + otherwise they will be ignored + + + Flips all tweens (changing their direction to forward if it was backwards and viceversa), + then returns the number of actual tweens flipped + + + Flips the tweens with the given ID or target (changing their direction to forward if it was backwards and viceversa), + then returns the number of actual tweens flipped + + + Sends all tweens to the given position (calculating also eventual loop cycles) and returns the actual tweens involved + + + Sends all tweens with the given ID or target to the given position (calculating also eventual loop cycles) + and returns the actual tweens involved + + + Kills all tweens and returns the number of actual tweens killed + If TRUE completes the tweens before killing them + + + Kills all tweens and returns the number of actual tweens killed + If TRUE completes the tweens before killing them + Eventual IDs or targets to exclude from the killing + + + Kills all tweens with the given ID or target and returns the number of actual tweens killed + If TRUE completes the tweens before killing them + + + Kills all tweens with the given target and the given ID, and returns the number of actual tweens killed + If TRUE completes the tweens before killing them + + + Pauses all tweens and returns the number of actual tweens paused + + + Pauses all tweens with the given ID or target and returns the number of actual tweens paused + (meaning the tweens that were actually playing and have been paused) + + + Plays all tweens and returns the number of actual tweens played + (meaning tweens that were not already playing or complete) + + + Plays all tweens with the given ID or target and returns the number of actual tweens played + (meaning the tweens that were not already playing or complete) + + + Plays all tweens with the given target and the given ID, and returns the number of actual tweens played + (meaning the tweens that were not already playing or complete) + + + Plays backwards all tweens and returns the number of actual tweens played + (meaning tweens that were not already started, playing backwards or rewinded) + + + Plays backwards all tweens with the given ID or target and returns the number of actual tweens played + (meaning the tweens that were not already started, playing backwards or rewinded) + + + Plays backwards all tweens with the given target and ID and returns the number of actual tweens played + (meaning the tweens that were not already started, playing backwards or rewinded) + + + Plays forward all tweens and returns the number of actual tweens played + (meaning tweens that were not already playing forward or complete) + + + Plays forward all tweens with the given ID or target and returns the number of actual tweens played + (meaning the tweens that were not already playing forward or complete) + + + Plays forward all tweens with the given target and ID and returns the number of actual tweens played + (meaning the tweens that were not already started, playing backwards or rewinded) + + + Restarts all tweens, then returns the number of actual tweens restarted + + + Restarts all tweens with the given ID or target, then returns the number of actual tweens restarted + If TRUE includes the eventual tweens delays, otherwise skips them + If >= 0 changes the startup delay of all involved tweens to this value, otherwise doesn't touch it + + + Restarts all tweens with the given target and the given ID, and returns the number of actual tweens played + (meaning the tweens that were not already playing or complete) + If TRUE includes the eventual tweens delays, otherwise skips them + If >= 0 changes the startup delay of all involved tweens to this value, otherwise doesn't touch it + + + Rewinds and pauses all tweens, then returns the number of actual tweens rewinded + (meaning tweens that were not already rewinded) + + + Rewinds and pauses all tweens with the given ID or target, then returns the number of actual tweens rewinded + (meaning the tweens that were not already rewinded) + + + Smoothly rewinds all tweens (delays excluded), then returns the number of actual tweens rewinding/rewinded + (meaning tweens that were not already rewinded). + A "smooth rewind" animates the tween to its start position, + skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent. + Note that a tween that was smoothly rewinded will have its play direction flipped + + + Smoothly rewinds all tweens (delays excluded) with the given ID or target, then returns the number of actual tweens rewinding/rewinded + (meaning the tweens that were not already rewinded). + A "smooth rewind" animates the tween to its start position, + skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent. + Note that a tween that was smoothly rewinded will have its play direction flipped + + + Toggles the play state of all tweens and returns the number of actual tweens toggled + (meaning tweens that could be played or paused, depending on the toggle state) + + + Toggles the play state of all tweens with the given ID or target and returns the number of actual tweens toggled + (meaning the tweens that could be played or paused, depending on the toggle state) + + + + Returns TRUE if a tween with the given ID or target is active. + You can also use this to know if a shortcut tween is active for a given target. + Example: + transform.DOMoveX(45, 1); // transform is automatically added as the tween target + DOTween.IsTweening(transform); // Returns true + + The target or ID to look for + If FALSE (default) returns TRUE as long as a tween for the given target/ID is active, + otherwise also requires it to be playing + + + + Returns the total number of active tweens (so both Tweeners and Sequences). + A tween is considered active if it wasn't killed, regardless if it's playing or paused + + + + + Returns the total number of active Tweeners. + A Tweener is considered active if it wasn't killed, regardless if it's playing or paused + + + + + Returns the total number of active Sequences. + A Sequence is considered active if it wasn't killed, regardless if it's playing or paused + + + + + Returns the total number of active and playing tweens. + A tween is considered as playing even if its delay is actually playing + + + + + Returns a the total number of active tweens with the given id. + + If TRUE returns only the tweens with the given ID that are currently playing + + + + Returns a list of all active tweens in a playing state. + Returns NULL if there are no active playing tweens. + Beware: each time you call this method a new list is generated, so use it for debug only + + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + Returns a list of all active tweens in a paused state. + Returns NULL if there are no active paused tweens. + Beware: each time you call this method a new list is generated, so use it for debug only + + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + Returns a list of all active tweens with the given id. + Returns NULL if there are no active tweens with the given id. + Beware: each time you call this method a new list is generated + + If TRUE returns only the tweens with the given ID that are currently playing + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + Returns a list of all active tweens with the given target. + Returns NULL if there are no active tweens with the given target. + Beware: each time you call this method a new list is generated + If TRUE returns only the tweens with the given target that are currently playing + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + + Creates virtual tweens that can be used to change other elements via their OnUpdate calls + + + + + Tweens a virtual float. + You can add regular settings to the generated tween, + but do not use OnUpdate or you will overwrite the onVirtualUpdate parameter + + The value to start from + The value to tween to + The duration of the tween + A callback which must accept a parameter of type float, called at each update + + + + Tweens a virtual int. + You can add regular settings to the generated tween, + but do not use OnUpdate or you will overwrite the onVirtualUpdate parameter + + The value to start from + The value to tween to + The duration of the tween + A callback which must accept a parameter of type int, called at each update + + + + Tweens a virtual Vector2. + You can add regular settings to the generated tween, + but do not use OnUpdate or you will overwrite the onVirtualUpdate parameter + + The value to start from + The value to tween to + The duration of the tween + A callback which must accept a parameter of type Vector3, called at each update + + + + Tweens a virtual Vector3. + You can add regular settings to the generated tween, + but do not use OnUpdate or you will overwrite the onVirtualUpdate parameter + + The value to start from + The value to tween to + The duration of the tween + A callback which must accept a parameter of type Vector3, called at each update + + + + Tweens a virtual Color. + You can add regular settings to the generated tween, + but do not use OnUpdate or you will overwrite the onVirtualUpdate parameter + + The value to start from + The value to tween to + The duration of the tween + A callback which must accept a parameter of type Color, called at each update + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + Eventual overshoot to use with Back ease + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + Eventual amplitude to use with Elastic easeType + Eventual period to use with Elastic easeType + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The AnimationCurve to use for ease + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + Eventual overshoot to use with Back ease + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + Eventual amplitude to use with Elastic easeType + Eventual period to use with Elastic easeType + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The AnimationCurve to use for ease + + + Fires the given callback after the given time. + Callback delay + Callback to fire when the delay has expired + If TRUE (default) ignores Unity's timeScale + + + + Don't assign this! It's assigned automatically when creating 0 duration tweens + + + + + Don't assign this! It's assigned automatically when setting the ease to an AnimationCurve or to a custom ease function + + + + + Allows to wrap ease method in special ways, adding extra features + + + + + Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS + + FPS at which the tween should be played + Ease type + + + + Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS + + FPS at which the tween should be played + AnimationCurve to use for the ease + + + + Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS + + FPS at which the tween should be played + Custom ease function to use + + + + Used to allow method chaining with DOTween.Init + + + + + Directly sets the current max capacity of Tweeners and Sequences + (meaning how many Tweeners and Sequences can be running at the same time), + so that DOTween doesn't need to automatically increase them in case the max is reached + (which might lead to hiccups when that happens). + Sequences capacity must be less or equal to Tweeners capacity + (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's). + Beware: use this method only when there are no tweens running. + + Max Tweeners capacity. + Default: 200 + Max Sequences capacity. + Default: 50 + + + + Behaviour that can be assigned when chaining a SetLink to a tween + + + + Pauses the tween when the link target is disabled + + + Pauses the tween when the link target is disabled, plays it when it's enabled + + + Pauses the tween when the link target is disabled, restarts it when it's enabled + + + Plays the tween when the link target is enabled + + + Restarts the tween when the link target is enabled + + + Kills the tween when the link target is disabled + + + Kills the tween when the link target is destroyed (becomes NULL). This is always active even if another behaviour is chosen + + + Completes the tween when the link target is disabled + + + Completes and kills the tween when the link target is disabled + + + Rewinds the tween (delay excluded) when the link target is disabled + + + Rewinds and kills the tween when the link target is disabled + + + + Path mode (used to determine correct LookAt orientation) + + + + Ignores the path mode (and thus LookAt behaviour) + + + Regular 3D path + + + 2D top-down path + + + 2D side-scroller path + + + + Type of path to use with DOPath tweens + + + + Linear, composed of straight segments between each waypoint + + + Curved path (which uses Catmull-Rom curves) + + + EXPERIMENTAL: Curved path (which uses Cubic Bezier curves, where each point requires two extra control points) + + + + Tweens a Vector2 along a circle. + EndValue represents the center of the circle, start and end value degrees are inside options + ChangeValue x is changeValue°, y is unused + + + + + Path control point + + + + + Path waypoints (modified by PathPlugin when setting relative end/change value or by CubicBezierDecoder) and by DOTweenPathInspector + + + + + Minimum input points necessary to create the path (doesn't correspond to actual waypoints required) + + + + + Gets the point on the path at the given percentage (0 to 1) + + The percentage (0 to 1) at which to get the point + If TRUE constant speed is taken into account, otherwise not + + + + Base interface for all tween plugins options + + + + Resets the plugin + + + + This plugin generates some GC allocations at startup + + + + + Path plugin works exclusively with Transforms + + + + + Rotation mode used with DORotate methods + + + + + Fastest way that never rotates beyond 360° + + + + + Fastest way that rotates beyond 360° + + + + + Adds the given rotation to the transform using world axis and an advanced precision mode + (like when using transform.Rotate(Space.World)). + In this mode the end value is is always considered relative + + + + + Adds the given rotation to the transform's local axis + (like when rotating an object with the "local" switch enabled in Unity's editor or using transform.Rotate(Space.Self)). + In this mode the end value is is always considered relative + + + + + Type of scramble to apply to string tweens + + + + + No scrambling of characters + + + + + A-Z + a-z + 0-9 characters + + + + + A-Z characters + + + + + a-z characters + + + + + 0-9 characters + + + + + Custom characters + + + + + Type of randomness to apply to a shake tween + + + + Default, full randomness + + + Creates a more balanced randomness that looks more harmonic + + + + Methods that extend Tween objects and allow to control or get data from them + + + + Completes the tween + + + Completes the tween + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + Flips the direction of this tween (backwards if it was going forward or viceversa) + + + Forces the tween to initialize its settings immediately + + + Send the tween to the given position in time + Time position to reach + (if higher than the whole tween duration the tween will simply reach its end) + If TRUE will play the tween after reaching the given position, otherwise it will pause it + + + Send the tween to the given position in time while also executing any callback between the previous time position and the new one + Time position to reach + (if higher than the whole tween duration the tween will simply reach its end) + If TRUE will play the tween after reaching the given position, otherwise it will pause it + + + Kills the tween + If TRUE completes the tween before killing it + + + + Forces this tween to update manually, regardless of the set via SetUpdate. + Note that the tween will still be subject to normal tween rules, so if for example it's paused this method will do nothing. + Also note that if you only want to update this tween instance manually you'll have to set it to anyway, + so that it's not updated automatically. + + Manual deltaTime + Unscaled delta time (used with tweens set as timeScaleIndependent) + + + Pauses the tween + + + Plays the tween + + + Sets the tween in a backwards direction and plays it + + + Sets the tween in a forward direction and plays it + + + Restarts the tween from the beginning + Ignored in case of Sequences. If TRUE includes the eventual tween delay, otherwise skips it + Ignored in case of Sequences. If >= 0 changes the startup delay to this value, otherwise doesn't touch it + + + Rewinds and pauses the tween + Ignored in case of Sequences. If TRUE includes the eventual tween delay, otherwise skips it + + + Smoothly rewinds the tween (delays excluded). + A "smooth rewind" animates the tween to its start position, + skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent. + If called on a tween who is still waiting for its delay to happen, it will simply set the delay to 0 and pause the tween. + Note that a tween that was smoothly rewinded will have its play direction flipped + + + Plays the tween if it was paused, pauses it if it was playing + + + Send a path tween to the given waypoint. + Has no effect if this is not a path tween. + BEWARE, this is a special utility method: + it works only with Linear eases. Also, the lookAt direction might be wrong after calling this and might need to be set manually + (because it relies on a smooth path movement and doesn't work well with jumps that encompass dramatic direction changes) + Waypoint index to reach + (if higher than the max waypoint index the tween will simply go to the last one) + If TRUE will play the tween after reaching the given waypoint, otherwise it will pause it + + + + Creates a yield instruction that waits until the tween is killed or complete. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForCompletion(); + + + + + Creates a yield instruction that waits until the tween is killed or rewinded. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForRewind(); + + + + + Creates a yield instruction that waits until the tween is killed. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForKill(); + + + + + Creates a yield instruction that waits until the tween is killed or has gone through the given amount of loops. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForElapsedLoops(2); + + Elapsed loops to wait for + + + + Creates a yield instruction that waits until the tween is killed or has reached the given position (loops included, delays excluded). + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForPosition(2.5f); + + Position (loops included, delays excluded) to wait for + + + + Creates a yield instruction that waits until the tween is killed or started + (meaning when the tween is set in a playing state the first time, after any eventual delay). + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForStart(); + + + + Returns the total number of loops completed by this tween + + + Returns the eventual delay set for this tween + + + Returns the eventual elapsed delay set for this tween + + + Returns the duration of this tween (delays excluded). + NOTE: when using settings like SpeedBased, the duration will be recalculated when the tween starts + If TRUE returns the full duration loops included, + otherwise the duration of a single loop cycle + + + Returns the elapsed time for this tween (delays exluded) + If TRUE returns the elapsed time since startup loops included, + otherwise the elapsed time within the current loop cycle + + + Returns the elapsed percentage (0 to 1) of this tween (delays exluded) + If TRUE returns the elapsed percentage since startup loops included, + otherwise the elapsed percentage within the current loop cycle + + + Returns the elapsed percentage (0 to 1) of this tween (delays exluded), + based on a single loop, and calculating eventual backwards Yoyo loops as 1 to 0 instead of 0 to 1 + + + Returns FALSE if this tween has been killed or is NULL, TRUE otherwise. + BEWARE: if this tween is recyclable it might have been spawned again for another use and thus return TRUE anyway. + When working with recyclable tweens you should take care to know when a tween has been killed and manually set your references to NULL. + If you want to be sure your references are set to NULL when a tween is killed you can use the OnKill callback like this: + .OnKill(()=> myTweenReference = null) + + + Returns TRUE if this tween was reversed and is set to go backwards + + + NOTE: To check if a tween was simply set to go backwards see . + Returns TRUE if this tween is going backwards for any of these reasons: + - The tween was reversed and is going backwards on a straight loop + - The tween was reversed and is going backwards on an odd Yoyo loop + - The tween is going forward but on an even Yoyo loop + IMPORTANT: if used inside a tween's callback, this will return a result concerning the exact frame when it's asked, + so for example in a callback at the end of a Yoyo loop step this method will never return FALSE + because the frame will never end exactly there and the tween will already be going backwards when the callback is fired + + + Returns TRUE if the tween is complete + (silently fails and returns FALSE if the tween has been killed) + + + Returns TRUE if this tween has been initialized + + + Returns TRUE if this tween is playing + + + Returns the total number of loops set for this tween + (returns -1 if the loops are infinite) + + + + Returns a point on a path based on the given path percentage. + Returns Vector3.zero if this is not a path tween, if the tween is invalid, or if the path is not yet initialized. + A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature). + You can force a path to be initialized by calling myTween.ForceInit(). + + Percentage of the path (0 to 1) on which to get the point + + + + Returns an array of points that can be used to draw the path. + Note that this method generates allocations, because it creates a new array. + Returns NULL if this is not a path tween, if the tween is invalid, or if the path is not yet initialized. + A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature). + You can force a path to be initialized by calling myTween.ForceInit(). + + How many points to create for each path segment (waypoint to waypoint). + Only used in case of non-Linear paths + + + + Returns the length of a path. + Returns -1 if this is not a path tween, if the tween is invalid, or if the path is not yet initialized. + A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature). + You can force a path to be initialized by calling myTween.ForceInit(). + + + + + Types of loop + + + + Each loop cycle restarts from the beginning + + + The tween moves forward and backwards at alternate cycles + + + Continuously increments the tween at the end of each loop cycle (A to B, B to B+(A-B), and so on), thus always moving "onward". + In case of String tweens works only if the tween is set as relative + + + + Controls other tweens as a group + + + + + Methods that extend known Unity objects and allow to directly create and control tweens from their instances + + + + Tweens a Camera's aspect to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's backgroundColor to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's farClipPlane to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's fieldOfView to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's nearClipPlane to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's orthographicSize to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's pixelRect to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's rect to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Shakes a Camera's localPosition along its relative X Y axes with the given values. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Camera's localPosition along its relative X Y axes with the given values. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Camera's localRotation. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Camera's localRotation. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Tweens a Light's color to the given value. + Also stores the light as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Light's intensity to the given value. + Also stores the light as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Light's shadowStrength to the given value. + Also stores the light as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a LineRenderer's color to the given value. + Also stores the LineRenderer as the tween's target so it can be used for filtered operations. + Note that this method requires to also insert the start colors for the tween, + since LineRenderers have no way to get them. + The start value to tween from + The end value to reachThe duration of the tween + + + Tweens a Material's color to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Material's named color property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween (like _Tint or _SpecColor) + The duration of the tween + + + Tweens a Material's named color property with the given ID to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Material's alpha color to the given value + (will have no effect unless your material supports transparency). + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Material's alpha color to the given value + (will have no effect unless your material supports transparency). + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween (like _Tint or _SpecColor) + The duration of the tween + + + Tweens a Material's alpha color with the given ID to the given value + (will have no effect unless your material supports transparency). + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Material's named float property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's named float property with the given ID to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Material's texture offset to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The duration of the tween + + + Tweens a Material's named texture offset property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's texture scale to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The duration of the tween + + + Tweens a Material's named texture scale property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's named Vector property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's named Vector property with the given ID to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a TrailRenderer's startWidth/endWidth to the given value. + Also stores the TrailRenderer as the tween's target so it can be used for filtered operations + The end startWidth to reachThe end endWidth to reach + The duration of the tween + + + Tweens a TrailRenderer's time to the given value. + Also stores the TrailRenderer as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's X position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Y position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Z position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's X localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Y localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Z localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's rotation to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + Rotation mode + + + Tweens a Transform's rotation to the given value using pure quaternion values. + Also stores the transform as the tween's target so it can be used for filtered operations. + PLEASE NOTE: DORotate, which takes Vector3 values, is the preferred rotation method. + This method was implemented for very special cases, and doesn't support LoopType.Incremental loops + (neither for itself nor if placed inside a LoopType.Incremental Sequence) + + The end value to reachThe duration of the tween + + + Tweens a Transform's localRotation to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + Rotation mode + + + Tweens a Transform's rotation to the given value using pure quaternion values. + Also stores the transform as the tween's target so it can be used for filtered operations. + PLEASE NOTE: DOLocalRotate, which takes Vector3 values, is the preferred rotation method. + This method was implemented for very special cases, and doesn't support LoopType.Incremental loops + (neither for itself nor if placed inside a LoopType.Incremental Sequence) + + The end value to reachThe duration of the tween + + + Tweens a Transform's localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's localScale uniformly to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's X localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's Y localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's Z localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's rotation so that it will look towards the given world position. + Also stores the transform as the tween's target so it can be used for filtered operations + The position to look atThe duration of the tween + Eventual axis constraint for the rotation + The vector that defines in which direction up is (default: Vector3.up) + + + EXPERIMENTAL Tweens a Transform's rotation so that it will look towards the given world position, + while also updating the lookAt position every frame + (contrary to which calculates the lookAt rotation only once, when the tween starts). + Also stores the transform as the tween's target so it can be used for filtered operations + The position to look atThe duration of the tween + Eventual axis constraint for the rotation + The vector that defines in which direction up is (default: Vector3.up) + + + Punches a Transform's localPosition towards the given direction and then back to the starting one + as if it was connected to the starting position via an elastic. + The direction and strength of the punch (added to the Transform's current position) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards. + 1 creates a full oscillation between the punch direction and the opposite direction, + while 0 oscillates only between the punch and the start position + If TRUE the tween will smoothly snap all values to integers + + + Punches a Transform's localScale towards the given size and then back to the starting one + as if it was connected to the starting scale via an elastic. + The punch strength (added to the Transform's current scale) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting size when bouncing backwards. + 1 creates a full oscillation between the punch scale and the opposite scale, + while 0 oscillates only between the punch scale and the start scale + + + Punches a Transform's localRotation towards the given size and then back to the starting one + as if it was connected to the starting rotation via an elastic. + The punch strength (added to the Transform's current rotation) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting rotation when bouncing backwards. + 1 creates a full oscillation between the punch rotation and the opposite rotation, + while 0 oscillates only between the punch and the start rotation + + + Shakes a Transform's localPosition with the given values. + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the tween will smoothly snap all values to integers + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Transform's localPosition with the given values. + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the tween will smoothly snap all values to integers + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Transform's localRotation. + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Transform's localRotation. + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Transform's localScale. + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Shakes a Transform's localScale. + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + Randomness mode + + + Tweens a Transform's position to the given value, while also applying a jump effect along the Y axis. + Returns a Sequence instead of a Tweener. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reach + Power of the jump (the max height of the jump is represented by this plus the final Y offset) + Total number of jumps + The duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's localPosition to the given value, while also applying a jump effect along the Y axis. + Returns a Sequence instead of a Tweener. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reach + Power of the jump (the max height of the jump is represented by this plus the final Y offset) + Total number of jumps + The duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's position through the given path waypoints, using the chosen path algorithm. + Also stores the transform as the tween's target so it can be used for filtered operations + The waypoints to go through + The duration of the tween + The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points) + The path mode: 3D, side-scroller 2D, top-down 2D + The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive. + Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + The color of the path (shown when gizmos are active in the Play panel and the tween is running) + + + Tweens a Transform's localPosition through the given path waypoints, using the chosen path algorithm. + Also stores the transform as the tween's target so it can be used for filtered operations + The waypoint to go through + The duration of the tween + The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points) + The path mode: 3D, side-scroller 2D, top-down 2D + The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive. + Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + The color of the path (shown when gizmos are active in the Play panel and the tween is running) + + + IMPORTANT: Unless you really know what you're doing, you should use the overload that accepts a Vector3 array instead. + Tweens a Transform's position via the given path. + Also stores the transform as the tween's target so it can be used for filtered operations + The path to use + The duration of the tween + The path mode: 3D, side-scroller 2D, top-down 2D + + + IMPORTANT: Unless you really know what you're doing, you should use the overload that accepts a Vector3 array instead. + Tweens a Transform's localPosition via the given path. + Also stores the transform as the tween's target so it can be used for filtered operations + The path to use + The duration of the tween + The path mode: 3D, side-scroller 2D, top-down 2D + + + Tweens a Tween's timeScale to the given value. + Also stores the Tween as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Light's color to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Light as the tween's target so it can be used for filtered operations + The value to tween toThe duration of the tween + + + Tweens a Material's color to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Material as the tween's target so it can be used for filtered operations + The value to tween toThe duration of the tween + + + Tweens a Material's named color property to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Material as the tween's target so it can be used for filtered operations + The value to tween to + The name of the material property to tween (like _Tint or _SpecColor) + The duration of the tween + + + Tweens a Material's named color property with the given ID to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Material as the tween's target so it can be used for filtered operations + The value to tween to + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Transform's position BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableMove tweens to work together on the same target, + instead than fight each other as multiple DOMove would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's localPosition BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableMove tweens to work together on the same target, + instead than fight each other as multiple DOMove would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + EXPERIMENTAL METHOD - Tweens a Transform's rotation BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableRotate tweens to work together on the same target, + instead than fight each other as multiple DORotate would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + Rotation mode + + + EXPERIMENTAL METHOD - Tweens a Transform's lcoalRotation BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableRotate tweens to work together on the same target, + instead than fight each other as multiple DORotate would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + Rotation mode + + + Punches a Transform's localRotation BY the given value and then back to the starting one + as if it was connected to the starting rotation via an elastic. Does it in a way that allows other + DOBlendableRotate tweens to work together on the same target + The punch strength (added to the Transform's current rotation) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting rotation when bouncing backwards. + 1 creates a full oscillation between the punch rotation and the opposite rotation, + while 0 oscillates only between the punch and the start rotation + + + Tweens a Transform's localScale BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableScale tweens to work together on the same target, + instead than fight each other as multiple DOScale would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + + + + Completes all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens completed + (meaning the tweens that don't have infinite loops and were not already complete) + + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + + Completes all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens completed + (meaning the tweens that don't have infinite loops and were not already complete) + + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + + Kills all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens killed. + + If TRUE completes the tween before killing it + + + + Kills all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens killed. + + If TRUE completes the tween before killing it + + + + Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens flipped. + + + + + Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens flipped. + + + + + Sends to the given position all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + Time position to reach + (if higher than the whole tween duration the tween will simply reach its end) + If TRUE will play the tween after reaching the given position, otherwise it will pause it + + + + Sends to the given position all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + Time position to reach + (if higher than the whole tween duration the tween will simply reach its end) + If TRUE will play the tween after reaching the given position, otherwise it will pause it + + + + Pauses all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens paused. + + + + + Pauses all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens paused. + + + + + Plays all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays backwards all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays backwards all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays forward all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays forward all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Restarts all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens restarted. + + + + + Restarts all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens restarted. + + + + + Rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Smoothly rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Smoothly rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + + + + Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + + + + This class serves only as a utility class to store tween settings to apply on multiple tweens. + It is in no way needed otherwise, since you can directly apply tween settings to a tween via chaining + + + + A variable you can eventually Clear and reuse when needed, + to avoid instantiating TweenParams objects + + + Creates a new TweenParams object, which you can use to store tween settings + to pass to multiple tweens via myTween.SetAs(myTweenParms) + + + Clears and resets this TweenParams instance using default values, + so it can be reused without instantiating another one + + + Sets the autoKill behaviour of the tween. + Has no effect if the tween has already started + If TRUE the tween will be automatically killed when complete + + + Sets an ID for the tween, which can then be used as a filter with DOTween's static methods. + The ID to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets an ID for the tween, which can then be used as a filter with DOTween's static methods. + The ID to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets an ID for the tween, which can then be used as a filter with DOTween's static methods. + The ID to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets the target for the tween, which can then be used as a filter with DOTween's static methods. + IMPORTANT: use it with caution. If you just want to set an ID for the tween use SetId instead. + When using shorcuts the shortcut target is already assigned as the tween's target, + so using this method will overwrite it and prevent shortcut-operations like myTarget.DOPause from working correctly. + The target to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets the looping options for the tween. + Has no effect if the tween has already started + Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence) + Loop behaviour type (default: LoopType.Restart) + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + Eventual overshoot or amplitude to use with Back or Elastic easeType (default is 1.70158) + Eventual period to use with Elastic easeType (default is 0) + + + Sets the ease of the tween using an AnimationCurve. + If applied to Sequences eases the whole sequence animation + + + Sets the ease of the tween using a custom ease function. + If applied to Sequences eases the whole sequence animation + + + Sets the recycling behaviour for the tween. + If TRUE the tween will be recycled after being killed, otherwise it will be destroyed. + + + Sets the update type to the one defined in DOTween.defaultUpdateType (UpdateType.Normal unless changed) + and lets you choose if it should be independent from Unity's Time.timeScale + If TRUE the tween will ignore Unity's Time.timeScale + + + Sets the type of update (default or independent) for the tween + The type of update (default: UpdateType.Normal) + If TRUE the tween will ignore Unity's Time.timeScale + + + Sets the onStart callback for the tween. + Called the first time the tween is set in a playing state, after any eventual delay + + + Sets the onPlay callback for the tween. + Called when the tween is set in a playing state, after any eventual delay. + Also called each time the tween resumes playing from a paused state + + + Sets the onRewind callback for the tween. + Called when the tween is rewinded, + either by calling Rewind or by reaching the start position while playing backwards. + Rewinding a tween that is already rewinded will not fire this callback + + + Sets the onUpdate callback for the tween. + Called each time the tween updates + + + Sets the onStepComplete callback for the tween. + Called the moment the tween completes one loop cycle, even when going backwards + + + Sets the onComplete callback for the tween. + Called the moment the tween reaches its final forward position, loops included + + + Sets the onKill callback for the tween. + Called the moment the tween is killed + + + Sets the onWaypointChange callback for the tween. + Called when a path tween reaches a new waypoint + + + Sets a delayed startup for the tween. + Has no effect on Sequences or if the tween has already started + + + If isRelative is TRUE sets the tween as relative + (the endValue will be calculated as startValue + endValue instead than being used directly). + Has no effect on Sequences or if the tween has already started + + + If isSpeedBased is TRUE sets the tween as speed based + (the duration will represent the number of units the tween moves x second). + Has no effect on Sequences, nested tweens, or if the tween has already started + + + + Methods that extend Tween objects and allow to set their parameters + + + + Sets the autoKill behaviour of the tween to TRUE. + Has no effect if the tween has already started or if it's added to a Sequence + + + Sets the autoKill behaviour of the tween. + Has no effect if the tween has already started or if it's added to a Sequence + If TRUE the tween will be automatically killed when complete + + + Sets an ID for the tween (), which can then be used as a filter with DOTween's static methods. + The ID to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets a string ID for the tween (), which can then be used as a filter with DOTween's static methods. + Filtering via string is 2X faster than using an object as an ID (using the alternate obejct overload) + The string ID to assign to this tween. + + + Sets an int ID for the tween (), which can then be used as a filter with DOTween's static methods. + Filtering via int is 4X faster than via object, 2X faster than via string (using the alternate object/string overloads) + The int ID to assign to this tween. + + + Allows to link this tween to a GameObject + so that it will be automatically killed when the GameObject is destroyed. + Has no effect if the tween is added to a Sequence + The link target (unrelated to the target set via SetTarget) + + + Allows to link this tween to a GameObject and assign a behaviour depending on it. + This will also automatically kill the tween when the GameObject is destroyed. + Has no effect if the tween is added to a Sequence + The link target (unrelated to the target set via SetTarget) + The behaviour to use ( is always evaluated even if you choose another one) + + + Sets the target for the tween, which can then be used as a filter with DOTween's static methods. + IMPORTANT: use it with caution. If you just want to set an ID for the tween use SetId instead. + When using shorcuts the shortcut target is already assigned as the tween's target, + so using this method will overwrite it and prevent shortcut-operations like myTarget.DOPause from working correctly. + The target to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets the looping options for the tween. + Has no effect if the tween has already started + Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence) + + + Sets the looping options for the tween. + Has no effect if the tween has already started + Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence) + Loop behaviour type (default: LoopType.Restart) + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + + Eventual overshoot to use with Back or Flash ease (default is 1.70158 - 1 for Flash). + In case of Flash ease it must be an intenger and sets the total number of flashes that will happen. + Using an even number will complete the tween on the starting value, while an odd one will complete it on the end value. + + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + Eventual amplitude to use with Elastic easeType or overshoot to use with Flash easeType (default is 1.70158 - 1 for Flash). + In case of Flash ease it must be an integer and sets the total number of flashes that will happen. + Using an even number will complete the tween on the starting value, while an odd one will complete it on the end value. + + Eventual period to use with Elastic or Flash easeType (default is 0). + In case of Flash ease it indicates the power in time of the ease, and must be between -1 and 1. + 0 is balanced, 1 weakens the ease with time, -1 starts the ease weakened and gives it power towards the end. + + + + Sets the ease of the tween using an AnimationCurve. + If applied to Sequences eases the whole sequence animation + + + Sets the ease of the tween using a custom ease function (which must return a value between 0 and 1). + If applied to Sequences eases the whole sequence animation + + + Allows the tween to be recycled after being killed. + + + Sets the recycling behaviour for the tween. + If TRUE the tween will be recycled after being killed, otherwise it will be destroyed. + + + Sets the update type to UpdateType.Normal and lets you choose if it should be independent from Unity's Time.timeScale + If TRUE the tween will ignore Unity's Time.timeScale + + + Sets the type of update for the tween + The type of update (defalt: UpdateType.Normal) + + + Sets the type of update for the tween and lets you choose if it should be independent from Unity's Time.timeScale + The type of update + If TRUE the tween will ignore Unity's Time.timeScale + + + EXPERIMENTAL: inverts this tween, so that it will play from the end to the beginning + (playing it backwards will actually play it from the beginning to the end). + Has no effect if the tween has already started or if it's added to a Sequence + + + EXPERIMENTAL: inverts this tween, so that it will play from the end to the beginning + (playing it backwards will actually play it from the beginning to the end). + Has no effect if the tween has already started or if it's added to a Sequence + If TRUE the tween will be inverted, otherwise it won't + + + Sets the onStart callback for the tween, clearing any previous onStart callback that was set. + Called the first time the tween is set in a playing state, after any eventual delay + + + Sets the onPlay callback for the tween, clearing any previous onPlay callback that was set. + Called when the tween is set in a playing state, after any eventual delay. + Also called each time the tween resumes playing from a paused state + + + Sets the onPause callback for the tween, clearing any previous onPause callback that was set. + Called when the tween state changes from playing to paused. + If the tween has autoKill set to FALSE, this is called also when the tween reaches completion. + + + Sets the onRewind callback for the tween, clearing any previous onRewind callback that was set. + Called when the tween is rewinded, + either by calling Rewind or by reaching the start position while playing backwards. + Rewinding a tween that is already rewinded will not fire this callback + + + Sets the onUpdate callback for the tween, clearing any previous onUpdate callback that was set. + Called each time the tween updates + + + Sets the onStepComplete callback for the tween, clearing any previous onStepComplete callback that was set. + Called the moment the tween completes one loop cycle, even when going backwards + + + Sets the onComplete callback for the tween, clearing any previous onComplete callback that was set. + Called the moment the tween reaches its final forward position, loops included + + + Sets the onKill callback for the tween, clearing any previous onKill callback that was set. + Called the moment the tween is killed + + + Sets the onWaypointChange callback for the tween, clearing any previous onWaypointChange callback that was set. + Called when a path tween's current waypoint changes + + + Sets the parameters of the tween (id, ease, loops, delay, timeScale, callbacks, etc) as the parameters of the given one. + Doesn't copy specific SetOptions settings: those will need to be applied manually each time. + Has no effect if the tween has already started. + NOTE: the tween's target will not be changed + Tween from which to copy the parameters + + + Sets the parameters of the tween (id, ease, loops, delay, timeScale, callbacks, etc) as the parameters of the given TweenParams. + Has no effect if the tween has already started. + TweenParams from which to copy the parameters + + + Adds the given tween to the end of the Sequence. + Has no effect if the Sequence has already started + The tween to append + + + Adds the given tween to the beginning of the Sequence, pushing forward the other nested content. + Has no effect if the Sequence has already started + The tween to prepend + + + Inserts the given tween at the same time position of the last tween, callback or intervale added to the Sequence. + Note that, in case of a Join after an interval, the insertion time will be the time where the interval starts, not where it finishes. + Has no effect if the Sequence has already started + + + Inserts the given tween at the given time position in the Sequence, + automatically adding an interval if needed. + Has no effect if the Sequence has already started + The time position where the tween will be placed + The tween to insert + + + Adds the given interval to the end of the Sequence. + Has no effect if the Sequence has already started + The interval duration + + + Adds the given interval to the beginning of the Sequence, pushing forward the other nested content. + Has no effect if the Sequence has already started + The interval duration + + + Adds the given callback to the end of the Sequence. + Has no effect if the Sequence has already started + The callback to append + + + Adds the given callback to the beginning of the Sequence, pushing forward the other nested content. + Has no effect if the Sequence has already started + The callback to prepend + + + Inserts the given callback at the given time position in the Sequence, + automatically adding an interval if needed. + Has no effect if the Sequence has already started + The time position where the callback will be placed + The callback to insert + + + Changes a TO tween into a FROM tween: sets the current target's position as the tween's endValue + then immediately sends the target to the previously set endValue. + + + Changes a TO tween into a FROM tween: sets the current target's position as the tween's endValue + then immediately sends the target to the previously set endValue. + If TRUE the FROM value will be calculated as relative to the current one + + + Changes a TO tween into a FROM tween: sets the current value of the target as the endValue, + and the previously passed endValue as the actual startValue. + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + If TRUE the FROM value will be calculated as relative to the current one + + + Changes a TO tween into a FROM tween: sets the tween's starting value to the given one + and eventually sets the tween's target to that value immediately. + Value to start from + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + If TRUE the FROM/TO values will be calculated as relative to the current ones + + + Changes a TO tween into a FROM tween: sets the tween's starting value to the given one + and eventually sets the tween's target to that value immediately. + Alpha value to start from (in case of Fade tweens) + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + If TRUE the FROM/TO values will be calculated as relative to the current ones + + + Changes a TO tween into a FROM tween: sets the tween's starting value to the given one + and eventually sets the tween's target to that value immediately. + Value to start from (in case of Vector tweens that act on a single coordinate or scale tweens) + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + If TRUE the FROM/TO values will be calculated as relative to the current ones + + + Changes a TO tween into a FROM tween: sets the tween's starting value to the given one + and eventually sets the tween's target to that value immediately. + Value to start from (in case of Vector tweens that act on a single coordinate or scale tweens) + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + If TRUE the FROM/TO values will be calculated as relative to the current ones + + + Sets a delayed startup for the tween. + In case of Sequences behaves the same as , + which means the delay will repeat in case of loops (while with tweens it's ignored after the first loop cycle). + Has no effect if the tween has already started + + + EXPERIMENTAL: implemented in v1.2.340. + Sets a delayed startup for the tween with options to choose how the delay is applied in case of Sequences. + Has no effect if the tween has already started + Only used by types: If FALSE sets the delay as a one-time occurrence + (defaults to this for types), + otherwise as a Sequence interval which will repeat at the beginning of every loop cycle + + + Sets the tween as relative + (the endValue will be calculated as startValue + endValue instead than being used directly). + Has no effect on Sequences or if the tween has already started + + + If isRelative is TRUE sets the tween as relative + (the endValue will be calculated as startValue + endValue instead than being used directly). + Has no effect on Sequences or if the tween has already started + + + If isSpeedBased is TRUE sets the tween as speed based + (the duration will represent the number of units the tween moves x second). + Has no effect on Sequences, nested tweens, or if the tween has already started + + + If isSpeedBased is TRUE sets the tween as speed based + (the duration will represent the number of units the tween moves x second). + Has no effect on Sequences, nested tweens, or if the tween has already started + + + Options for float tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector2 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector2 tweens + Selecting an axis will tween the vector only on that axis, leaving the others untouched + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector3 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector3 tweens + Selecting an axis will tween the vector only on that axis, leaving the others untouched + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector4 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector4 tweens + Selecting an axis will tween the vector only on that axis, leaving the others untouched + If TRUE the tween will smoothly snap all values to integers + + + Options for Quaternion tweens + If TRUE (default) the rotation will take the shortest route, and will not rotate more than 360°. + If FALSE the rotation will be fully accounted. Is always FALSE if the tween is set as relative + + + Options for Color tweens + If TRUE only the alpha value of the color will be tweened + + + Options for Vector4 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector4 tweens + If TRUE, rich text will be interpreted correctly while animated, + otherwise all tags will be considered as normal text + The type of scramble to use, if any + A string containing the characters to use for scrambling. + Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters. + Leave it to NULL to use default ones + + + Options for Vector3Array tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector3Array tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for ShapeCircle tweens + If TRUE the center you set in the DOTween.To method will be considered as relative + to the starting position of the target + If TRUE the tween will smoothly snap all values to integers + + + Options for Path tweens (created via the DOPath shortcut) + The eventual movement axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + The eventual rotation axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + + + Options for Path tweens (created via the DOPath shortcut) + If TRUE the path will be automatically closed + The eventual movement axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + The eventual rotation axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target towards the given position. + Must be chained directly to the tween creation method or to a SetOptions + The position to look at + The eventual direction to consider as "forward". + If left to NULL defaults to the regular forward side of the transform + The vector that defines in which direction up is (default: Vector3.up) + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target towards the given position with options to keep the Z rotation stable. + Must be chained directly to the tween creation method or to a SetOptions + The position to look at + If TRUE doesn't rotate the target along the Z axis + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target towards another transform. + Must be chained directly to the tween creation method or to a SetOptions + The transform to look at + The eventual direction to consider as "forward". + If left to NULL defaults to the regular forward side of the transform + The vector that defines in which direction up is (default: Vector3.up) + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target towards another transform with options to keep the Z rotation stable. + Must be chained directly to the tween creation method or to a SetOptions + The transform to look at + If TRUE doesn't rotate the target along the Z axis + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target to the path, with the given lookAhead. + Must be chained directly to the tween creation method or to a SetOptions + The percentage of lookAhead to use (0 to 1) + The eventual direction to consider as "forward". + If left to NULL defaults to the regular forward side of the transform + The vector that defines in which direction up is (default: Vector3.up) + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the path with options to keep the Z rotation stable. + Must be chained directly to the tween creation method or to a SetOptions + The percentage of lookAhead to use (0 to 1) + If TRUE doesn't rotate the target along the Z axis + + + + Types of log behaviours + + + + Log only warnings and errors + + + Log warnings, errors and additional infos + + + Log only errors + + + + Indicates either a Tweener or a Sequence + + + + TimeScale for the tween + + + If TRUE the tween will play backwards + + + If TRUE the tween is completely inverted but without playing it backwards + (play backwards will actually play the tween in the original direction) + + + Object ID (usable for filtering with DOTween static methods). Can be anything except a string or an int + (use or for those) + + + String ID (usable for filtering with DOTween static methods). 2X faster than using an object id + + + Int ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id. + Default is -999 so avoid using an ID like that or it will capture all unset intIds + + + Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shortcuts + + + Called when the tween is set in a playing state, after any eventual delay. + Also called each time the tween resumes playing from a paused state + + + Called when the tween state changes from playing to paused. + If the tween has autoKill set to FALSE, this is called also when the tween reaches completion. + + + Called when the tween is rewinded, + either by calling Rewind or by reaching the start position while playing backwards. + Rewinding a tween that is already rewinded will not fire this callback + + + Called each time the tween updates + + + Called the moment the tween completes one loop cycle + + + Called the moment the tween reaches completion (loops included) + + + Called the moment the tween is killed + + + Called when a path tween's current waypoint changes + + + Tweeners-only (ignored by Sequences), returns TRUE if the tween was set as relative + + + + Set by SetTarget if DOTween's Debug Mode is on (see DOTween Utility Panel -> "Store GameObject's ID" debug option + + + + FALSE when tween is (or should be) despawned - set only by TweenManager + + + Gets and sets the time position (loops included, delays excluded) of the tween + + + Returns TRUE if the tween is set to loop (either a set number of times or infinitely) + + + TRUE after the tween was set in a play state at least once, AFTER any delay is elapsed + + + Time position within a single loop cycle + + + + Animates a single value + + + + Changes the start value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + If bigger than 0 applies it as the new tween duration + + + Changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If bigger than 0 applies it as the new tween duration + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + Changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + Changes the start and end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + The new end value + If bigger than 0 applies it as the new tween duration + + + + Used internally + + + + + Update type + + + + Updates every frame during Update calls + + + Updates every frame during LateUpdate calls + + + Updates using FixedUpdate calls + + + Updates using manual update calls + + + diff --git a/Assets/Plugins/Demigiant/DOTween/DOTween.XML.meta b/Assets/Plugins/Demigiant/DOTween/DOTween.XML.meta new file mode 100644 index 00000000..7a866b54 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/DOTween.XML.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 34192c5e0d14aee43a0e86cc4823268a +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/DOTween.dll b/Assets/Plugins/Demigiant/DOTween/DOTween.dll new file mode 100644 index 00000000..475d77ca Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTween/DOTween.dll differ diff --git a/Assets/Plugins/Demigiant/DOTween/DOTween.dll.meta b/Assets/Plugins/Demigiant/DOTween/DOTween.dll.meta new file mode 100644 index 00000000..482dbb83 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/DOTween.dll.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: a811bde74b26b53498b4f6d872b09b6d +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Any: + enabled: 1 + settings: {} + Editor: + enabled: 0 + settings: + DefaultValueInitialized: true + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor.meta b/Assets/Plugins/Demigiant/DOTween/Editor.meta new file mode 100644 index 00000000..532edfb4 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: b27f58ae5d5c33a4bb2d1f4f34bd036d +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML new file mode 100644 index 00000000..26bd562a --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML @@ -0,0 +1,124 @@ + + + + DOTweenEditor + + + + + Contains compatibility methods taken from DemiEditor (for when DOTween is without it) + + + + + Starts the update loop of tween in the editor. Has no effect during playMode. + + Eventual callback to call after every update + + + + Stops the update loop and clears the onPreviewUpdated callback. + + If TRUE also resets the tweened objects to their original state. + Note that this works by calling Rewind on all tweens, so it will work correctly + only if you have a single tween type per object and it wasn't killed + If TRUE also kills any cached tween + + + + Readies the tween for editor preview by setting its UpdateType to Manual plus eventual extra settings. + + The tween to ready + If TRUE (recommended) removes all callbacks (OnComplete/Rewind/etc) + If TRUE prevents the tween from being auto-killed at completion + If TRUE starts playing the tween immediately + + + Full major version + first minor version (ex: 2018.1f) + + + Major version + + + First minor version (ex: in 2018.1 it would be 1) + + + + Checks that the given editor texture use the correct import settings, + and applies them if they're incorrect. + + + + + Returns TRUE if setup is required + + + + + Returns TRUE if the file/directory at the given path exists. + + Path, relative to Unity's project folder + + + + + Converts the given project-relative path to a full path, + with backward (\) slashes). + + + + + Converts the given full path to a path usable with AssetDatabase methods + (relative to Unity's project folder, and with the correct Unity forward (/) slashes). + + + + + Connects to a asset. + If the asset already exists at the given path, loads it and returns it. + Otherwise, either returns NULL or automatically creates it before loading and returning it + (depending on the given parameters). + + Asset type + File path (relative to Unity's project folder) + If TRUE and the requested asset doesn't exist, forces its creation + + + + Full path for the given loaded assembly, assembly file included + + + + + Adds the given global define if it's not already present + + + + + Removes the given global define if it's present + + + + + Returns TRUE if the given global define is present in all the + or only in the given , depending on passed parameters. + + + to use. Leave NULL to check in all of them. + + + + Not used as menu item anymore, but as a utiity function + + + + Full major version + first minor version (ex: 2018.1f) + + + Major version + + + First minor version (ex: in 2018.1 it would be 1) + + + diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML.meta b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML.meta new file mode 100644 index 00000000..7cec1135 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 2e2c6224d345d9249acfa6e8ef40bb2d +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll new file mode 100644 index 00000000..9c2e7cad Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll differ diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.meta b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.meta new file mode 100644 index 00000000..53590f3b --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 45d5034162d6cf04dbe46da84fc7d074 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + DefaultValueInitialized: true + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs.meta b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs.meta new file mode 100644 index 00000000..a81ba5ff --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 0034ebae0c2a9344e897db1160d71b6d +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png new file mode 100644 index 00000000..d06fc7c3 Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png differ diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png.meta b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png.meta new file mode 100644 index 00000000..61c3ccec --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 8da095e39e9b4df488dfd436f81116d6 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 128 + textureSettings: + filterMode: 1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png new file mode 100644 index 00000000..7cd74c1a Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png differ diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png.meta b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png.meta new file mode 100644 index 00000000..c343a61a --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 61521df2e071645488ba3d05e49289ae +timeCreated: 1602317874 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + 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: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + 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: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png new file mode 100644 index 00000000..e29d02fe Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png differ diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png.meta b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png.meta new file mode 100644 index 00000000..7ca19119 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 7051dba417b3d53409f2918f1ea4938d +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 256 + textureSettings: + filterMode: 1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png new file mode 100644 index 00000000..e48db5ef Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png differ diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png.meta b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png.meta new file mode 100644 index 00000000..f12a1a7d --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 519694efe2bb2914788b151fbd8c01f4 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg new file mode 100644 index 00000000..4d710d71 Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg differ diff --git a/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg.meta b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg.meta new file mode 100644 index 00000000..26e42551 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 78a59ca99f8987941adb61f9e14a06a7 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 512 + textureSettings: + filterMode: 1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules.meta b/Assets/Plugins/Demigiant/DOTween/Modules.meta new file mode 100644 index 00000000..24cd2ac5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 143604b8bad857d47a6f7cc7a533e2dc +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs new file mode 100644 index 00000000..d958ae03 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs @@ -0,0 +1,198 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true // MODULE_MARKER +using System; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; +using UnityEngine; +using UnityEngine.Audio; // Required for AudioMixer + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModuleAudio + { + #region Shortcuts + + #region Audio + + /// Tweens an AudioSource's volume to the given value. + /// Also stores the AudioSource as the tween's target so it can be used for filtered operations + /// The end value to reach (0 to 1)The duration of the tween + public static TweenerCore DOFade(this AudioSource target, float endValue, float duration) + { + if (endValue < 0) endValue = 0; + else if (endValue > 1) endValue = 1; + TweenerCore t = DOTween.To(() => target.volume, x => target.volume = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an AudioSource's pitch to the given value. + /// Also stores the AudioSource as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPitch(this AudioSource target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pitch, x => target.pitch = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region AudioMixer + + /// Tweens an AudioMixer's exposed float to the given value. + /// Also stores the AudioMixer as the tween's target so it can be used for filtered operations. + /// Note that you need to manually expose a float in an AudioMixerGroup in order to be able to tween it from an AudioMixer. + /// Name given to the exposed float to set + /// The end value to reachThe duration of the tween + public static TweenerCore DOSetFloat(this AudioMixer target, string floatName, float endValue, float duration) + { + TweenerCore t = DOTween.To(()=> { + float currVal; + target.GetFloat(floatName, out currVal); + return currVal; + }, x=> target.SetFloat(floatName, x), endValue, duration); + t.SetTarget(target); + return t; + } + + #region Operation Shortcuts + + /// + /// Completes all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens completed + /// (meaning the tweens that don't have infinite loops and were not already complete) + /// + /// For Sequences only: if TRUE also internal Sequence callbacks will be fired, + /// otherwise they will be ignored + public static int DOComplete(this AudioMixer target, bool withCallbacks = false) + { + return DOTween.Complete(target, withCallbacks); + } + + /// + /// Kills all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens killed. + /// + /// If TRUE completes the tween before killing it + public static int DOKill(this AudioMixer target, bool complete = false) + { + return DOTween.Kill(target, complete); + } + + /// + /// Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens flipped. + /// + public static int DOFlip(this AudioMixer target) + { + return DOTween.Flip(target); + } + + /// + /// Sends to the given position all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens involved. + /// + /// Time position to reach + /// (if higher than the whole tween duration the tween will simply reach its end) + /// If TRUE will play the tween after reaching the given position, otherwise it will pause it + public static int DOGoto(this AudioMixer target, float to, bool andPlay = false) + { + return DOTween.Goto(target, to, andPlay); + } + + /// + /// Pauses all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens paused. + /// + public static int DOPause(this AudioMixer target) + { + return DOTween.Pause(target); + } + + /// + /// Plays all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens played. + /// + public static int DOPlay(this AudioMixer target) + { + return DOTween.Play(target); + } + + /// + /// Plays backwards all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens played. + /// + public static int DOPlayBackwards(this AudioMixer target) + { + return DOTween.PlayBackwards(target); + } + + /// + /// Plays forward all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens played. + /// + public static int DOPlayForward(this AudioMixer target) + { + return DOTween.PlayForward(target); + } + + /// + /// Restarts all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens restarted. + /// + public static int DORestart(this AudioMixer target) + { + return DOTween.Restart(target); + } + + /// + /// Rewinds all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens rewinded. + /// + public static int DORewind(this AudioMixer target) + { + return DOTween.Rewind(target); + } + + /// + /// Smoothly rewinds all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens rewinded. + /// + public static int DOSmoothRewind(this AudioMixer target) + { + return DOTween.SmoothRewind(target); + } + + /// + /// Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens involved. + /// + public static int DOTogglePause(this AudioMixer target) + { + return DOTween.TogglePause(target); + } + + #endregion + + #endregion + + #endregion + } +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs.meta new file mode 100644 index 00000000..50aa010f --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b766d08851589514b97afb23c6f30a70 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs new file mode 100644 index 00000000..2ab3775c --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs @@ -0,0 +1,146 @@ +using UnityEngine; + +#if false || EPO_DOTWEEN // MODULE_MARKER + +using EPOOutline; +using DG.Tweening.Plugins.Options; +using DG.Tweening; +using DG.Tweening.Core; + +namespace DG.Tweening +{ + public static class DOTweenModuleEPOOutline + { + public static int DOKill(this SerializedPass target, bool complete) + { + return DOTween.Kill(target, complete); + } + + public static TweenerCore DOFloat(this SerializedPass target, string propertyName, float endValue, float duration) + { + var tweener = DOTween.To(() => target.GetFloat(propertyName), x => target.SetFloat(propertyName, x), endValue, duration); + tweener.SetOptions(true).SetTarget(target); + return tweener; + } + + public static TweenerCore DOFade(this SerializedPass target, string propertyName, float endValue, float duration) + { + var tweener = DOTween.ToAlpha(() => target.GetColor(propertyName), x => target.SetColor(propertyName, x), endValue, duration); + tweener.SetOptions(true).SetTarget(target); + return tweener; + } + + public static TweenerCore DOColor(this SerializedPass target, string propertyName, Color endValue, float duration) + { + var tweener = DOTween.To(() => target.GetColor(propertyName), x => target.SetColor(propertyName, x), endValue, duration); + tweener.SetOptions(false).SetTarget(target); + return tweener; + } + + public static TweenerCore DOVector(this SerializedPass target, string propertyName, Vector4 endValue, float duration) + { + var tweener = DOTween.To(() => target.GetVector(propertyName), x => target.SetVector(propertyName, x), endValue, duration); + tweener.SetOptions(false).SetTarget(target); + return tweener; + } + + public static TweenerCore DOFloat(this SerializedPass target, int propertyId, float endValue, float duration) + { + var tweener = DOTween.To(() => target.GetFloat(propertyId), x => target.SetFloat(propertyId, x), endValue, duration); + tweener.SetOptions(true).SetTarget(target); + return tweener; + } + + public static TweenerCore DOFade(this SerializedPass target, int propertyId, float endValue, float duration) + { + var tweener = DOTween.ToAlpha(() => target.GetColor(propertyId), x => target.SetColor(propertyId, x), endValue, duration); + tweener.SetOptions(true).SetTarget(target); + return tweener; + } + + public static TweenerCore DOColor(this SerializedPass target, int propertyId, Color endValue, float duration) + { + var tweener = DOTween.To(() => target.GetColor(propertyId), x => target.SetColor(propertyId, x), endValue, duration); + tweener.SetOptions(false).SetTarget(target); + return tweener; + } + + public static TweenerCore DOVector(this SerializedPass target, int propertyId, Vector4 endValue, float duration) + { + var tweener = DOTween.To(() => target.GetVector(propertyId), x => target.SetVector(propertyId, x), endValue, duration); + tweener.SetOptions(false).SetTarget(target); + return tweener; + } + + public static int DOKill(this Outlinable.OutlineProperties target, bool complete = false) + { + return DOTween.Kill(target, complete); + } + + public static int DOKill(this Outliner target, bool complete = false) + { + return DOTween.Kill(target, complete); + } + + /// + /// Controls the alpha (transparency) of the outline + /// + public static TweenerCore DOFade(this Outlinable.OutlineProperties target, float endValue, float duration) + { + var tweener = DOTween.ToAlpha(() => target.Color, x => target.Color = x, endValue, duration); + tweener.SetOptions(true).SetTarget(target); + return tweener; + } + + /// + /// Controls the color of the outline + /// + public static TweenerCore DOColor(this Outlinable.OutlineProperties target, Color endValue, float duration) + { + var tweener = DOTween.To(() => target.Color, x => target.Color = x, endValue, duration); + tweener.SetOptions(false).SetTarget(target); + return tweener; + } + + /// + /// Controls the amount of blur applied to the outline + /// + public static TweenerCore DOBlurShift(this Outlinable.OutlineProperties target, float endValue, float duration, bool snapping = false) + { + var tweener = DOTween.To(() => target.BlurShift, x => target.BlurShift = x, endValue, duration); + tweener.SetOptions(snapping).SetTarget(target); + return tweener; + } + + /// + /// Controls the amount of blur applied to the outline + /// + public static TweenerCore DOBlurShift(this Outliner target, float endValue, float duration, bool snapping = false) + { + var tweener = DOTween.To(() => target.BlurShift, x => target.BlurShift = x, endValue, duration); + tweener.SetOptions(snapping).SetTarget(target); + return tweener; + } + + /// + /// Controls the amount of dilation applied to the outline + /// + public static TweenerCore DODilateShift(this Outlinable.OutlineProperties target, float endValue, float duration, bool snapping = false) + { + var tweener = DOTween.To(() => target.DilateShift, x => target.DilateShift = x, endValue, duration); + tweener.SetOptions(snapping).SetTarget(target); + return tweener; + } + + /// + /// Controls the amount of dilation applied to the outline + /// + public static TweenerCore DODilateShift(this Outliner target, float endValue, float duration, bool snapping = false) + { + var tweener = DOTween.To(() => target.DilateShift, x => target.DilateShift = x, endValue, duration); + tweener.SetOptions(snapping).SetTarget(target); + return tweener; + } + } +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs.meta new file mode 100644 index 00000000..4b8991f5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e944529dcaee98f4e9498d80e541d93e +timeCreated: 1602593330 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs new file mode 100644 index 00000000..08b07006 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs @@ -0,0 +1,216 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true // MODULE_MARKER +using System; +using DG.Tweening.Core; +using DG.Tweening.Core.Enums; +using DG.Tweening.Plugins; +using DG.Tweening.Plugins.Core.PathCore; +using DG.Tweening.Plugins.Options; +using UnityEngine; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModulePhysics + { + #region Shortcuts + + #region Rigidbody + + /// Tweens a Rigidbody's position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMove(this Rigidbody target, Vector3 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's X position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveX(this Rigidbody target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector3(endValue, 0, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's Y position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveY(this Rigidbody target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, endValue, 0), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's Z position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveZ(this Rigidbody target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, 0, endValue), duration); + t.SetOptions(AxisConstraint.Z, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's rotation to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// Rotation mode + public static TweenerCore DORotate(this Rigidbody target, Vector3 endValue, float duration, RotateMode mode = RotateMode.Fast) + { + TweenerCore t = DOTween.To(() => target.rotation, target.MoveRotation, endValue, duration); + t.SetTarget(target); + t.plugOptions.rotateMode = mode; + return t; + } + + /// Tweens a Rigidbody's rotation so that it will look towards the given position. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The position to look atThe duration of the tween + /// Eventual axis constraint for the rotation + /// The vector that defines in which direction up is (default: Vector3.up) + public static TweenerCore DOLookAt(this Rigidbody target, Vector3 towards, float duration, AxisConstraint axisConstraint = AxisConstraint.None, Vector3? up = null) + { + TweenerCore t = DOTween.To(() => target.rotation, target.MoveRotation, towards, duration) + .SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetLookAt); + t.plugOptions.axisConstraint = axisConstraint; + t.plugOptions.up = (up == null) ? Vector3.up : (Vector3)up; + return t; + } + + #region Special + + /// Tweens a Rigidbody's position to the given value, while also applying a jump effect along the Y axis. + /// Returns a Sequence instead of a Tweener. + /// Also stores the Rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reach + /// Power of the jump (the max height of the jump is represented by this plus the final Y offset) + /// Total number of jumps + /// The duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Sequence DOJump(this Rigidbody target, Vector3 endValue, float jumpPower, int numJumps, float duration, bool snapping = false) + { + if (numJumps < 1) numJumps = 1; + float startPosY = 0; + float offsetY = -1; + bool offsetYSet = false; + Sequence s = DOTween.Sequence(); + Tween yTween = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, jumpPower, 0), duration / (numJumps * 2)) + .SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative() + .SetLoops(numJumps * 2, LoopType.Yoyo) + .OnStart(() => startPosY = target.position.y); + s.Append(DOTween.To(() => target.position, target.MovePosition, new Vector3(endValue.x, 0, 0), duration) + .SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear) + ).Join(DOTween.To(() => target.position, target.MovePosition, new Vector3(0, 0, endValue.z), duration) + .SetOptions(AxisConstraint.Z, snapping).SetEase(Ease.Linear) + ).Join(yTween) + .SetTarget(target).SetEase(DOTween.defaultEaseType); + yTween.OnUpdate(() => { + if (!offsetYSet) { + offsetYSet = true; + offsetY = s.isRelative ? endValue.y : endValue.y - startPosY; + } + Vector3 pos = target.position; + pos.y += DOVirtual.EasedValue(0, offsetY, yTween.ElapsedPercentage(), Ease.OutQuad); + target.MovePosition(pos); + }); + return s; + } + + /// Tweens a Rigidbody's position through the given path waypoints, using the chosen path algorithm. + /// Also stores the Rigidbody as the tween's target so it can be used for filtered operations. + /// NOTE: to tween a rigidbody correctly it should be set to kinematic at least while being tweened. + /// BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug). + /// If you plan to publish there you should use a regular transform.DOPath. + /// The waypoints to go through + /// The duration of the tween + /// The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points) + /// The path mode: 3D, side-scroller 2D, top-down 2D + /// The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive. + /// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + /// The color of the path (shown when gizmos are active in the Play panel and the tween is running) + public static TweenerCore DOPath( + this Rigidbody target, Vector3[] path, float duration, PathType pathType = PathType.Linear, + PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null + ) + { + if (resolution < 1) resolution = 1; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => target.position, target.MovePosition, new Path(pathType, path, resolution, gizmoColor), duration) + .SetTarget(target).SetUpdate(UpdateType.Fixed); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + return t; + } + /// Tweens a Rigidbody's localPosition through the given path waypoints, using the chosen path algorithm. + /// Also stores the Rigidbody as the tween's target so it can be used for filtered operations + /// NOTE: to tween a rigidbody correctly it should be set to kinematic at least while being tweened. + /// BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug). + /// If you plan to publish there you should use a regular transform.DOLocalPath. + /// The waypoint to go through + /// The duration of the tween + /// The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points) + /// The path mode: 3D, side-scroller 2D, top-down 2D + /// The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive. + /// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + /// The color of the path (shown when gizmos are active in the Play panel and the tween is running) + public static TweenerCore DOLocalPath( + this Rigidbody target, Vector3[] path, float duration, PathType pathType = PathType.Linear, + PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null + ) + { + if (resolution < 1) resolution = 1; + Transform trans = target.transform; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), new Path(pathType, path, resolution, gizmoColor), duration) + .SetTarget(target).SetUpdate(UpdateType.Fixed); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + t.plugOptions.useLocalPosition = true; + return t; + } + // Used by path editor when creating the actual tween, so it can pass a pre-compiled path + internal static TweenerCore DOPath( + this Rigidbody target, Path path, float duration, PathMode pathMode = PathMode.Full3D + ) + { + TweenerCore t = DOTween.To(PathPlugin.Get(), () => target.position, target.MovePosition, path, duration) + .SetTarget(target); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + return t; + } + internal static TweenerCore DOLocalPath( + this Rigidbody target, Path path, float duration, PathMode pathMode = PathMode.Full3D + ) + { + Transform trans = target.transform; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), path, duration) + .SetTarget(target); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + t.plugOptions.useLocalPosition = true; + return t; + } + + #endregion + + #endregion + + #endregion + } +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs.meta new file mode 100644 index 00000000..0ce0d755 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dae9aa560b4242648a3affa2bfabc365 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs new file mode 100644 index 00000000..8ce2b561 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs @@ -0,0 +1,193 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true // MODULE_MARKER +using System; +using DG.Tweening.Core; +using DG.Tweening.Plugins; +using DG.Tweening.Plugins.Core.PathCore; +using DG.Tweening.Plugins.Options; +using UnityEngine; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModulePhysics2D + { + #region Shortcuts + + #region Rigidbody2D Shortcuts + + /// Tweens a Rigidbody2D's position to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMove(this Rigidbody2D target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody2D's X position to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveX(this Rigidbody2D target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector2(endValue, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody2D's Y position to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveY(this Rigidbody2D target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector2(0, endValue), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody2D's rotation to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DORotate(this Rigidbody2D target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.rotation, target.MoveRotation, endValue, duration); + t.SetTarget(target); + return t; + } + + #region Special + + /// Tweens a Rigidbody2D's position to the given value, while also applying a jump effect along the Y axis. + /// Returns a Sequence instead of a Tweener. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations. + /// IMPORTANT: a rigidbody2D can't be animated in a jump arc using MovePosition, so the tween will directly set the position + /// The end value to reach + /// Power of the jump (the max height of the jump is represented by this plus the final Y offset) + /// Total number of jumps + /// The duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Sequence DOJump(this Rigidbody2D target, Vector2 endValue, float jumpPower, int numJumps, float duration, bool snapping = false) + { + if (numJumps < 1) numJumps = 1; + float startPosY = 0; + float offsetY = -1; + bool offsetYSet = false; + Sequence s = DOTween.Sequence(); + Tween yTween = DOTween.To(() => target.position, x => target.position = x, new Vector2(0, jumpPower), duration / (numJumps * 2)) + .SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative() + .SetLoops(numJumps * 2, LoopType.Yoyo) + .OnStart(() => startPosY = target.position.y); + s.Append(DOTween.To(() => target.position, x => target.position = x, new Vector2(endValue.x, 0), duration) + .SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear) + ).Join(yTween) + .SetTarget(target).SetEase(DOTween.defaultEaseType); + yTween.OnUpdate(() => { + if (!offsetYSet) { + offsetYSet = true; + offsetY = s.isRelative ? endValue.y : endValue.y - startPosY; + } + Vector3 pos = target.position; + pos.y += DOVirtual.EasedValue(0, offsetY, yTween.ElapsedPercentage(), Ease.OutQuad); + target.MovePosition(pos); + }); + return s; + } + + /// Tweens a Rigidbody2D's position through the given path waypoints, using the chosen path algorithm. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations. + /// NOTE: to tween a Rigidbody2D correctly it should be set to kinematic at least while being tweened. + /// BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug). + /// If you plan to publish there you should use a regular transform.DOPath. + /// The waypoints to go through + /// The duration of the tween + /// The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points) + /// The path mode: 3D, side-scroller 2D, top-down 2D + /// The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive. + /// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + /// The color of the path (shown when gizmos are active in the Play panel and the tween is running) + public static TweenerCore DOPath( + this Rigidbody2D target, Vector2[] path, float duration, PathType pathType = PathType.Linear, + PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null + ) + { + if (resolution < 1) resolution = 1; + int len = path.Length; + Vector3[] path3D = new Vector3[len]; + for (int i = 0; i < len; ++i) path3D[i] = path[i]; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => target.position, x => target.MovePosition(x), new Path(pathType, path3D, resolution, gizmoColor), duration) + .SetTarget(target).SetUpdate(UpdateType.Fixed); + + t.plugOptions.isRigidbody2D = true; + t.plugOptions.mode = pathMode; + return t; + } + /// Tweens a Rigidbody2D's localPosition through the given path waypoints, using the chosen path algorithm. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// NOTE: to tween a Rigidbody2D correctly it should be set to kinematic at least while being tweened. + /// BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug). + /// If you plan to publish there you should use a regular transform.DOLocalPath. + /// The waypoint to go through + /// The duration of the tween + /// The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points) + /// The path mode: 3D, side-scroller 2D, top-down 2D + /// The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive. + /// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + /// The color of the path (shown when gizmos are active in the Play panel and the tween is running) + public static TweenerCore DOLocalPath( + this Rigidbody2D target, Vector2[] path, float duration, PathType pathType = PathType.Linear, + PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null + ) + { + if (resolution < 1) resolution = 1; + int len = path.Length; + Vector3[] path3D = new Vector3[len]; + for (int i = 0; i < len; ++i) path3D[i] = path[i]; + Transform trans = target.transform; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), new Path(pathType, path3D, resolution, gizmoColor), duration) + .SetTarget(target).SetUpdate(UpdateType.Fixed); + + t.plugOptions.isRigidbody2D = true; + t.plugOptions.mode = pathMode; + t.plugOptions.useLocalPosition = true; + return t; + } + // Used by path editor when creating the actual tween, so it can pass a pre-compiled path + internal static TweenerCore DOPath( + this Rigidbody2D target, Path path, float duration, PathMode pathMode = PathMode.Full3D + ) + { + TweenerCore t = DOTween.To(PathPlugin.Get(), () => target.position, x => target.MovePosition(x), path, duration) + .SetTarget(target); + + t.plugOptions.isRigidbody2D = true; + t.plugOptions.mode = pathMode; + return t; + } + internal static TweenerCore DOLocalPath( + this Rigidbody2D target, Path path, float duration, PathMode pathMode = PathMode.Full3D + ) + { + Transform trans = target.transform; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), path, duration) + .SetTarget(target); + + t.plugOptions.isRigidbody2D = true; + t.plugOptions.mode = pathMode; + t.plugOptions.useLocalPosition = true; + return t; + } + + #endregion + + #endregion + + #endregion + } +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs.meta new file mode 100644 index 00000000..ca9ed299 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 230fe34542e175245ba74b4659dae700 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs new file mode 100644 index 00000000..72afb7ba --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs @@ -0,0 +1,93 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true // MODULE_MARKER +using System; +using UnityEngine; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModuleSprite + { + #region Shortcuts + + #region SpriteRenderer + + /// Tweens a SpriteRenderer's color to the given value. + /// Also stores the spriteRenderer as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this SpriteRenderer target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Material's alpha color to the given value. + /// Also stores the spriteRenderer as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this SpriteRenderer target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a SpriteRenderer's color using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this SpriteRenderer target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + #endregion + + #region Blendables + + #region SpriteRenderer + + /// Tweens a SpriteRenderer's color to the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the SpriteRenderer as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this SpriteRenderer target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #endregion + + #endregion + } +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs.meta new file mode 100644 index 00000000..a0c67c42 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 188918ab119d93148aa0de59ccf5286b +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs new file mode 100644 index 00000000..2381f4cb --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs @@ -0,0 +1,662 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true // MODULE_MARKER + +using System; +using System.Globalization; +using UnityEngine; +using UnityEngine.UI; +using DG.Tweening.Core; +using DG.Tweening.Core.Enums; +using DG.Tweening.Plugins; +using DG.Tweening.Plugins.Options; +using Outline = UnityEngine.UI.Outline; +using Text = UnityEngine.UI.Text; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModuleUI + { + #region Shortcuts + + #region CanvasGroup + + /// Tweens a CanvasGroup's alpha color to the given value. + /// Also stores the canvasGroup as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this CanvasGroup target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.alpha, x => target.alpha = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region Graphic + + /// Tweens an Graphic's color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Graphic target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Graphic's alpha color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Graphic target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region Image + + /// Tweens an Image's color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Image target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Image's alpha color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Image target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Image's fillAmount to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reach (0 to 1)The duration of the tween + public static TweenerCore DOFillAmount(this Image target, float endValue, float duration) + { + if (endValue > 1) endValue = 1; + else if (endValue < 0) endValue = 0; + TweenerCore t = DOTween.To(() => target.fillAmount, x => target.fillAmount = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Image's colors using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this Image target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + #endregion + + #region LayoutElement + + /// Tweens an LayoutElement's flexibleWidth/Height to the given value. + /// Also stores the LayoutElement as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOFlexibleSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => new Vector2(target.flexibleWidth, target.flexibleHeight), x => { + target.flexibleWidth = x.x; + target.flexibleHeight = x.y; + }, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens an LayoutElement's minWidth/Height to the given value. + /// Also stores the LayoutElement as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMinSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => new Vector2(target.minWidth, target.minHeight), x => { + target.minWidth = x.x; + target.minHeight = x.y; + }, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens an LayoutElement's preferredWidth/Height to the given value. + /// Also stores the LayoutElement as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOPreferredSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => new Vector2(target.preferredWidth, target.preferredHeight), x => { + target.preferredWidth = x.x; + target.preferredHeight = x.y; + }, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + #endregion + + #region Outline + + /// Tweens a Outline's effectColor to the given value. + /// Also stores the Outline as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Outline target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.effectColor, x => target.effectColor = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Outline's effectColor alpha to the given value. + /// Also stores the Outline as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Outline target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.effectColor, x => target.effectColor = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Outline's effectDistance to the given value. + /// Also stores the Outline as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScale(this Outline target, Vector2 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.effectDistance, x => target.effectDistance = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region RectTransform + + /// Tweens a RectTransform's anchoredPosition to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition X to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPosX(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(endValue, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition Y to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPosY(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(0, endValue), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's anchoredPosition3D to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3D(this RectTransform target, Vector3 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition3D X to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3DX(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(endValue, 0, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition3D Y to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3DY(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(0, endValue, 0), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition3D Z to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3DZ(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(0, 0, endValue), duration); + t.SetOptions(AxisConstraint.Z, snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's anchorMax to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorMax(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchorMax, x => target.anchorMax = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's anchorMin to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorMin(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchorMin, x => target.anchorMin = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's pivot to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPivot(this RectTransform target, Vector2 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pivot, x => target.pivot = x, endValue, duration); + t.SetTarget(target); + return t; + } + /// Tweens a RectTransform's pivot X to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPivotX(this RectTransform target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pivot, x => target.pivot = x, new Vector2(endValue, 0), duration); + t.SetOptions(AxisConstraint.X).SetTarget(target); + return t; + } + /// Tweens a RectTransform's pivot Y to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPivotY(this RectTransform target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pivot, x => target.pivot = x, new Vector2(0, endValue), duration); + t.SetOptions(AxisConstraint.Y).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's sizeDelta to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOSizeDelta(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.sizeDelta, x => target.sizeDelta = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Punches a RectTransform's anchoredPosition towards the given direction and then back to the starting one + /// as if it was connected to the starting position via an elastic. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The direction and strength of the punch (added to the RectTransform's current position) + /// The duration of the tween + /// Indicates how much will the punch vibrate + /// Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards. + /// 1 creates a full oscillation between the punch direction and the opposite direction, + /// while 0 oscillates only between the punch and the start position + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOPunchAnchorPos(this RectTransform target, Vector2 punch, float duration, int vibrato = 10, float elasticity = 1, bool snapping = false) + { + return DOTween.Punch(() => target.anchoredPosition, x => target.anchoredPosition = x, punch, duration, vibrato, elasticity) + .SetTarget(target).SetOptions(snapping); + } + + /// Shakes a RectTransform's anchoredPosition with the given values. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The duration of the tween + /// The shake strength + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the tween will smoothly snap all values to integers + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + /// Randomness mode + public static Tweener DOShakeAnchorPos(this RectTransform target, float duration, float strength = 100, int vibrato = 10, float randomness = 90, bool snapping = false, bool fadeOut = true, ShakeRandomnessMode randomnessMode = ShakeRandomnessMode.Full) + { + return DOTween.Shake(() => target.anchoredPosition, x => target.anchoredPosition = x, duration, strength, vibrato, randomness, true, fadeOut, randomnessMode) + .SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetShake).SetOptions(snapping); + } + /// Shakes a RectTransform's anchoredPosition with the given values. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The duration of the tween + /// The shake strength on each axis + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the tween will smoothly snap all values to integers + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + /// Randomness mode + public static Tweener DOShakeAnchorPos(this RectTransform target, float duration, Vector2 strength, int vibrato = 10, float randomness = 90, bool snapping = false, bool fadeOut = true, ShakeRandomnessMode randomnessMode = ShakeRandomnessMode.Full) + { + return DOTween.Shake(() => target.anchoredPosition, x => target.anchoredPosition = x, duration, strength, vibrato, randomness, fadeOut, randomnessMode) + .SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetShake).SetOptions(snapping); + } + + #region Special + + /// Tweens a RectTransform's anchoredPosition to the given value, while also applying a jump effect along the Y axis. + /// Returns a Sequence instead of a Tweener. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reach + /// Power of the jump (the max height of the jump is represented by this plus the final Y offset) + /// Total number of jumps + /// The duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Sequence DOJumpAnchorPos(this RectTransform target, Vector2 endValue, float jumpPower, int numJumps, float duration, bool snapping = false) + { + if (numJumps < 1) numJumps = 1; + float startPosY = 0; + float offsetY = -1; + bool offsetYSet = false; + + // Separate Y Tween so we can elaborate elapsedPercentage on that insted of on the Sequence + // (in case users add a delay or other elements to the Sequence) + Sequence s = DOTween.Sequence(); + Tween yTween = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(0, jumpPower), duration / (numJumps * 2)) + .SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative() + .SetLoops(numJumps * 2, LoopType.Yoyo) + .OnStart(()=> startPosY = target.anchoredPosition.y); + s.Append(DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(endValue.x, 0), duration) + .SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear) + ).Join(yTween) + .SetTarget(target).SetEase(DOTween.defaultEaseType); + s.OnUpdate(() => { + if (!offsetYSet) { + offsetYSet = true; + offsetY = s.isRelative ? endValue.y : endValue.y - startPosY; + } + Vector2 pos = target.anchoredPosition; + pos.y += DOVirtual.EasedValue(0, offsetY, s.ElapsedDirectionalPercentage(), Ease.OutQuad); + target.anchoredPosition = pos; + }); + return s; + } + + #endregion + + #endregion + + #region ScrollRect + + /// Tweens a ScrollRect's horizontal/verticalNormalizedPosition to the given value. + /// Also stores the ScrollRect as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DONormalizedPos(this ScrollRect target, Vector2 endValue, float duration, bool snapping = false) + { + return DOTween.To(() => new Vector2(target.horizontalNormalizedPosition, target.verticalNormalizedPosition), + x => { + target.horizontalNormalizedPosition = x.x; + target.verticalNormalizedPosition = x.y; + }, endValue, duration) + .SetOptions(snapping).SetTarget(target); + } + /// Tweens a ScrollRect's horizontalNormalizedPosition to the given value. + /// Also stores the ScrollRect as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOHorizontalNormalizedPos(this ScrollRect target, float endValue, float duration, bool snapping = false) + { + return DOTween.To(() => target.horizontalNormalizedPosition, x => target.horizontalNormalizedPosition = x, endValue, duration) + .SetOptions(snapping).SetTarget(target); + } + /// Tweens a ScrollRect's verticalNormalizedPosition to the given value. + /// Also stores the ScrollRect as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOVerticalNormalizedPos(this ScrollRect target, float endValue, float duration, bool snapping = false) + { + return DOTween.To(() => target.verticalNormalizedPosition, x => target.verticalNormalizedPosition = x, endValue, duration) + .SetOptions(snapping).SetTarget(target); + } + + #endregion + + #region Slider + + /// Tweens a Slider's value to the given value. + /// Also stores the Slider as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOValue(this Slider target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.value, x => target.value = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + #endregion + + #region Text + + /// Tweens a Text's color to the given value. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Text target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// + /// Tweens a Text's text from one integer to another, with options for thousands separators + /// + /// The value to start from + /// The end value to reach + /// The duration of the tween + /// If TRUE (default) also adds thousands separators + /// The to use (InvariantCulture if NULL) + public static TweenerCore DOCounter( + this Text target, int fromValue, int endValue, float duration, bool addThousandsSeparator = true, CultureInfo culture = null + ){ + int v = fromValue; + CultureInfo cInfo = !addThousandsSeparator ? null : culture ?? CultureInfo.InvariantCulture; + TweenerCore t = DOTween.To(() => v, x => { + v = x; + target.text = addThousandsSeparator + ? v.ToString("N0", cInfo) + : v.ToString(); + }, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Text's alpha color to the given value. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Text target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Text's text to the given value. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The end string to tween toThe duration of the tween + /// If TRUE (default), rich text will be interpreted correctly while animated, + /// otherwise all tags will be considered as normal text + /// The type of scramble mode to use, if any + /// A string containing the characters to use for scrambling. + /// Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters. + /// Leave it to NULL (default) to use default ones + public static TweenerCore DOText(this Text target, string endValue, float duration, bool richTextEnabled = true, ScrambleMode scrambleMode = ScrambleMode.None, string scrambleChars = null) + { + if (endValue == null) { + if (Debugger.logPriority > 0) Debugger.LogWarning("You can't pass a NULL string to DOText: an empty string will be used instead to avoid errors"); + endValue = ""; + } + TweenerCore t = DOTween.To(() => target.text, x => target.text = x, endValue, duration); + t.SetOptions(richTextEnabled, scrambleMode, scrambleChars) + .SetTarget(target); + return t; + } + + #endregion + + #region Blendables + + #region Graphic + + /// Tweens a Graphic's color to the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the Graphic as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this Graphic target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #region Image + + /// Tweens a Image's color to the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the Image as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this Image target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #region Text + + /// Tweens a Text's color BY the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this Text target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #endregion + + #region Shapes + + /// Tweens a RectTransform's anchoredPosition so that it draws a circle around the given center. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations. + /// IMPORTANT: SetFrom(value) requires a instead of a float, where the X property represents the "from degrees value" + /// Circle-center/pivot around which to rotate (in UI anchoredPosition coordinates) + /// The end value degrees to reach (to rotate counter-clockwise pass a negative value) + /// The duration of the tween + /// If TRUE the coordinates will be considered as relative to the target's current anchoredPosition + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOShapeCircle( + this RectTransform target, Vector2 center, float endValueDegrees, float duration, bool relativeCenter = false, bool snapping = false + ) + { + TweenerCore t = DOTween.To( + CirclePlugin.Get(), () => target.anchoredPosition, x => target.anchoredPosition = x, center, duration + ); + t.SetOptions(endValueDegrees, relativeCenter, snapping).SetTarget(target); + return t; + } + + #endregion + + #endregion + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + public static class Utils + { + /// + /// Converts the anchoredPosition of the first RectTransform to the second RectTransform, + /// taking into consideration offset, anchors and pivot, and returns the new anchoredPosition + /// + public static Vector2 SwitchToRectTransform(RectTransform from, RectTransform to) + { + Vector2 localPoint; + Vector2 fromPivotDerivedOffset = new Vector2(from.rect.width * 0.5f + from.rect.xMin, from.rect.height * 0.5f + from.rect.yMin); + Vector2 screenP = RectTransformUtility.WorldToScreenPoint(null, from.position); + screenP += fromPivotDerivedOffset; + RectTransformUtility.ScreenPointToLocalPointInRectangle(to, screenP, null, out localPoint); + Vector2 pivotDerivedOffset = new Vector2(to.rect.width * 0.5f + to.rect.xMin, to.rect.height * 0.5f + to.rect.yMin); + return to.anchoredPosition + localPoint - pivotDerivedOffset; + } + } + } +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs.meta new file mode 100644 index 00000000..60d55eff --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a060394c03331a64392db53a10e7f2d1 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs new file mode 100644 index 00000000..8f818ba5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs @@ -0,0 +1,389 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +using System; +using UnityEngine; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; +//#if UNITY_2018_1_OR_NEWER && (NET_4_6 || NET_STANDARD_2_0) +//using Task = System.Threading.Tasks.Task; +//#endif + +#pragma warning disable 1591 +namespace DG.Tweening +{ + /// + /// Shortcuts/functions that are not strictly related to specific Modules + /// but are available only on some Unity versions + /// + public static class DOTweenModuleUnityVersion + { + #region Material + + /// Tweens a Material's color using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this Material target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + /// Tweens a Material's named color property using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to use + /// The name of the material property to tween (like _Tint or _SpecColor) + /// The duration of the tween + public static Sequence DOGradientColor(this Material target, Gradient gradient, string property, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.SetColor(property, c.color); + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, property, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + #endregion + + #region CustomYieldInstructions + + /// + /// Returns a that waits until the tween is killed or complete. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForCompletion(true); + /// + public static CustomYieldInstruction WaitForCompletion(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForCompletion(t); + } + + /// + /// Returns a that waits until the tween is killed or rewinded. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForRewind(); + /// + public static CustomYieldInstruction WaitForRewind(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForRewind(t); + } + + /// + /// Returns a that waits until the tween is killed. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForKill(); + /// + public static CustomYieldInstruction WaitForKill(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForKill(t); + } + + /// + /// Returns a that waits until the tween is killed or has gone through the given amount of loops. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForElapsedLoops(2); + /// + /// Elapsed loops to wait for + public static CustomYieldInstruction WaitForElapsedLoops(this Tween t, int elapsedLoops, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForElapsedLoops(t, elapsedLoops); + } + + /// + /// Returns a that waits until the tween is killed + /// or has reached the given time position (loops included, delays excluded). + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForPosition(2.5f); + /// + /// Position (loops included, delays excluded) to wait for + public static CustomYieldInstruction WaitForPosition(this Tween t, float position, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForPosition(t, position); + } + + /// + /// Returns a that waits until the tween is killed or started + /// (meaning when the tween is set in a playing state the first time, after any eventual delay). + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForStart(); + /// + public static CustomYieldInstruction WaitForStart(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForStart(t); + } + + #endregion + +#if UNITY_2018_1_OR_NEWER + #region Unity 2018.1 or Newer + + #region Material + + /// Tweens a Material's named texture offset property with the given ID to the given value. + /// Also stores the material as the tween's target so it can be used for filtered operations + /// The end value to reach + /// The ID of the material property to tween (also called nameID in Unity's manual) + /// The duration of the tween + public static TweenerCore DOOffset(this Material target, Vector2 endValue, int propertyID, float duration) + { + if (!target.HasProperty(propertyID)) { + if (Debugger.logPriority > 0) Debugger.LogMissingMaterialProperty(propertyID); + return null; + } + TweenerCore t = DOTween.To(() => target.GetTextureOffset(propertyID), x => target.SetTextureOffset(propertyID, x), endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Material's named texture scale property with the given ID to the given value. + /// Also stores the material as the tween's target so it can be used for filtered operations + /// The end value to reach + /// The ID of the material property to tween (also called nameID in Unity's manual) + /// The duration of the tween + public static TweenerCore DOTiling(this Material target, Vector2 endValue, int propertyID, float duration) + { + if (!target.HasProperty(propertyID)) { + if (Debugger.logPriority > 0) Debugger.LogMissingMaterialProperty(propertyID); + return null; + } + TweenerCore t = DOTween.To(() => target.GetTextureScale(propertyID), x => target.SetTextureScale(propertyID, x), endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region .NET 4.6 or Newer + +#if UNITY_2018_1_OR_NEWER && (NET_4_6 || NET_STANDARD_2_0) + + #region Async Instructions + + /// + /// Returns an async that waits until the tween is killed or complete. + /// It can be used inside an async operation. + /// Example usage:await myTween.WaitForCompletion(); + /// + public static async System.Threading.Tasks.Task AsyncWaitForCompletion(this Tween t) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return; + } + while (t.active && !t.IsComplete()) await System.Threading.Tasks.Task.Yield(); + } + + /// + /// Returns an async that waits until the tween is killed or rewinded. + /// It can be used inside an async operation. + /// Example usage:await myTween.AsyncWaitForRewind(); + /// + public static async System.Threading.Tasks.Task AsyncWaitForRewind(this Tween t) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return; + } + while (t.active && (!t.playedOnce || t.position * (t.CompletedLoops() + 1) > 0)) await System.Threading.Tasks.Task.Yield(); + } + + /// + /// Returns an async that waits until the tween is killed. + /// It can be used inside an async operation. + /// Example usage:await myTween.AsyncWaitForKill(); + /// + public static async System.Threading.Tasks.Task AsyncWaitForKill(this Tween t) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return; + } + while (t.active) await System.Threading.Tasks.Task.Yield(); + } + + /// + /// Returns an async that waits until the tween is killed or has gone through the given amount of loops. + /// It can be used inside an async operation. + /// Example usage:await myTween.AsyncWaitForElapsedLoops(); + /// + /// Elapsed loops to wait for + public static async System.Threading.Tasks.Task AsyncWaitForElapsedLoops(this Tween t, int elapsedLoops) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return; + } + while (t.active && t.CompletedLoops() < elapsedLoops) await System.Threading.Tasks.Task.Yield(); + } + + /// + /// Returns an async that waits until the tween is killed or started + /// (meaning when the tween is set in a playing state the first time, after any eventual delay). + /// It can be used inside an async operation. + /// Example usage:await myTween.AsyncWaitForPosition(); + /// + /// Position (loops included, delays excluded) to wait for + public static async System.Threading.Tasks.Task AsyncWaitForPosition(this Tween t, float position) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return; + } + while (t.active && t.position * (t.CompletedLoops() + 1) < position) await System.Threading.Tasks.Task.Yield(); + } + + /// + /// Returns an async that waits until the tween is killed. + /// It can be used inside an async operation. + /// Example usage:await myTween.AsyncWaitForKill(); + /// + public static async System.Threading.Tasks.Task AsyncWaitForStart(this Tween t) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return; + } + while (t.active && !t.playedOnce) await System.Threading.Tasks.Task.Yield(); + } + + #endregion +#endif + + #endregion + + #endregion +#endif + } + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ CLASSES █████████████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + public static class DOTweenCYInstruction + { + public class WaitForCompletion : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && !t.IsComplete(); + }} + readonly Tween t; + public WaitForCompletion(Tween tween) + { + t = tween; + } + } + + public class WaitForRewind : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && (!t.playedOnce || t.position * (t.CompletedLoops() + 1) > 0); + }} + readonly Tween t; + public WaitForRewind(Tween tween) + { + t = tween; + } + } + + public class WaitForKill : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active; + }} + readonly Tween t; + public WaitForKill(Tween tween) + { + t = tween; + } + } + + public class WaitForElapsedLoops : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && t.CompletedLoops() < elapsedLoops; + }} + readonly Tween t; + readonly int elapsedLoops; + public WaitForElapsedLoops(Tween tween, int elapsedLoops) + { + t = tween; + this.elapsedLoops = elapsedLoops; + } + } + + public class WaitForPosition : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && t.position * (t.CompletedLoops() + 1) < position; + }} + readonly Tween t; + readonly float position; + public WaitForPosition(Tween tween, float position) + { + t = tween; + this.position = position; + } + } + + public class WaitForStart : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && !t.playedOnce; + }} + readonly Tween t; + public WaitForStart(Tween tween) + { + t = tween; + } + } + } +} diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs.meta new file mode 100644 index 00000000..290189f5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63c02322328255542995bd02b47b0457 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs new file mode 100644 index 00000000..12a365d4 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs @@ -0,0 +1,167 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +using System; +using System.Reflection; +using UnityEngine; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Core.PathCore; +using DG.Tweening.Plugins.Options; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + /// + /// Utility functions that deal with available Modules. + /// Modules defines: + /// - DOTAUDIO + /// - DOTPHYSICS + /// - DOTPHYSICS2D + /// - DOTSPRITE + /// - DOTUI + /// Extra defines set and used for implementation of external assets: + /// - DOTWEEN_TMP ► TextMesh Pro + /// - DOTWEEN_TK2D ► 2D Toolkit + /// + public static class DOTweenModuleUtils + { + static bool _initialized; + + #region Reflection + + /// + /// Called via Reflection by DOTweenComponent on Awake + /// +#if UNITY_2018_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + public static void Init() + { + if (_initialized) return; + + _initialized = true; + DOTweenExternalCommand.SetOrientationOnPath += Physics.SetOrientationOnPath; + +#if UNITY_EDITOR +#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1 + UnityEditor.EditorApplication.playmodeStateChanged += PlaymodeStateChanged; +#else + UnityEditor.EditorApplication.playModeStateChanged += PlaymodeStateChanged; +#endif +#endif + } + +#if UNITY_2018_1_OR_NEWER +#pragma warning disable + [UnityEngine.Scripting.Preserve] + // Just used to preserve methods when building, never called + static void Preserver() + { + Assembly[] loadedAssemblies = AppDomain.CurrentDomain.GetAssemblies(); + MethodInfo mi = typeof(MonoBehaviour).GetMethod("Stub"); + } +#pragma warning restore +#endif + + #endregion + +#if UNITY_EDITOR + // Fires OnApplicationPause in DOTweenComponent even when Editor is paused (otherwise it's only fired at runtime) +#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1 + static void PlaymodeStateChanged() + #else + static void PlaymodeStateChanged(UnityEditor.PlayModeStateChange state) +#endif + { + if (DOTween.instance == null) return; + DOTween.instance.OnApplicationPause(UnityEditor.EditorApplication.isPaused); + } +#endif + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + public static class Physics + { + // Called via DOTweenExternalCommand callback + public static void SetOrientationOnPath(PathOptions options, Tween t, Quaternion newRot, Transform trans) + { +#if true // PHYSICS_MARKER + if (options.isRigidbody) ((Rigidbody)t.target).rotation = newRot; + else trans.rotation = newRot; +#else + trans.rotation = newRot; +#endif + } + + // Returns FALSE if the DOTween's Physics2D Module is disabled, or if there's no Rigidbody2D attached + public static bool HasRigidbody2D(Component target) + { +#if true // PHYSICS2D_MARKER + return target.GetComponent() != null; +#else + return false; +#endif + } + + #region Called via Reflection + + + // Called via Reflection by DOTweenPathInspector + // Returns FALSE if the DOTween's Physics Module is disabled, or if there's no rigidbody attached +#if UNITY_2018_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + public static bool HasRigidbody(Component target) + { +#if true // PHYSICS_MARKER + return target.GetComponent() != null; +#else + return false; +#endif + } + + // Called via Reflection by DOTweenPath +#if UNITY_2018_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + public static TweenerCore CreateDOTweenPathTween( + MonoBehaviour target, bool tweenRigidbody, bool isLocal, Path path, float duration, PathMode pathMode + ){ + TweenerCore t = null; + bool rBodyFoundAndTweened = false; +#if true // PHYSICS_MARKER + if (tweenRigidbody) { + Rigidbody rBody = target.GetComponent(); + if (rBody != null) { + rBodyFoundAndTweened = true; + t = isLocal + ? rBody.DOLocalPath(path, duration, pathMode) + : rBody.DOPath(path, duration, pathMode); + } + } +#endif +#if true // PHYSICS2D_MARKER + if (!rBodyFoundAndTweened && tweenRigidbody) { + Rigidbody2D rBody2D = target.GetComponent(); + if (rBody2D != null) { + rBodyFoundAndTweened = true; + t = isLocal + ? rBody2D.DOLocalPath(path, duration, pathMode) + : rBody2D.DOPath(path, duration, pathMode); + } + } +#endif + if (!rBodyFoundAndTweened) { + t = isLocal + ? target.transform.DOLocalPath(path, duration, pathMode) + : target.transform.DOPath(path, duration, pathMode); + } + return t; + } + + #endregion + } + } +} diff --git a/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs.meta b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs.meta new file mode 100644 index 00000000..ab62186c --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7bcaf917d9cf5b84090421a5a2abe42e +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTween/readme.txt b/Assets/Plugins/Demigiant/DOTween/readme.txt new file mode 100644 index 00000000..37ff7ef5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/readme.txt @@ -0,0 +1,29 @@ +DOTween and DOTween Pro are copyright (c) 2014-2018 Daniele Giardini - Demigiant + +// IMPORTANT!!! ///////////////////////////////////////////// +// Upgrading DOTween from versions older than 1.2.000 /////// +// (or DOTween Pro older than 1.0.000) ////////////////////// +------------------------------------------------------------- +If you're upgrading your project from a version of DOTween older than 1.2.000 (or DOTween Pro older than 1.0.000) please follow these instructions carefully. +1) Import the new version in the same folder as the previous one, overwriting old files. A lot of errors will appear but don't worry +2) Close and reopen Unity (and your project). This is fundamental: skipping this step will cause a bloodbath +3) Open DOTween's Utility Panel (Tools > Demigiant > DOTween Utility Panel) if it doesn't open automatically, then press "Setup DOTween...": this will run the upgrade setup +4) From the Add/Remove Modules panel that opens, activate/deactivate Modules for Unity systems and for external assets (Pro version only) + +// GET STARTED ////////////////////////////////////////////// + +- After importing a new DOTween update, select DOTween's Utility Panel from the "Tools/Demigiant" menu (if it doesn't open automatically) and press the "Setup DOTween..." button to activate/deactivate Modules. You can also access a Preferences Tab from there to choose default settings for DOTween. +- In your code, add "using DG.Tweening" to each class where you want to use DOTween. +- You're ready to tween. Check out the links below for full documentation and license info. + + +// LINKS /////////////////////////////////////////////////////// + +DOTween website (documentation, examples, etc): http://dotween.demigiant.com +DOTween license: http://dotween.demigiant.com/license.php +DOTween repository (Google Code): https://code.google.com/p/dotween/ +Demigiant website (documentation, examples, etc): http://www.demigiant.com + +// NOTES ////////////////////////////////////////////////////// + +- DOTween's Utility Panel can be found under "Tools > Demigiant > DOTween Utility Panel" and also contains other useful options, plus a tab to set DOTween's preferences \ No newline at end of file diff --git a/Assets/Plugins/Demigiant/DOTween/readme.txt.meta b/Assets/Plugins/Demigiant/DOTween/readme.txt.meta new file mode 100644 index 00000000..37991656 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTween/readme.txt.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: fccfc62abf2eb0a4db614853430894fd +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro.meta b/Assets/Plugins/Demigiant/DOTweenPro.meta new file mode 100644 index 00000000..659537cd --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: af55cfd0e7084ab4884c5a4f29b62d9f +labels: +- Tween +- Tweening +- Animation +- HOTween +- Paths +- VisualScripting +- VisualEditor +- iTween +- DFTween +- LeanTween +- Ease +- Easing +- Shake +- Punch +- 2DToolkit +- TextMeshPro +- Text +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenAnimation.cs b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenAnimation.cs new file mode 100644 index 00000000..c7e7b215 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenAnimation.cs @@ -0,0 +1,917 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2015/03/12 15:55 + +using System; +using System.Collections.Generic; +using DG.Tweening.Core; +using UnityEngine; +#if true // UI_MARKER +using UnityEngine.UI; +#endif +#if false // TEXTMESHPRO_MARKER +using TMPro; +#endif + +#pragma warning disable 1591 +namespace DG.Tweening +{ + /// + /// Attach this to a GameObject to create a tween + /// + [AddComponentMenu("DOTween/DOTween Animation")] + public class DOTweenAnimation : ABSAnimationComponent + { + public enum AnimationType + { + None, + Move, LocalMove, + Rotate, LocalRotate, + Scale, + Color, Fade, + Text, + PunchPosition, PunchRotation, PunchScale, + ShakePosition, ShakeRotation, ShakeScale, + CameraAspect, CameraBackgroundColor, CameraFieldOfView, CameraOrthoSize, CameraPixelRect, CameraRect, + UIWidthHeight, + FillAmount + } + + public enum TargetType + { + Unset, + + Camera, + CanvasGroup, + Image, + Light, + RectTransform, + Renderer, SpriteRenderer, + Rigidbody, Rigidbody2D, + Text, + Transform, + + tk2dBaseSprite, + tk2dTextMesh, + + TextMeshPro, + TextMeshProUGUI + } + + #region EVENTS - EDITOR-ONLY + + /// Used internally by the editor + public static event Action OnReset; + static void Dispatch_OnReset(DOTweenAnimation anim) { if (OnReset != null) OnReset(anim); } + + #endregion + + public bool targetIsSelf = true; // If FALSE allows to set the target manually + public GameObject targetGO = null; // Used in case targetIsSelf is FALSE + // If FALSE always uses the GO containing this DOTweenAnimation (and not the one containing the target) as DOTween's SetTarget target + public bool tweenTargetIsTargetGO = true; + + public float delay; + public float duration = 1; + public Ease easeType = Ease.OutQuad; + public AnimationCurve easeCurve = new AnimationCurve(new Keyframe(0, 0), new Keyframe(1, 1)); + public LoopType loopType = LoopType.Restart; + public int loops = 1; + public string id = ""; + public bool isRelative; + public bool isFrom; + public bool isIndependentUpdate = false; + public bool autoKill = true; + public bool autoGenerate = true; // If TRUE automatically creates the tween at startup + + public bool isActive = true; + public bool isValid; + public Component target; + public AnimationType animationType; + public TargetType targetType; + public TargetType forcedTargetType; // Used when choosing between multiple targets + public bool autoPlay = true; + public bool useTargetAsV3; + + public float endValueFloat; + public Vector3 endValueV3; + public Vector2 endValueV2; + public Color endValueColor = new Color(1, 1, 1, 1); + public string endValueString = ""; + public Rect endValueRect = new Rect(0, 0, 0, 0); + public Transform endValueTransform; + + public bool optionalBool0, optionalBool1; + public float optionalFloat0; + public int optionalInt0; + public RotateMode optionalRotationMode = RotateMode.Fast; + public ScrambleMode optionalScrambleMode = ScrambleMode.None; + public ShakeRandomnessMode optionalShakeRandomnessMode = ShakeRandomnessMode.Full; + public string optionalString; + + bool _tweenAutoGenerationCalled; // TRUE after the tweens have been autoGenerated + int _playCount = -1; // Used when calling DOPlayNext + readonly List _tmpTweens = new List(); + + #region Unity Methods + + void Awake() + { + if (!isActive || !autoGenerate) return; + + if (animationType != AnimationType.Move || !useTargetAsV3) { + // Don't create tweens if we're using a RectTransform as a Move target, + // because that will work only inside Start + CreateTween(false, autoPlay); + _tweenAutoGenerationCalled = true; + } + } + + void Start() + { + if (_tweenAutoGenerationCalled || !isActive || !autoGenerate) return; + + CreateTween(false, autoPlay); + _tweenAutoGenerationCalled = true; + } + + void Reset() + { + Dispatch_OnReset(this); + } + + void OnDestroy() + { + if (tween != null && tween.active) tween.Kill(); + tween = null; + } + + /// + /// Creates/recreates the tween without playing it, but first rewinding and killing the existing one if present. + /// + public void RewindThenRecreateTween() + { + if (tween != null && tween.active) tween.Rewind(); + CreateTween(true, false); + } + /// + /// Creates/recreates the tween and plays it, first rewinding and killing the existing one if present. + /// + public void RewindThenRecreateTweenAndPlay() + { + if (tween != null && tween.active) tween.Rewind(); + CreateTween(true, true); + } + /// + /// Creates/recreates the tween from its target's current value without playing it, but first killing the existing one if present. + /// + public void RecreateTween() + { CreateTween(true, false); } + /// + /// Creates/recreates the tween from its target's current value and plays it, first killing the existing one if present. + /// + public void RecreateTweenAndPlay() + { CreateTween(true, true); } + // Used also by DOTweenAnimationInspector when applying runtime changes and restarting + /// + /// Creates the tween manually (called automatically if AutoGenerate is set in the Inspector) + /// from its target's current value. + /// + /// If TRUE and an existing tween was already created (and not killed), kills it and recreates it with the current + /// parameters. Otherwise, if a tween already exists, does nothing. + /// If TRUE also plays the tween, otherwise only creates it + public void CreateTween(bool regenerateIfExists = false, bool andPlay = true) + { + if (!isValid) { + if (regenerateIfExists) { // Called manually: warn users + Debug.LogWarning(string.Format("{0} :: This DOTweenAnimation isn't valid and its tween won't be created", this.gameObject.name), this.gameObject); + } + return; + } + if (tween != null) { + if (tween.active) { + if (regenerateIfExists) tween.Kill(); + else return; + } + tween = null; + } + +// if (target == null) { +// Debug.LogWarning(string.Format("{0} :: This DOTweenAnimation's target is NULL, because the animation was created with a DOTween Pro version older than 0.9.255. To fix this, exit Play mode then simply select this object, and it will update automatically", this.gameObject.name), this.gameObject); +// return; +// } + + GameObject tweenGO = GetTweenGO(); + if (target == null || tweenGO == null) { + if (targetIsSelf && target == null) { + // Old error caused during upgrade from DOTween Pro 0.9.255 + Debug.LogWarning(string.Format("{0} :: This DOTweenAnimation's target is NULL, because the animation was created with a DOTween Pro version older than 0.9.255. To fix this, exit Play mode then simply select this object, and it will update automatically", this.gameObject.name), this.gameObject); + } else { + // Missing non-self target + Debug.LogWarning(string.Format("{0} :: This DOTweenAnimation's target/GameObject is unset: the tween will not be created.", this.gameObject.name), this.gameObject); + } + return; + } + + if (forcedTargetType != TargetType.Unset) targetType = forcedTargetType; + if (targetType == TargetType.Unset) { + // Legacy DOTweenAnimation (made with a version older than 0.9.450) without stored targetType > assign it now + targetType = TypeToDOTargetType(target.GetType()); + } + + switch (animationType) { + case AnimationType.None: + break; + case AnimationType.Move: + if (useTargetAsV3) { + isRelative = false; + if (endValueTransform == null) { + Debug.LogWarning(string.Format("{0} :: This tween's TO target is NULL, a Vector3 of (0,0,0) will be used instead", this.gameObject.name), this.gameObject); + endValueV3 = Vector3.zero; + } else { +#if true // UI_MARKER + if (targetType == TargetType.RectTransform) { + RectTransform endValueT = endValueTransform as RectTransform; + if (endValueT == null) { + Debug.LogWarning(string.Format("{0} :: This tween's TO target should be a RectTransform, a Vector3 of (0,0,0) will be used instead", this.gameObject.name), this.gameObject); + endValueV3 = Vector3.zero; + } else { + RectTransform rTarget = target as RectTransform; + if (rTarget == null) { + Debug.LogWarning(string.Format("{0} :: This tween's target and TO target are not of the same type. Please reassign the values", this.gameObject.name), this.gameObject); + } else { + // Problem: doesn't work inside Awake (ararargh!) + endValueV3 = DOTweenModuleUI.Utils.SwitchToRectTransform(endValueT, rTarget); + } + } + } else +#endif + endValueV3 = endValueTransform.position; + } + } + switch (targetType) { + case TargetType.Transform: + tween = ((Transform)target).DOMove(endValueV3, duration, optionalBool0); + break; + case TargetType.RectTransform: +#if true // UI_MARKER + tween = ((RectTransform)target).DOAnchorPos3D(endValueV3, duration, optionalBool0); +#else + tween = ((Transform)target).DOMove(endValueV3, duration, optionalBool0); +#endif + break; + case TargetType.Rigidbody: +#if true // PHYSICS_MARKER + tween = ((Rigidbody)target).DOMove(endValueV3, duration, optionalBool0); +#else + tween = ((Transform)target).DOMove(endValueV3, duration, optionalBool0); +#endif + break; + case TargetType.Rigidbody2D: +#if true // PHYSICS2D_MARKER + tween = ((Rigidbody2D)target).DOMove(endValueV3, duration, optionalBool0); +#else + tween = ((Transform)target).DOMove(endValueV3, duration, optionalBool0); +#endif + break; + } + break; + case AnimationType.LocalMove: + tween = tweenGO.transform.DOLocalMove(endValueV3, duration, optionalBool0); + break; + case AnimationType.Rotate: + switch (targetType) { + case TargetType.Transform: + tween = ((Transform)target).DORotate(endValueV3, duration, optionalRotationMode); + break; + case TargetType.Rigidbody: +#if true // PHYSICS_MARKER + tween = ((Rigidbody)target).DORotate(endValueV3, duration, optionalRotationMode); +#else + tween = ((Transform)target).DORotate(endValueV3, duration, optionalRotationMode); +#endif + break; + case TargetType.Rigidbody2D: +#if true // PHYSICS2D_MARKER + tween = ((Rigidbody2D)target).DORotate(endValueFloat, duration); +#else + tween = ((Transform)target).DORotate(endValueV3, duration, optionalRotationMode); +#endif + break; + } + break; + case AnimationType.LocalRotate: + tween = tweenGO.transform.DOLocalRotate(endValueV3, duration, optionalRotationMode); + break; + case AnimationType.Scale: + switch (targetType) { +#if false // TK2D_MARKER + case TargetType.tk2dTextMesh: + tween = ((tk2dTextMesh)target).DOScale(optionalBool0 ? new Vector3(endValueFloat, endValueFloat, endValueFloat) : endValueV3, duration); + break; + case TargetType.tk2dBaseSprite: + tween = ((tk2dBaseSprite)target).DOScale(optionalBool0 ? new Vector3(endValueFloat, endValueFloat, endValueFloat) : endValueV3, duration); + break; +#endif + default: + tween = tweenGO.transform.DOScale(optionalBool0 ? new Vector3(endValueFloat, endValueFloat, endValueFloat) : endValueV3, duration); + break; + } + break; +#if true // UI_MARKER + case AnimationType.UIWidthHeight: + tween = ((RectTransform)target).DOSizeDelta(optionalBool0 ? new Vector2(endValueFloat, endValueFloat) : endValueV2, duration); + break; + case AnimationType.FillAmount: + tween = ((Image)target).DOFillAmount(endValueFloat, duration); + break; +#endif + case AnimationType.Color: + isRelative = false; + switch (targetType) { + case TargetType.Renderer: + tween = ((Renderer)target).material.DOColor(endValueColor, duration); + break; + case TargetType.Light: + tween = ((Light)target).DOColor(endValueColor, duration); + break; +#if true // SPRITE_MARKER + case TargetType.SpriteRenderer: + tween = ((SpriteRenderer)target).DOColor(endValueColor, duration); + break; +#endif +#if true // UI_MARKER + case TargetType.Image: + tween = ((Graphic)target).DOColor(endValueColor, duration); + break; + case TargetType.Text: + tween = ((Text)target).DOColor(endValueColor, duration); + break; +#endif +#if false // TK2D_MARKER + case TargetType.tk2dTextMesh: + tween = ((tk2dTextMesh)target).DOColor(endValueColor, duration); + break; + case TargetType.tk2dBaseSprite: + tween = ((tk2dBaseSprite)target).DOColor(endValueColor, duration); + break; +#endif +#if false // TEXTMESHPRO_MARKER + case TargetType.TextMeshProUGUI: + tween = ((TextMeshProUGUI)target).DOColor(endValueColor, duration); + break; + case TargetType.TextMeshPro: + tween = ((TextMeshPro)target).DOColor(endValueColor, duration); + break; +#endif + } + break; + case AnimationType.Fade: + isRelative = false; + switch (targetType) { + case TargetType.Renderer: + tween = ((Renderer)target).material.DOFade(endValueFloat, duration); + break; + case TargetType.Light: + tween = ((Light)target).DOIntensity(endValueFloat, duration); + break; +#if true // SPRITE_MARKER + case TargetType.SpriteRenderer: + tween = ((SpriteRenderer)target).DOFade(endValueFloat, duration); + break; +#endif +#if true // UI_MARKER + case TargetType.Image: + tween = ((Graphic)target).DOFade(endValueFloat, duration); + break; + case TargetType.Text: + tween = ((Text)target).DOFade(endValueFloat, duration); + break; + case TargetType.CanvasGroup: + tween = ((CanvasGroup)target).DOFade(endValueFloat, duration); + break; +#endif +#if false // TK2D_MARKER + case TargetType.tk2dTextMesh: + tween = ((tk2dTextMesh)target).DOFade(endValueFloat, duration); + break; + case TargetType.tk2dBaseSprite: + tween = ((tk2dBaseSprite)target).DOFade(endValueFloat, duration); + break; +#endif +#if false // TEXTMESHPRO_MARKER + case TargetType.TextMeshProUGUI: + tween = ((TextMeshProUGUI)target).DOFade(endValueFloat, duration); + break; + case TargetType.TextMeshPro: + tween = ((TextMeshPro)target).DOFade(endValueFloat, duration); + break; +#endif + } + break; + case AnimationType.Text: +#if true // UI_MARKER + switch (targetType) { + case TargetType.Text: + tween = ((Text)target).DOText(endValueString, duration, optionalBool0, optionalScrambleMode, optionalString); + break; + } +#endif +#if false // TK2D_MARKER + switch (targetType) { + case TargetType.tk2dTextMesh: + tween = ((tk2dTextMesh)target).DOText(endValueString, duration, optionalBool0, optionalScrambleMode, optionalString); + break; + } +#endif +#if false // TEXTMESHPRO_MARKER + switch (targetType) { + case TargetType.TextMeshProUGUI: + tween = ((TextMeshProUGUI)target).DOText(endValueString, duration, optionalBool0, optionalScrambleMode, optionalString); + break; + case TargetType.TextMeshPro: + tween = ((TextMeshPro)target).DOText(endValueString, duration, optionalBool0, optionalScrambleMode, optionalString); + break; + } +#endif + break; + case AnimationType.PunchPosition: + switch (targetType) { + case TargetType.Transform: + tween = ((Transform)target).DOPunchPosition(endValueV3, duration, optionalInt0, optionalFloat0, optionalBool0); + break; +#if true // UI_MARKER + case TargetType.RectTransform: + tween = ((RectTransform)target).DOPunchAnchorPos(endValueV3, duration, optionalInt0, optionalFloat0, optionalBool0); + break; +#endif + } + break; + case AnimationType.PunchScale: + tween = tweenGO.transform.DOPunchScale(endValueV3, duration, optionalInt0, optionalFloat0); + break; + case AnimationType.PunchRotation: + tween = tweenGO.transform.DOPunchRotation(endValueV3, duration, optionalInt0, optionalFloat0); + break; + case AnimationType.ShakePosition: + switch (targetType) { + case TargetType.Transform: + tween = ((Transform)target).DOShakePosition(duration, endValueV3, optionalInt0, optionalFloat0, optionalBool0, optionalBool1, optionalShakeRandomnessMode); + break; +#if true // UI_MARKER + case TargetType.RectTransform: + tween = ((RectTransform)target).DOShakeAnchorPos(duration, endValueV3, optionalInt0, optionalFloat0, optionalBool0, optionalBool1, optionalShakeRandomnessMode); + break; +#endif + } + break; + case AnimationType.ShakeScale: + tween = tweenGO.transform.DOShakeScale(duration, endValueV3, optionalInt0, optionalFloat0, optionalBool1, optionalShakeRandomnessMode); + break; + case AnimationType.ShakeRotation: + tween = tweenGO.transform.DOShakeRotation(duration, endValueV3, optionalInt0, optionalFloat0, optionalBool1, optionalShakeRandomnessMode); + break; + case AnimationType.CameraAspect: + tween = ((Camera)target).DOAspect(endValueFloat, duration); + break; + case AnimationType.CameraBackgroundColor: + tween = ((Camera)target).DOColor(endValueColor, duration); + break; + case AnimationType.CameraFieldOfView: + tween = ((Camera)target).DOFieldOfView(endValueFloat, duration); + break; + case AnimationType.CameraOrthoSize: + tween = ((Camera)target).DOOrthoSize(endValueFloat, duration); + break; + case AnimationType.CameraPixelRect: + tween = ((Camera)target).DOPixelRect(endValueRect, duration); + break; + case AnimationType.CameraRect: + tween = ((Camera)target).DORect(endValueRect, duration); + break; + } + + if (tween == null) return; + + // Created + + if (isFrom) { + ((Tweener)tween).From(isRelative); + } else { + tween.SetRelative(isRelative); + } + GameObject setTarget = GetTweenTarget(); + tween.SetTarget(setTarget).SetDelay(delay).SetLoops(loops, loopType).SetAutoKill(autoKill) + .OnKill(()=> tween = null); + if (isSpeedBased) tween.SetSpeedBased(); + if (easeType == Ease.INTERNAL_Custom) tween.SetEase(easeCurve); + else tween.SetEase(easeType); + if (!string.IsNullOrEmpty(id)) tween.SetId(id); + tween.SetUpdate(isIndependentUpdate); + + if (hasOnStart) { + if (onStart != null) tween.OnStart(onStart.Invoke); + } else onStart = null; + if (hasOnPlay) { + if (onPlay != null) tween.OnPlay(onPlay.Invoke); + } else onPlay = null; + if (hasOnUpdate) { + if (onUpdate != null) tween.OnUpdate(onUpdate.Invoke); + } else onUpdate = null; + if (hasOnStepComplete) { + if (onStepComplete != null) tween.OnStepComplete(onStepComplete.Invoke); + } else onStepComplete = null; + if (hasOnComplete) { + if (onComplete != null) tween.OnComplete(onComplete.Invoke); + } else onComplete = null; + if (hasOnRewind) { + if (onRewind != null) tween.OnRewind(onRewind.Invoke); + } else onRewind = null; + + if (andPlay) tween.Play(); + else tween.Pause(); + + if (hasOnTweenCreated && onTweenCreated != null) onTweenCreated.Invoke(); + } + + #endregion + + #region Public Methods + + #region Special + + /// + /// Returns the tweens (if generated and not killed) created by all DOTweenAnimations on this gameObject, + /// in the same order as they appear in the Inspector (top to bottom). + /// Note that a tween is generated inside the Awake call (except RectTransform tweens which are generated inside Start), + /// so this method won't return them before that + /// + public List GetTweens() + { + List result = new List(); + DOTweenAnimation[] anims = this.GetComponents(); + foreach (DOTweenAnimation anim in anims) { + if (anim.tween != null && anim.tween.active) result.Add(anim.tween); + } + return result; + } + + /// + /// Sets the animation target (which must be of the same type of the one set in the Inspector). + /// This is useful if you want to change it BEFORE this + /// creates a tween, while after that it won't have any effect. + /// Consider that a creates its tween inside its Awake (except for special tweens), + /// so you will need to sure your code runs before this object's Awake (via ScriptExecutionOrder or enabling/disabling methods) + /// + /// + /// New target for the animation (must be of the same type of the previous one) + /// If TRUE also uses tweenTarget's gameObject when settings the target-ID of the tween + /// (which is used with DOPlay/DORestart/etc to apply the same operation on all tweens that have the same target-id). + /// You should usually leave this to TRUE if you change the target. + /// + public void SetAnimationTarget(Component tweenTarget, bool useTweenTargetGameObjectForGroupOperations = true) + { + TargetType newTargetType = TypeToDOTargetType(target.GetType()); + if (newTargetType != targetType) { + Debug.LogError("DOTweenAnimation ► SetAnimationTarget: the new target is of a different type from the one set in the Inspector"); + return; + } + target = tweenTarget; + targetGO = target.gameObject; + tweenTargetIsTargetGO = useTweenTargetGameObjectForGroupOperations; + } + + #endregion + + /// + /// Plays all tweens whose target-id is the same as the one set by this animation + /// + public override void DOPlay() + { + DOTween.Play(GetTweenTarget()); + } + + /// + /// Plays backwards all tweens whose target-id is the same as the one set by this animation + /// + public override void DOPlayBackwards() + { + DOTween.PlayBackwards(GetTweenTarget()); + } + + /// + /// Plays foward all tweens whose target-id is the same as the one set by this animation + /// + public override void DOPlayForward() + { + DOTween.PlayForward(GetTweenTarget()); + } + + /// + /// Pauses all tweens whose target-id is the same as the one set by this animation + /// + public override void DOPause() + { + DOTween.Pause(GetTweenTarget()); + } + + /// + /// Pauses/unpauses (depending on the current state) all tweens whose target-id is the same as the one set by this animation + /// + public override void DOTogglePause() + { + DOTween.TogglePause(GetTweenTarget()); + } + + /// + /// Rewinds all tweens created by this animation in the correct order + /// + public override void DORewind() + { + _playCount = -1; + // Rewind using Components order (in case there are multiple animations on the same property) + DOTweenAnimation[] anims = this.gameObject.GetComponents(); + for (int i = anims.Length - 1; i > -1; --i) { + Tween t = anims[i].tween; + if (t != null && t.IsInitialized()) anims[i].tween.Rewind(); + } + // DOTween.Rewind(GetTweenTarget()); + } + + /// + /// Restarts all tweens whose target-id is the same as the one set by this animation + /// + public override void DORestart() + { DORestart(false); } + /// + /// Restarts all tweens whose target-id is the same as the one set by this animation + /// + /// If TRUE, re-evaluates the tween's start and end values from its current position. + /// Set it to TRUE when spawning the same DOTweenAnimation in different positions (like when using a pooling system) + public override void DORestart(bool fromHere) + { + _playCount = -1; + if (tween == null) { + if (Debugger.logPriority > 1) Debugger.LogNullTween(tween); return; + } + if (fromHere && isRelative) ReEvaluateRelativeTween(); + DOTween.Restart(GetTweenTarget()); + } + + /// + /// Completes all tweens whose target-id is the same as the one set by this animation + /// + public override void DOComplete() + { + DOTween.Complete(GetTweenTarget()); + } + + /// + /// Sends to the given time (and pauses) all the tweens whose target-id is the one set by this animation + /// + /// Time to send the tween to + public override void DOGotoAndPause(float time) + { DOGoto(time, false); } + /// + /// Sends to the given time (and plays) all the tweens whose target-id is the one set by this animation + /// + /// Time to send the tween to + public override void DOGotoAndPlay(float time) + { DOGoto(time, true); } + void DOGoto(float time, bool andPlay) + { + _tmpTweens.Clear(); + DOTween.TweensByTarget(GetTweenTarget(), false, _tmpTweens); + int len = _tmpTweens.Count; + if (len == 0) { + Debugger.LogWarning((andPlay ? "DOGotoAndPlay" : "DoGotoAndPause") + " ► tween doesn't exist"); + } else { + for (int i = 0; i < _tmpTweens.Count; ++i) { + _tmpTweens[i].Goto(time, andPlay); + } + } + _tmpTweens.Clear(); + } + + /// + /// Kills all tweens whose target-id is the same as the one set by this animation + /// + public override void DOKill() + { + DOTween.Kill(GetTweenTarget()); + tween = null; + } + + #region Specifics + + /// + /// Plays all tweens with the given ID and whose target-id is the same as the one set by this animation + /// + public void DOPlayById(string id) + { + DOTween.Play(GetTweenTarget(), id); + } + /// + /// Plays all tweens with the given ID (regardless of their target gameObject) + /// + public void DOPlayAllById(string id) + { + DOTween.Play(id); + } + + /// + /// Pauses all tweens that with the given ID (regardless of their target gameObject) + /// + public void DOPauseAllById(string id) + { + DOTween.Pause(id); + } + + /// + /// Plays backwards all tweens with the given ID and whose target-id is the same as the one set by this animation + /// + public void DOPlayBackwardsById(string id) + { + DOTween.PlayBackwards(GetTweenTarget(), id); + } + /// + /// Plays backwards all tweens with the given ID (regardless of their target gameObject) + /// + public void DOPlayBackwardsAllById(string id) + { + DOTween.PlayBackwards(id); + } + + /// + /// Plays forward all tweens with the given ID and whose target-id is the same as the one set by this animation + /// + public void DOPlayForwardById(string id) + { + DOTween.PlayForward(GetTweenTarget(), id); + } + /// + /// Plays forward all tweens with the given ID (regardless of their target gameObject) + /// + public void DOPlayForwardAllById(string id) + { + DOTween.PlayForward(id); + } + + /// + /// Plays the next animation on this animation's gameObject (if any) + /// + public void DOPlayNext() + { + DOTweenAnimation[] anims = this.GetComponents(); + while (_playCount < anims.Length - 1) { + _playCount++; + DOTweenAnimation anim = anims[_playCount]; + if (anim != null && anim.tween != null && anim.tween.active && !anim.tween.IsPlaying() && !anim.tween.IsComplete()) { + anim.tween.Play(); + break; + } + } + } + + /// + /// Rewinds all tweens with the given ID and whose target-id is the same as the one set by this animation, + /// then plays the next animation on this animation's gameObject (if any) + /// + public void DORewindAndPlayNext() + { + _playCount = -1; + DOTween.Rewind(GetTweenTarget()); + DOPlayNext(); + } + + /// + /// Rewinds all tweens with the given ID (regardless of their target gameObject) + /// + public void DORewindAllById(string id) + { + _playCount = -1; + DOTween.Rewind(id); + } + + /// + /// Restarts all tweens with the given ID and whose target-id is the same as the one set by this animation + /// + public void DORestartById(string id) + { + _playCount = -1; + DOTween.Restart(GetTweenTarget(), id); + } + /// + /// Restarts all tweens with the given ID (regardless of their target gameObject) + /// + public void DORestartAllById(string id) + { + _playCount = -1; + DOTween.Restart(id); + } + + /// + /// Kills all tweens with the given ID and whose target-id is the same as the one set by this animation + /// + public void DOKillById(string id) + { + DOTween.Kill(GetTweenTarget(), id); + } + /// + /// Kills all tweens with the given ID (regardless of their target gameObject) + /// + public void DOKillAllById(string id) + { + DOTween.Kill(id); + } + + #endregion + + #region Internal (also used by Inspector) + + public static TargetType TypeToDOTargetType(Type t) + { + string str = t.ToString(); + int dotIndex = str.LastIndexOf("."); + if (dotIndex != -1) str = str.Substring(dotIndex + 1); + if (str.IndexOf("Renderer") != -1 && (str != "SpriteRenderer")) str = "Renderer"; +//#if true // PHYSICS_MARKER +// if (str == "Rigidbody") str = "Transform"; +//#endif +//#if true // PHYSICS2D_MARKER +// if (str == "Rigidbody2D") str = "Transform"; +//#endif +#if true // UI_MARKER +// if (str == "RectTransform") str = "Transform"; + if (str == "RawImage" || str == "Graphic") str = "Image"; // RawImages/Graphics are managed like Images for DOTweenAnimation (color and fade use Graphic target anyway) +#endif + return (TargetType)Enum.Parse(typeof(TargetType), str); + } + + // Editor preview system + /// + /// Previews the tween in the editor. Only for DOTween internal usage: don't use otherwise. + /// + public Tween CreateEditorPreview() + { + if (Application.isPlaying) return null; + + // CHANGE: first param switched to TRUE otherwise changing an animation and replaying in editor would still play old one + CreateTween(true, autoPlay); + return tween; + } + + #endregion + + #endregion + + #region Private + + /// + /// Returns the gameObject whose target component should be animated + /// + /// + GameObject GetTweenGO() + { + return targetIsSelf ? this.gameObject : targetGO; + } + + /// + /// Returns the GameObject which should be used/retrieved for SetTarget + /// + GameObject GetTweenTarget() + { + return targetIsSelf || !tweenTargetIsTargetGO ? this.gameObject : targetGO; + } + + // Re-evaluate relative position of path + void ReEvaluateRelativeTween() + { + GameObject tweenGO = GetTweenGO(); + if (tweenGO == null) { + Debug.LogWarning(string.Format("{0} :: This DOTweenAnimation's target/GameObject is unset: the tween will not be created.", this.gameObject.name), this.gameObject); + return; + } + if (animationType == AnimationType.Move) { + ((Tweener)tween).ChangeEndValue(tweenGO.transform.position + endValueV3, true); + } else if (animationType == AnimationType.LocalMove) { + ((Tweener)tween).ChangeEndValue(tweenGO.transform.localPosition + endValueV3, true); + } + } + + #endregion + } + + public static class DOTweenAnimationExtensions + { +// // Doesn't work on Win 8.1 +// public static bool IsSameOrSubclassOf(this Type t, Type tBase) +// { +// return t.IsSubclassOf(tBase) || t == tBase; +// } + + public static bool IsSameOrSubclassOf(this Component t) + { + return t is T; + } + } +} diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenAnimation.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenAnimation.cs.meta new file mode 100644 index 00000000..a10ceea2 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenAnimation.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d0390bd8b8ffd640b34fe25065ff1df +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeAudio.cs b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeAudio.cs new file mode 100644 index 00000000..c9df3968 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeAudio.cs @@ -0,0 +1,9 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2015/03/27 19:02 +// +// License Copyright (c) Daniele Giardini. +// This work is subject to the terms at http://dotween.demigiant.com/license.php + + +#if false // MODULE_MARKER +#endif diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeAudio.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeAudio.cs.meta new file mode 100644 index 00000000..32c1ec84 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeAudio.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1d1aa01bacf85c04ea18116651a7f0db +timeCreated: 1587116610 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeUnityExtended.cs b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeUnityExtended.cs new file mode 100644 index 00000000..c9df3968 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeUnityExtended.cs @@ -0,0 +1,9 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2015/03/27 19:02 +// +// License Copyright (c) Daniele Giardini. +// This work is subject to the terms at http://dotween.demigiant.com/license.php + + +#if false // MODULE_MARKER +#endif diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeUnityExtended.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeUnityExtended.cs.meta new file mode 100644 index 00000000..9cba4ea8 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenDeUnityExtended.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0a0cc3e90c4a6ea41bb14d7f35c577c3 +timeCreated: 1587116610 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML new file mode 100644 index 00000000..8179cfef --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML @@ -0,0 +1,80 @@ + + + + DOTweenPro + + + + + Restarts the tween + + + + + Restarts the tween + + If TRUE, re-evaluates the tween's start and end values from its current position. + Set it to TRUE when spawning the same DOTweenPath in different positions (like when using a pooling system) + + + + Attach this to a GameObject to create and assign a path to it + + + + Used internally by the editor + + + + Restarts the tween + + + + + Restarts the tween + + If TRUE, re-evaluates the tween's start and end values from its current position. + Set it to TRUE when spawning the same DOTweenPath in different positions (like when using a pooling system) + + + + Sends the tween to the given time then pauses it + + Time to send the tween to + + + + Sends the tween to the given time then plays it + + Time to send the tween to + + + + Kills all tweens (path/animations/etc.) with the given ID (regardless of their target gameObject) + + + + + Returns a list of points that are used to draw the path inside the editor, + or NULL if the path hasn't been initialized yet or if its tween has been killed + + + + + Tweens a Vector3 along a spiral. + EndValue represents the direction of the spiral + + + + + Spiral tween mode + + + + The spiral motion will expand outwards for the whole the tween + + + The spiral motion will expand outwards for half the tween and then will spiral back to the starting position + + + diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML.meta new file mode 100644 index 00000000..ddc78e5f --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: db7d7ef84c388bc4fbc3835d31a15306 +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll new file mode 100644 index 00000000..2a5250a3 Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll differ diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll.meta new file mode 100644 index 00000000..9ecbfd3c --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: aa0b1eebb5db27a419fa4564bbe5c9c5 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Any: + enabled: 1 + settings: {} + Editor: + enabled: 0 + settings: + DefaultValueInitialized: true + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenProShortcuts.cs b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenProShortcuts.cs new file mode 100644 index 00000000..12ee7ef1 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenProShortcuts.cs @@ -0,0 +1,90 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +using System; +using DG.Tweening.Core; +using DG.Tweening.Plugins; +using UnityEngine; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenProShortcuts + { + static DOTweenProShortcuts() + { + // Create stub instances of custom plugins, in order to allow IL2CPP to understand they must be included in the build +#pragma warning disable 219 + SpiralPlugin stub = new SpiralPlugin(); +#pragma warning restore 219 + } + + #region Shortcuts + + #region Transform + + /// Tweens a Transform's localPosition in a spiral shape. + /// Also stores the transform as the tween's target so it can be used for filtered operations + /// The duration of the tween + /// The axis around which the spiral will rotate + /// The type of spiral movement + /// Speed of the rotations + /// Frequency of the rotation. Lower values lead to wider spirals + /// Indicates how much the tween should move along the spiral's axis + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOSpiral( + this Transform target, float duration, Vector3? axis = null, SpiralMode mode = SpiralMode.Expand, + float speed = 1, float frequency = 10, float depth = 0, bool snapping = false + ) { + if (Mathf.Approximately(speed, 0)) speed = 1; + if (axis == null || axis == Vector3.zero) axis = Vector3.forward; + + TweenerCore t = DOTween.To(SpiralPlugin.Get(), () => target.localPosition, x => target.localPosition = x, (Vector3)axis, duration) + .SetTarget(target); + + t.plugOptions.mode = mode; + t.plugOptions.speed = speed; + t.plugOptions.frequency = frequency; + t.plugOptions.depth = depth; + t.plugOptions.snapping = snapping; + return t; + } + + #endregion + +#if true // PHYSICS_MARKER + #region Rigidbody + + /// Tweens a Rigidbody's position in a spiral shape. + /// Also stores the transform as the tween's target so it can be used for filtered operations + /// The duration of the tween + /// The axis around which the spiral will rotate + /// The type of spiral movement + /// Speed of the rotations + /// Frequency of the rotation. Lower values lead to wider spirals + /// Indicates how much the tween should move along the spiral's axis + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOSpiral( + this Rigidbody target, float duration, Vector3? axis = null, SpiralMode mode = SpiralMode.Expand, + float speed = 1, float frequency = 10, float depth = 0, bool snapping = false + ) { + if (Mathf.Approximately(speed, 0)) speed = 1; + if (axis == null || axis == Vector3.zero) axis = Vector3.forward; + + TweenerCore t = DOTween.To(SpiralPlugin.Get(), () => target.position, target.MovePosition, (Vector3)axis, duration) + .SetTarget(target); + + t.plugOptions.mode = mode; + t.plugOptions.speed = speed; + t.plugOptions.frequency = frequency; + t.plugOptions.depth = depth; + t.plugOptions.snapping = snapping; + return t; + } + + #endregion +#endif + + #endregion + } +} diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenProShortcuts.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenProShortcuts.cs.meta new file mode 100644 index 00000000..bc6e8631 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenProShortcuts.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c3190a1a1c53f449926f6d5542b4ce5 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTextMeshPro.cs b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTextMeshPro.cs new file mode 100644 index 00000000..935bbee8 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTextMeshPro.cs @@ -0,0 +1,1037 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2015/03/27 19:02 +// +// License Copyright (c) Daniele Giardini. +// This work is subject to the terms at http://dotween.demigiant.com/license.php + + +#if false // MODULE_MARKER +using System; +using System.Globalization; +using System.Collections.Generic; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; +using UnityEngine; +using TMPro; +using Object = UnityEngine.Object; + +namespace DG.Tweening +{ + public enum TMPSkewSpanMode + { + /// Applies the skew as-is (like normal skew works): the longer the text-span the higher the last character will be + Default, + /// Applies the skew scaled by the size of the text-span: the max skew/displacement will be the given skew factor + AsMaxSkewFactor + } + + /// + /// Methods that extend TMP_Text objects and allow to directly create and control tweens from their instances. + /// + public static class ShortcutExtensionsTMPText + { + #region Colors + + /// Tweens a TextMeshPro's color to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this TMP_Text target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro's faceColor to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFaceColor(this TMP_Text target, Color32 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.faceColor, x => target.faceColor = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro's outlineColor to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOOutlineColor(this TMP_Text target, Color32 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.outlineColor, x => target.outlineColor = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro's glow color to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE will use the fontSharedMaterial instead than the fontMaterial + public static TweenerCore DOGlowColor(this TMP_Text target, Color endValue, float duration, bool useSharedMaterial = false) + { + TweenerCore t = useSharedMaterial + ? target.fontSharedMaterial.DOColor(endValue, "_GlowColor", duration) + : target.fontMaterial.DOColor(endValue, "_GlowColor", duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro's alpha color to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this TMP_Text target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro faceColor's alpha to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFaceFade(this TMP_Text target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.faceColor, x => target.faceColor = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region Other + + /// Tweens a TextMeshPro's scale to the given value (using correct uniform scale as TMP requires). + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScale(this TMP_Text target, float endValue, float duration) + { + Transform trans = target.transform; + Vector3 endValueV3 = new Vector3(endValue, endValue, endValue); + TweenerCore t = DOTween.To(() => trans.localScale, x => trans.localScale = x, endValueV3, duration); + t.SetTarget(target); + return t; + } + + /// + /// Tweens a TextMeshPro's text from one integer to another, with options for thousands separators + /// + /// The value to start from + /// The end value to reach + /// The duration of the tween + /// If TRUE (default) also adds thousands separators + /// The to use (InvariantCulture if NULL) + public static TweenerCore DOCounter( + this TMP_Text target, int fromValue, int endValue, float duration, bool addThousandsSeparator = true, CultureInfo culture = null + ){ + int v = fromValue; + CultureInfo cInfo = !addThousandsSeparator ? null : culture ?? CultureInfo.InvariantCulture; + TweenerCore t = DOTween.To(() => v, x => { + v = x; + target.text = addThousandsSeparator + ? v.ToString("N0", cInfo) + : v.ToString(); + }, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro's fontSize to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFontSize(this TMP_Text target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.fontSize, x => target.fontSize = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro's maxVisibleCharacters to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOMaxVisibleCharacters(this TMP_Text target, int endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.maxVisibleCharacters, x => target.maxVisibleCharacters = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a TextMeshPro's text to the given value. + /// Also stores the TextMeshPro as the tween's target so it can be used for filtered operations + /// The end string to tween toThe duration of the tween + /// If TRUE (default), rich text will be interpreted correctly while animated, + /// otherwise all tags will be considered as normal text + /// The type of scramble mode to use, if any + /// A string containing the characters to use for scrambling. + /// Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters. + /// Leave it to NULL (default) to use default ones + public static TweenerCore DOText(this TMP_Text target, string endValue, float duration, bool richTextEnabled = true, ScrambleMode scrambleMode = ScrambleMode.None, string scrambleChars = null) + { + TweenerCore t = DOTween.To(() => target.text, x => target.text = x, endValue, duration); + t.SetOptions(richTextEnabled, scrambleMode, scrambleChars) + .SetTarget(target); + return t; + } + + #endregion + } + + #region DOTweenTMPAnimator + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ CLASS ███████████████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + /// + /// Wrapper for objects that enables per-character tweening + /// (you don't need this if instead you want to animate the whole text object). + /// It also contains various handy methods to simply deform text without animating it ;) + /// EXAMPLE: + /// DOTweenTMPAnimator animator = new DOTweenTMPAnimator(myTextMeshProTextField); + /// Tween tween = animator.DOCharScale(characterIndex, scaleValue, duration); + /// + /// + public class DOTweenTMPAnimator : IDisposable + { + static readonly Dictionary _targetToAnimator = new Dictionary(); + + /// that this animator is linked to + public TMP_Text target { get; private set; } + public TMP_TextInfo textInfo { get; private set; } + readonly List _charTransforms = new List(); + TMP_MeshInfo[] _cachedMeshInfos; + bool _ignoreTextChangedEvent; + + /// + /// Creates a new instance of the , which is necessary to animate by single characters. + /// If a already exists for the same object it will be disposed + /// (but not its tweens, those you will have to kill manually). + /// If you want to animate the whole text object you don't need this, and you can use direct DO shortcuts instead. + /// IMPORTANT: the target must have been enabled/activated at least once before you can use it with this + /// + /// The that will be linked to this animator + public DOTweenTMPAnimator(TMP_Text target) + { + if (target == null) { + Debugger.LogError("DOTweenTMPAnimator target can't be null"); + return; + } + if (!target.gameObject.activeInHierarchy) { + Debugger.LogError("You can't create a DOTweenTMPAnimator if its target is disabled"); + return; + } + // Verify that there's no other animators for the same target, and in case dispose them + if (_targetToAnimator.ContainsKey(target)) { + if (Debugger.logPriority >= 2) { + Debugger.Log(string.Format( + "A DOTweenTMPAnimator for \"{0}\" already exists: disposing it because you can't have more than one DOTweenTMPAnimator" + + " for the same TextMesh Pro object. If you have tweens running on the disposed DOTweenTMPAnimator you should kill them manually", + target + )); + } + _targetToAnimator[target].Dispose(); + _targetToAnimator.Remove(target); + } + // + this.target = target; + _targetToAnimator.Add(target, this); + Refresh(); + // Listeners + TMPro_EventManager.TEXT_CHANGED_EVENT.Add(OnTextChanged); + } + + /// + /// If a instance exists for the given target disposes it + /// + public static void DisposeInstanceFor(TMP_Text target) + { + if (!_targetToAnimator.ContainsKey(target)) return; + _targetToAnimator[target].Dispose(); + _targetToAnimator.Remove(target); + } + + /// + /// Clears and disposes of this object + /// + public void Dispose() + { + target = null; + _charTransforms.Clear(); + textInfo = null; + _cachedMeshInfos = null; + TMPro_EventManager.TEXT_CHANGED_EVENT.Remove(OnTextChanged); + } + + /// + /// Refreshes the animator text data and resets all transformation data. Call this after you change the target + /// + public void Refresh() + { + _ignoreTextChangedEvent = true; + target.ForceMeshUpdate(true); + textInfo = target.textInfo; + _cachedMeshInfos = textInfo.CopyMeshInfoVertexData(); + int totChars = textInfo.characterCount; + int totCurrent = _charTransforms.Count; + if (totCurrent > totChars) { + _charTransforms.RemoveRange(totChars, totCurrent - totChars); + totCurrent = totChars; + } + for (int i = 0; i < totCurrent; ++i) { + CharTransform c = _charTransforms[i]; + c.ResetTransformationData(); + c.Refresh(textInfo, _cachedMeshInfos); + _charTransforms[i] = c; + } + for (int i = totCurrent; i < totChars; ++i) _charTransforms.Add(new CharTransform(i, textInfo, _cachedMeshInfos)); + _ignoreTextChangedEvent = false; + } + + /// + /// Resets all deformations + /// + public void Reset() + { + int totCurrent = _charTransforms.Count; + for (int i = 0; i < totCurrent; ++i) _charTransforms[i].ResetAll(target, textInfo.meshInfo, _cachedMeshInfos); + } + + void OnTextChanged(Object obj) + { + if (_ignoreTextChangedEvent || target == null || obj != target) return; + Refresh(); + } + + bool ValidateChar(int charIndex, bool isTween = true) + { + if (textInfo.characterCount <= charIndex) { + Debugger.LogError(string.Format("CharIndex {0} doesn't exist", charIndex)); + return false; + } + if (!textInfo.characterInfo[charIndex].isVisible) { + if (Debugger.logPriority > 1) { + if (isTween) { + Debugger.Log(string.Format( + "CharIndex {0} isn't visible, ignoring it and returning an empty tween (TextMesh Pro will behave weirdly if invisible chars are included in the animation)", + charIndex + )); + } else { + Debugger.Log(string.Format("CharIndex {0} isn't visible, ignoring it", charIndex)); + } + } + return false; + } + return true; + } + + bool ValidateSpan(int fromCharIndex, int toCharIndex, out int firstVisibleCharIndex, out int lastVisibleCharIndex) + { + firstVisibleCharIndex = -1; // First visible/existing charIndex from given index + lastVisibleCharIndex = -1; // Last visible/existing charIndex backwards from given index + int charCount = textInfo.characterCount; + if (fromCharIndex >= charCount) return false; + if (toCharIndex >= charCount) toCharIndex = charCount - 1; + for (int i = fromCharIndex; i < toCharIndex + 1; ++i) { + if (!_charTransforms[i].isVisible) continue; + firstVisibleCharIndex = i; + break; + } + if (firstVisibleCharIndex == -1) return false; + for (int i = toCharIndex; i > firstVisibleCharIndex - 1; --i) { + if (!_charTransforms[i].isVisible) continue; + lastVisibleCharIndex = i; + break; + } + if (lastVisibleCharIndex == -1) return false; + return true; + } + + #region Word Setters + + /// + /// Skews a span of characters uniformly (like normal skew works in graphic applications) + /// + /// First char index of the span to skew + /// Last char index of the span to skew + /// Skew factor + /// If TRUE skews the top side of the span, otherwise the bottom one + public void SkewSpanX(int fromCharIndex, int toCharIndex, float skewFactor, bool skewTop = true) + { + int firstVisibleCharIndex, lastVisibleCharIndex; + if (!ValidateSpan(fromCharIndex, toCharIndex, out firstVisibleCharIndex, out lastVisibleCharIndex)) return; + for (int i = firstVisibleCharIndex; i < lastVisibleCharIndex + 1; ++i) { + if (!_charTransforms[i].isVisible) continue; + CharVertices v = _charTransforms[i].GetVertices(); + float skew = SkewCharX(i, skewFactor, skewTop); + } + } + + /// + /// Skews a span of characters uniformly (like normal skew works in graphic applications) + /// + /// First char index of the span to skew + /// Last char index of the span to skew + /// Skew factor + /// Skew mode + /// If TRUE skews the right side of the span, otherwise the left one + public void SkewSpanY( + int fromCharIndex, int toCharIndex, float skewFactor, + TMPSkewSpanMode mode = TMPSkewSpanMode.Default, bool skewRight = true + ){ + int firstVisibleCharIndex, lastVisibleCharIndex; + if (!ValidateSpan(fromCharIndex, toCharIndex, out firstVisibleCharIndex, out lastVisibleCharIndex)) return; + if (mode == TMPSkewSpanMode.AsMaxSkewFactor) { + CharVertices firstVisibleCharVertices = _charTransforms[firstVisibleCharIndex].GetVertices(); + CharVertices lastVisibleCharVertices = _charTransforms[lastVisibleCharIndex].GetVertices(); + float spanW = Mathf.Abs(lastVisibleCharVertices.bottomRight.x - firstVisibleCharVertices.bottomLeft.x); + float spanH = Mathf.Abs(lastVisibleCharVertices.topRight.y - lastVisibleCharVertices.bottomRight.y); + float ratio = spanH / spanW; + skewFactor *= ratio; + } + float offsetY = 0; + CharVertices prevCharVertices = new CharVertices(); + float prevCharSkew = 0; + if (skewRight) { + for (int i = firstVisibleCharIndex; i < lastVisibleCharIndex + 1; ++i) { + if (!_charTransforms[i].isVisible) continue; + CharVertices v = _charTransforms[i].GetVertices(); + float skew = SkewCharY(i, skewFactor, skewRight); + if (i > firstVisibleCharIndex) { + float prevCharW = Mathf.Abs(prevCharVertices.bottomLeft.x - prevCharVertices.bottomRight.x); + float charsDist = Mathf.Abs(v.bottomLeft.x - prevCharVertices.bottomRight.x); + offsetY += prevCharSkew + (prevCharSkew * charsDist) / prevCharW; + SetCharOffset(i, new Vector3(0, _charTransforms[i].offset.y + offsetY, 0)); + } + prevCharVertices = v; + prevCharSkew = skew; + } + } else { + for (int i = lastVisibleCharIndex; i > firstVisibleCharIndex - 1; --i) { + if (!_charTransforms[i].isVisible) continue; + CharVertices v = _charTransforms[i].GetVertices(); + float skew = SkewCharY(i, skewFactor, skewRight); + if (i < lastVisibleCharIndex) { + float prevCharW = Mathf.Abs(prevCharVertices.bottomLeft.x - prevCharVertices.bottomRight.x); + float charsDist = Mathf.Abs(v.bottomRight.x - prevCharVertices.bottomLeft.x); + offsetY += prevCharSkew + (prevCharSkew * charsDist) / prevCharW; + SetCharOffset(i, new Vector3(0, _charTransforms[i].offset.y + offsetY, 0)); + } + prevCharVertices = v; + prevCharSkew = skew; + } + } + } + + #endregion + + #region Char Getters + + /// + /// Returns the current color of the given character, if it exists and is visible. + /// + /// Character index + public Color GetCharColor(int charIndex) + { + if (!ValidateChar(charIndex)) return Color.white; + return _charTransforms[charIndex].GetColor(textInfo.meshInfo); + } + + /// + /// Returns the current offset of the given character, if it exists and is visible. + /// + /// Character index + public Vector3 GetCharOffset(int charIndex) + { + if (!ValidateChar(charIndex)) return Vector3.zero; + return _charTransforms[charIndex].offset; + } + + /// + /// Returns the current rotation of the given character, if it exists and is visible. + /// + /// Character index + public Vector3 GetCharRotation(int charIndex) + { + if (!ValidateChar(charIndex)) return Vector3.zero; + return _charTransforms[charIndex].rotation.eulerAngles; + } + + /// + /// Returns the current scale of the given character, if it exists and is visible. + /// + /// Character index + public Vector3 GetCharScale(int charIndex) + { + if (!ValidateChar(charIndex)) return Vector3.zero; + return _charTransforms[charIndex].scale; + } + + #endregion + + #region Char Setters + + /// + /// Immediately sets the color of the given character. + /// Will do nothing if the is invalid or the character isn't visible + /// + /// Character index + /// Color to set + public void SetCharColor(int charIndex, Color32 color) + { + if (!ValidateChar(charIndex)) return; + CharTransform c = _charTransforms[charIndex]; + c.UpdateColor(target, color, textInfo.meshInfo); + _charTransforms[charIndex] = c; + } + + /// + /// Immediately sets the offset of the given character. + /// Will do nothing if the is invalid or the character isn't visible + /// + /// Character index + /// Offset to set + public void SetCharOffset(int charIndex, Vector3 offset) + { + if (!ValidateChar(charIndex)) return; + CharTransform c = _charTransforms[charIndex]; + c.UpdateGeometry(target, offset, c.rotation, c.scale, _cachedMeshInfos); + _charTransforms[charIndex] = c; + } + + /// + /// Immediately sets the rotation of the given character. + /// Will do nothing if the is invalid or the character isn't visible + /// + /// Character index + /// Rotation to set + public void SetCharRotation(int charIndex, Vector3 rotation) + { + if (!ValidateChar(charIndex)) return; + CharTransform c = _charTransforms[charIndex]; + c.UpdateGeometry(target, c.offset, Quaternion.Euler(rotation), c.scale, _cachedMeshInfos); + _charTransforms[charIndex] = c; + } + + /// + /// Immediately sets the scale of the given character. + /// Will do nothing if the is invalid or the character isn't visible + /// + /// Character index + /// Scale to set + public void SetCharScale(int charIndex, Vector3 scale) + { + if (!ValidateChar(charIndex)) return; + CharTransform c = _charTransforms[charIndex]; + c.UpdateGeometry(target, c.offset, c.rotation, scale, _cachedMeshInfos); + _charTransforms[charIndex] = c; + } + + /// + /// Immediately shifts the vertices of the given character by the given factor. + /// Will do nothing if the is invalid or the character isn't visible + /// + /// Character index + /// Top left offset + /// Top right offset + /// Bottom left offset + /// Bottom right offset + public void ShiftCharVertices(int charIndex, Vector3 topLeftShift, Vector3 topRightShift, Vector3 bottomLeftShift, Vector3 bottomRightShift) + { + if (!ValidateChar(charIndex)) return; + CharTransform c = _charTransforms[charIndex]; + c.ShiftVertices(target, topLeftShift, topRightShift, bottomLeftShift, bottomRightShift); + _charTransforms[charIndex] = c; + } + + /// + /// Skews the given character horizontally along the X axis and returns the skew amount applied (based on the character's size) + /// + /// Character index + /// skew amount + /// If TRUE skews the top side of the character, otherwise the bottom one + public float SkewCharX(int charIndex, float skewFactor, bool skewTop = true) + { + if (!ValidateChar(charIndex)) return 0; + Vector3 skewV = new Vector3(skewFactor, 0, 0); + CharTransform c = _charTransforms[charIndex]; + if (skewTop) c.ShiftVertices(target, skewV, skewV, Vector3.zero, Vector3.zero); + else c.ShiftVertices(target, Vector3.zero, Vector3.zero, skewV, skewV); + _charTransforms[charIndex] = c; + return skewFactor; + } + + /// + /// Skews the given character vertically along the Y axis and returns the skew amount applied (based on the character's size) + /// + /// Character index + /// skew amount + /// If TRUE skews the right side of the character, otherwise the left one + /// If TRUE applies exactly the given , + /// otherwise modifies it based on the aspectRation of the character + public float SkewCharY(int charIndex, float skewFactor, bool skewRight = true, bool fixedSkew = false) + { + if (!ValidateChar(charIndex)) return 0; + float skew = fixedSkew ? skewFactor : skewFactor * textInfo.characterInfo[charIndex].aspectRatio; + Vector3 skewV = new Vector3(0, skew, 0); + CharTransform c = _charTransforms[charIndex]; + if (skewRight) c.ShiftVertices(target, Vector3.zero, skewV, Vector3.zero, skewV); + else c.ShiftVertices(target, skewV, Vector3.zero, skewV, Vector3.zero); + _charTransforms[charIndex] = c; + return skew; + } + + /// + /// Resets the eventual vertices shift applied to the given character via . + /// Will do nothing if the is invalid or the character isn't visible + /// + /// Character index + public void ResetVerticesShift(int charIndex) + { + if (!ValidateChar(charIndex)) return; + CharTransform c = _charTransforms[charIndex]; + c.ResetVerticesShift(target); + _charTransforms[charIndex] = c; + } + + #endregion + + #region Char Tweens + + /// Tweens a character's alpha to the given value and returns the . + /// Will return NULL if the is invalid or the character isn't visible. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The end value to reachThe duration of the tween + public TweenerCore DOFadeChar(int charIndex, float endValue, float duration) + { + if (!ValidateChar(charIndex)) return null; + TweenerCore t = DOTween.ToAlpha(() => _charTransforms[charIndex].GetColor(textInfo.meshInfo), x => { + _charTransforms[charIndex].UpdateAlpha(target, x, textInfo.meshInfo); + }, endValue, duration); + return t; + } + + /// Tweens a character's color to the given value and returns the . + /// Will return NULL if the is invalid or the character isn't visible. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The end value to reachThe duration of the tween + public TweenerCore DOColorChar(int charIndex, Color endValue, float duration) + { + if (!ValidateChar(charIndex)) return null; + TweenerCore t = DOTween.To(() => _charTransforms[charIndex].GetColor(textInfo.meshInfo), x => { + _charTransforms[charIndex].UpdateColor(target, x, textInfo.meshInfo); + }, endValue, duration); + return t; + } + + /// Tweens a character's offset to the given value and returns the . + /// Will return NULL if the is invalid or the character isn't visible. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The end value to reachThe duration of the tween + public TweenerCore DOOffsetChar(int charIndex, Vector3 endValue, float duration) + { + if (!ValidateChar(charIndex)) return null; + TweenerCore t = DOTween.To(() => _charTransforms[charIndex].offset, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, x, charT.rotation, charT.scale, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, endValue, duration); + return t; + } + + /// Tweens a character's rotation to the given value and returns the . + /// Will return NULL if the is invalid or the character isn't visible. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The end value to reachThe duration of the tween + /// Rotation mode + public TweenerCore DORotateChar(int charIndex, Vector3 endValue, float duration, RotateMode mode = RotateMode.Fast) + { + if (!ValidateChar(charIndex)) return null; + TweenerCore t = DOTween.To(() => _charTransforms[charIndex].rotation, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, charT.offset, x, charT.scale, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, endValue, duration); + t.plugOptions.rotateMode = mode; + return t; + } + + /// Tweens a character's scale to the given value and returns the . + /// Will return NULL if the is invalid or the character isn't visible. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The end value to reachThe duration of the tween + public TweenerCore DOScaleChar(int charIndex, float endValue, float duration) + { + return DOScaleChar(charIndex, new Vector3(endValue, endValue, endValue), duration); + } + /// Tweens a character's color to the given value and returns the . + /// Will return NULL if the is invalid or the character isn't visible. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The end value to reachThe duration of the tween + public TweenerCore DOScaleChar(int charIndex, Vector3 endValue, float duration) + { + if (!ValidateChar(charIndex)) return null; + TweenerCore t = DOTween.To(() => _charTransforms[charIndex].scale, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, charT.offset, charT.rotation, x, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, endValue, duration); + return t; + } + + /// Punches a character's offset towards the given direction and then back to the starting one + /// as if it was connected to the starting position via an elastic. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The punch strength + /// The duration of the tween + /// Indicates how much will the punch vibrate per second + /// Represents how much (0 to 1) the vector will go beyond the starting size when bouncing backwards. + /// 1 creates a full oscillation between the punch offset and the opposite offset, + /// while 0 oscillates only between the punch offset and the start offset + public Tweener DOPunchCharOffset(int charIndex, Vector3 punch, float duration, int vibrato = 10, float elasticity = 1) + { + if (!ValidateChar(charIndex)) return null; + if (duration <= 0) { + if (Debugger.logPriority > 0) Debug.LogWarning("Duration can't be 0, returning NULL without creating a tween"); + return null; + } + return DOTween.Punch(() => _charTransforms[charIndex].offset, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, x, charT.rotation, charT.scale, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, punch, duration, vibrato, elasticity); + } + + /// Punches a character's rotation towards the given direction and then back to the starting one + /// as if it was connected to the starting position via an elastic. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The punch strength + /// The duration of the tween + /// Indicates how much will the punch vibrate per second + /// Represents how much (0 to 1) the vector will go beyond the starting size when bouncing backwards. + /// 1 creates a full oscillation between the punch rotation and the opposite rotation, + /// while 0 oscillates only between the punch rotation and the start rotation + public Tweener DOPunchCharRotation(int charIndex, Vector3 punch, float duration, int vibrato = 10, float elasticity = 1) + { + if (!ValidateChar(charIndex)) return null; + if (duration <= 0) { + if (Debugger.logPriority > 0) Debug.LogWarning("Duration can't be 0, returning NULL without creating a tween"); + return null; + } + return DOTween.Punch(() => _charTransforms[charIndex].rotation.eulerAngles, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, charT.offset, Quaternion.Euler(x), charT.scale, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, punch, duration, vibrato, elasticity); + } + + /// Punches a character's scale towards the given direction and then back to the starting one + /// as if it was connected to the starting position via an elastic. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The punch strength (added to the character's current scale) + /// The duration of the tween + /// Indicates how much will the punch vibrate per second + /// Represents how much (0 to 1) the vector will go beyond the starting size when bouncing backwards. + /// 1 creates a full oscillation between the punch scale and the opposite scale, + /// while 0 oscillates only between the punch scale and the start scale + public Tweener DOPunchCharScale(int charIndex, float punch, float duration, int vibrato = 10, float elasticity = 1) + { + return DOPunchCharScale(charIndex, new Vector3(punch, punch, punch), duration, vibrato, elasticity); + } + /// Punches a character's scale towards the given direction and then back to the starting one + /// as if it was connected to the starting position via an elastic. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The punch strength (added to the character's current scale) + /// The duration of the tween + /// Indicates how much will the punch vibrate per second + /// Represents how much (0 to 1) the vector will go beyond the starting size when bouncing backwards. + /// 1 creates a full oscillation between the punch scale and the opposite scale, + /// while 0 oscillates only between the punch scale and the start scale + public Tweener DOPunchCharScale(int charIndex, Vector3 punch, float duration, int vibrato = 10, float elasticity = 1) + { + if (!ValidateChar(charIndex)) return null; + if (duration <= 0) { + if (Debugger.logPriority > 0) Debug.LogWarning("Duration can't be 0, returning NULL without creating a tween"); + return null; + } + return DOTween.Punch(() => _charTransforms[charIndex].scale, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, charT.offset, charT.rotation, x, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, punch, duration, vibrato, elasticity); + } + + /// Shakes a character's offset with the given values. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The duration of the tween + /// The shake strength + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + public Tweener DOShakeCharOffset(int charIndex, float duration, float strength, int vibrato = 10, float randomness = 90, bool fadeOut = true) + { + return DOShakeCharOffset(charIndex, duration, new Vector3(strength, strength, strength), vibrato, randomness, fadeOut); + } + /// Shakes a character's offset with the given values. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The duration of the tween + /// The shake strength + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + public Tweener DOShakeCharOffset(int charIndex, float duration, Vector3 strength, int vibrato = 10, float randomness = 90, bool fadeOut = true) + { + if (!ValidateChar(charIndex)) return null; + if (duration <= 0) { + if (Debugger.logPriority > 0) Debug.LogWarning("Duration can't be 0, returning NULL without creating a tween"); + return null; + } + return DOTween.Shake(() => _charTransforms[charIndex].offset, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, x, charT.rotation, charT.scale, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, duration, strength, vibrato, randomness, fadeOut); + } + + /// Shakes a character's rotation with the given values. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The duration of the tween + /// The shake strength + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + public Tweener DOShakeCharRotation(int charIndex, float duration, Vector3 strength, int vibrato = 10, float randomness = 90, bool fadeOut = true) + { + if (!ValidateChar(charIndex)) return null; + if (duration <= 0) { + if (Debugger.logPriority > 0) Debug.LogWarning("Duration can't be 0, returning NULL without creating a tween"); + return null; + } + return DOTween.Shake(() => _charTransforms[charIndex].rotation.eulerAngles, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, charT.offset, Quaternion.Euler(x), charT.scale, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, duration, strength, vibrato, randomness, fadeOut); + } + + /// Shakes a character's scale with the given values. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The duration of the tween + /// The shake strength + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + public Tweener DOShakeCharScale(int charIndex, float duration, float strength, int vibrato = 10, float randomness = 90, bool fadeOut = true) + { + return DOShakeCharScale(charIndex, duration, new Vector3(strength, strength, strength), vibrato, randomness, fadeOut); + } + /// Shakes a character's scale with the given values. + /// The index of the character to tween (will throw an error if it doesn't exist) + /// The duration of the tween + /// The shake strength + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + public Tweener DOShakeCharScale(int charIndex, float duration, Vector3 strength, int vibrato = 10, float randomness = 90, bool fadeOut = true) + { + if (!ValidateChar(charIndex)) return null; + if (duration <= 0) { + if (Debugger.logPriority > 0) Debug.LogWarning("Duration can't be 0, returning NULL without creating a tween"); + return null; + } + return DOTween.Shake(() => _charTransforms[charIndex].scale, x => { + CharTransform charT = _charTransforms[charIndex]; + charT.UpdateGeometry(target, charT.offset, charT.rotation, x, _cachedMeshInfos); + _charTransforms[charIndex] = charT; + }, duration, strength, vibrato, randomness, fadeOut); + } + + #endregion + + // ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████ + + struct CharVertices + { + public Vector3 bottomLeft, topLeft, topRight, bottomRight; + + public CharVertices(Vector3 bottomLeft, Vector3 topLeft, Vector3 topRight, Vector3 bottomRight) + { + this.bottomLeft = bottomLeft; + this.topLeft = topLeft; + this.topRight = topRight; + this.bottomRight = bottomRight; + } + } + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + // Vertices of each character are: + // 0 : bottom left, 1 : top left, 2 : top right, 3 : bottom right + struct CharTransform + { + public int charIndex; + public bool isVisible { get; private set; } // FALSE both if it's invisible or if it's a space + public Vector3 offset; + public Quaternion rotation; + public Vector3 scale; + Vector3 _topLeftShift, _topRightShift, _bottomLeftShift, _bottomRightShift; + Vector3 _charMidBaselineOffset; + int _matIndex, _firstVertexIndex; + TMP_MeshInfo _meshInfo; + + public CharTransform(int charIndex, TMP_TextInfo textInfo, TMP_MeshInfo[] cachedMeshInfos) : this() + { + this.charIndex = charIndex; + offset = Vector3.zero; + rotation = Quaternion.identity; + scale = Vector3.one; + Refresh(textInfo, cachedMeshInfos); + } + + public void Refresh(TMP_TextInfo textInfo, TMP_MeshInfo[] cachedMeshInfos) + { + TMP_CharacterInfo charInfo = textInfo.characterInfo[charIndex]; + bool isSpaceChar = charInfo.character == ' '; + isVisible = charInfo.isVisible && !isSpaceChar; + _matIndex = charInfo.materialReferenceIndex; + _firstVertexIndex = charInfo.vertexIndex; + _meshInfo = textInfo.meshInfo[_matIndex]; + Vector3[] cachedVertices = cachedMeshInfos[_matIndex].vertices; + _charMidBaselineOffset = isSpaceChar + ? Vector3.zero + : (cachedVertices[_firstVertexIndex] + cachedVertices[_firstVertexIndex + 2]) * 0.5f; + } + + public void ResetAll(TMP_Text target, TMP_MeshInfo[] meshInfos, TMP_MeshInfo[] cachedMeshInfos) + { + ResetGeometry(target, cachedMeshInfos); + ResetColors(target, meshInfos); + } + + public void ResetTransformationData() + { + offset = Vector3.zero; + rotation = Quaternion.identity; + scale = Vector3.one; + _topLeftShift = _topRightShift = _bottomLeftShift = _bottomRightShift = Vector3.zero; + } + + public void ResetGeometry(TMP_Text target, TMP_MeshInfo[] cachedMeshInfos) + { + ResetTransformationData(); + Vector3[] destinationVertices = _meshInfo.vertices; + Vector3[] cachedVertices = cachedMeshInfos[_matIndex].vertices; + destinationVertices[_firstVertexIndex + 0] = cachedVertices[_firstVertexIndex + 0]; + destinationVertices[_firstVertexIndex + 1] = cachedVertices[_firstVertexIndex + 1]; + destinationVertices[_firstVertexIndex + 2] = cachedVertices[_firstVertexIndex + 2]; + destinationVertices[_firstVertexIndex + 3] = cachedVertices[_firstVertexIndex + 3]; + _meshInfo.mesh.vertices = _meshInfo.vertices; + target.UpdateGeometry(_meshInfo.mesh, _matIndex); + } + + public void ResetColors(TMP_Text target, TMP_MeshInfo[] meshInfos) + { + Color color = target.color; + Color32[] vertexCols = meshInfos[_matIndex].colors32; + vertexCols[_firstVertexIndex] = color; + vertexCols[_firstVertexIndex + 1] = color; + vertexCols[_firstVertexIndex + 2] = color; + vertexCols[_firstVertexIndex + 3] = color; + target.UpdateVertexData(TMP_VertexDataUpdateFlags.Colors32); + } + + public Color32 GetColor(TMP_MeshInfo[] meshInfos) + { + return meshInfos[_matIndex].colors32[_firstVertexIndex]; + } + + public CharVertices GetVertices() + { + return new CharVertices( + _meshInfo.vertices[_firstVertexIndex], _meshInfo.vertices[_firstVertexIndex + 1], + _meshInfo.vertices[_firstVertexIndex + 2], _meshInfo.vertices[_firstVertexIndex + 3] + ); + } + + public void UpdateAlpha(TMP_Text target, Color alphaColor, TMP_MeshInfo[] meshInfos, bool apply = true) + { + byte alphaByte = (byte)(alphaColor.a * 255); + Color32[] vertexCols = meshInfos[_matIndex].colors32; + vertexCols[_firstVertexIndex].a = alphaByte; + vertexCols[_firstVertexIndex + 1].a = alphaByte; + vertexCols[_firstVertexIndex + 2].a = alphaByte; + vertexCols[_firstVertexIndex + 3].a = alphaByte; + if (apply) target.UpdateVertexData(TMP_VertexDataUpdateFlags.Colors32); + } + + public void UpdateColor(TMP_Text target, Color32 color, TMP_MeshInfo[] meshInfos, bool apply = true) + { + Color32[] vertexCols = meshInfos[_matIndex].colors32; + vertexCols[_firstVertexIndex] = color; + vertexCols[_firstVertexIndex + 1] = color; + vertexCols[_firstVertexIndex + 2] = color; + vertexCols[_firstVertexIndex + 3] = color; + if (apply) target.UpdateVertexData(TMP_VertexDataUpdateFlags.Colors32); + } + + public void UpdateGeometry(TMP_Text target, Vector3 offset, Quaternion rotation, Vector3 scale, TMP_MeshInfo[] cachedMeshInfos, bool apply = true) + { + this.offset = offset; + this.rotation = rotation; + this.scale = scale; + + if (!apply) return; + + Vector3[] destinationVertices = _meshInfo.vertices; + Vector3[] cachedVertices = cachedMeshInfos[_matIndex].vertices; + destinationVertices[_firstVertexIndex] = cachedVertices[_firstVertexIndex + 0] - _charMidBaselineOffset; + destinationVertices[_firstVertexIndex + 1] = cachedVertices[_firstVertexIndex + 1] - _charMidBaselineOffset; + destinationVertices[_firstVertexIndex + 2] = cachedVertices[_firstVertexIndex + 2] - _charMidBaselineOffset; + destinationVertices[_firstVertexIndex + 3] = cachedVertices[_firstVertexIndex + 3] - _charMidBaselineOffset; + Matrix4x4 matrix = Matrix4x4.TRS(this.offset, this.rotation, this.scale); + destinationVertices[_firstVertexIndex] + = matrix.MultiplyPoint3x4(destinationVertices[_firstVertexIndex + 0]) + _charMidBaselineOffset + _bottomLeftShift; + destinationVertices[_firstVertexIndex + 1] + = matrix.MultiplyPoint3x4(destinationVertices[_firstVertexIndex + 1]) + _charMidBaselineOffset + _topLeftShift; + destinationVertices[_firstVertexIndex + 2] + = matrix.MultiplyPoint3x4(destinationVertices[_firstVertexIndex + 2]) + _charMidBaselineOffset + _topRightShift; + destinationVertices[_firstVertexIndex + 3] + = matrix.MultiplyPoint3x4(destinationVertices[_firstVertexIndex + 3]) + _charMidBaselineOffset + _bottomRightShift; + _meshInfo.mesh.vertices = _meshInfo.vertices; + target.UpdateGeometry(_meshInfo.mesh, _matIndex); + } + + public void ShiftVertices(TMP_Text target, Vector3 topLeftShift, Vector3 topRightShift, Vector3 bottomLeftShift, Vector3 bottomRightShift) + { + _topLeftShift += topLeftShift; + _topRightShift += topRightShift; + _bottomLeftShift += bottomLeftShift; + _bottomRightShift += bottomRightShift; + Vector3[] destinationVertices = _meshInfo.vertices; + destinationVertices[_firstVertexIndex] = destinationVertices[_firstVertexIndex] + _bottomLeftShift; + destinationVertices[_firstVertexIndex + 1] = destinationVertices[_firstVertexIndex + 1] + _topLeftShift; + destinationVertices[_firstVertexIndex + 2] = destinationVertices[_firstVertexIndex + 2] + _topRightShift; + destinationVertices[_firstVertexIndex + 3] = destinationVertices[_firstVertexIndex + 3] + _bottomRightShift; + _meshInfo.mesh.vertices = _meshInfo.vertices; + target.UpdateGeometry(_meshInfo.mesh, _matIndex); + } + + public void ResetVerticesShift(TMP_Text target) + { + Vector3[] destinationVertices = _meshInfo.vertices; + destinationVertices[_firstVertexIndex] = destinationVertices[_firstVertexIndex] - _bottomLeftShift; + destinationVertices[_firstVertexIndex + 1] = destinationVertices[_firstVertexIndex + 1] - _topLeftShift; + destinationVertices[_firstVertexIndex + 2] = destinationVertices[_firstVertexIndex + 2] - _topRightShift; + destinationVertices[_firstVertexIndex + 3] = destinationVertices[_firstVertexIndex + 3] - _bottomRightShift; + _meshInfo.mesh.vertices = _meshInfo.vertices; + target.UpdateGeometry(_meshInfo.mesh, _matIndex); + _topLeftShift = _topRightShift = _bottomLeftShift = _bottomRightShift = Vector3.zero; + } + } + } + + #endregion +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTextMeshPro.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTextMeshPro.cs.meta new file mode 100644 index 00000000..613cdbcb --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTextMeshPro.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8fb0d65aa5b048649a3a785b82b8f8db +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTk2d.cs b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTk2d.cs new file mode 100644 index 00000000..0c57bfef --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTk2d.cs @@ -0,0 +1,247 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2014/10/27 15:59 +// +// License Copyright (c) Daniele Giardini. +// This work is subject to the terms at http://dotween.demigiant.com/license.php + +#if false // MODULE_MARKER +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; +using UnityEngine; + +namespace DG.Tweening +{ + /// + /// Methods that extend 2D Toolkit objects and allow to directly create and control tweens from their instances. + /// + public static class ShortcutExtensionsTk2d + { + #region Sprite + + /// Tweens a 2D Toolkit Sprite's dimensions to the given value. + /// Also stores the Sprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScale(this tk2dBaseSprite target, Vector3 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, endValue, duration); + t.SetTarget(target); + return t; + } + /// Tweens a Sprite's dimensions to the given value. + /// Also stores the Sprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleX(this tk2dBaseSprite target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, new Vector3(endValue, 0, 0), duration); + t.SetOptions(AxisConstraint.X) + .SetTarget(target); + return t; + } + /// Tweens a Sprite's dimensions to the given value. + /// Also stores the Sprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleY(this tk2dBaseSprite target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, new Vector3(0, endValue, 0), duration); + t.SetOptions(AxisConstraint.Y) + .SetTarget(target); + return t; + } + /// Tweens a Sprite's dimensions to the given value. + /// Also stores the Sprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleZ(this tk2dBaseSprite target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, new Vector3(0, 0, endValue), duration); + t.SetOptions(AxisConstraint.Z) + .SetTarget(target); + return t; + } + + /// Tweens a 2D Toolkit Sprite's color to the given value. + /// Also stores the Sprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this tk2dBaseSprite target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a 2D Toolkit Sprite's alpha color to the given value. + /// Also stores the Sprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this tk2dBaseSprite target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a 2D Toolkit Sprite's color using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this tk2dBaseSprite target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + #endregion + + #region tk2dSlicedSprite + + /// Tweens a 2D Toolkit SlicedSprite's dimensions to the given value. + /// Also stores the SlicedSprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleDimensions(this tk2dSlicedSprite target, Vector2 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.dimensions, x => target.dimensions = x, endValue, duration); + t.SetTarget(target); + return t; + } + /// Tweens a SlicedSprite's dimensions to the given value. + /// Also stores the SlicedSprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleDimensionsX(this tk2dSlicedSprite target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.dimensions, x => target.dimensions = x, new Vector2(endValue, 0), duration); + t.SetOptions(AxisConstraint.X) + .SetTarget(target); + return t; + } + /// Tweens a SlicedSprite's dimensions to the given value. + /// Also stores the SlicedSprite as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleDimensionsY(this tk2dSlicedSprite target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.dimensions, x => target.dimensions = x, new Vector2(0, endValue), duration); + t.SetOptions(AxisConstraint.Y) + .SetTarget(target); + return t; + } + + #endregion + + #region TextMesh + + /// Tweens a 2D Toolkit TextMesh's dimensions to the given value. + /// Also stores the TextMesh as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScale(this tk2dTextMesh target, Vector3 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, endValue, duration); + t.SetTarget(target); + return t; + } + /// Tweens a 2D Toolkit TextMesh's dimensions to the given value. + /// Also stores the TextMesh as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleX(this tk2dTextMesh target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, new Vector3(endValue, 0, 0), duration); + t.SetOptions(AxisConstraint.X) + .SetTarget(target); + return t; + } + /// Tweens a 2D Toolkit TextMesh's dimensions to the given value. + /// Also stores the TextMesh as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleY(this tk2dTextMesh target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, new Vector3(0, endValue, 0), duration); + t.SetOptions(AxisConstraint.Y) + .SetTarget(target); + return t; + } + /// Tweens a 2D Toolkit TextMesh's dimensions to the given value. + /// Also stores the TextMesh as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScaleZ(this tk2dTextMesh target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.scale, x => target.scale = x, new Vector3(0, 0, endValue), duration); + t.SetOptions(AxisConstraint.Z) + .SetTarget(target); + return t; + } + + /// Tweens a 2D Toolkit TextMesh's color to the given value. + /// Also stores the TextMesh as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this tk2dTextMesh target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a 2D Toolkit TextMesh's alpha color to the given value. + /// Also stores the TextMesh as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this tk2dTextMesh target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a 2D Toolkit TextMesh's color using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this tk2dTextMesh target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + /// Tweens a tk2dTextMesh's text to the given value. + /// Also stores the tk2dTextMesh as the tween's target so it can be used for filtered operations + /// The end string to tween toThe duration of the tween + /// If TRUE (default), rich text will be interpreted correctly while animated, + /// otherwise all tags will be considered as normal text + /// The type of scramble mode to use, if any + /// A string containing the characters to use for scrambling. + /// Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters. + /// Leave it to NULL (default) to use default ones + public static TweenerCore DOText(this tk2dTextMesh target, string endValue, float duration, bool richTextEnabled = true, ScrambleMode scrambleMode = ScrambleMode.None, string scrambleChars = null) + { + TweenerCore t = DOTween.To(() => target.text, x => target.text = x, endValue, duration); + t.SetOptions(richTextEnabled, scrambleMode, scrambleChars) + .SetTarget(target); + return t; + } + + #endregion + } +} +#endif diff --git a/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTk2d.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTk2d.cs.meta new file mode 100644 index 00000000..c909f96c --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTk2d.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b590cd7c24ffa5d4faa5b6fa993cccad +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor.meta b/Assets/Plugins/Demigiant/DOTweenPro/Editor.meta new file mode 100644 index 00000000..e9164f71 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 34ca5bde92f87fa4dbeb9593d201fde2 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenAnimationInspector.cs b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenAnimationInspector.cs new file mode 100644 index 00000000..69f753d6 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenAnimationInspector.cs @@ -0,0 +1,764 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2015/03/12 16:03 + +using System; +using System.Collections.Generic; +using System.IO; +using DG.DemiEditor; +using DG.DOTweenEditor.Core; +using DG.DOTweenEditor.UI; +using DG.Tweening; +using DG.Tweening.Core; +using UnityEditor; +using UnityEngine; +using DOTweenSettings = DG.Tweening.Core.DOTweenSettings; +#if true // UI_MARKER +using UnityEngine.UI; +#endif +#if false // TEXTMESHPRO_MARKER + using TMPro; +#endif + +namespace DG.DOTweenEditor +{ + [CustomEditor(typeof(DOTweenAnimation))] + public class DOTweenAnimationInspector : ABSAnimationInspector + { + enum FadeTargetType + { + CanvasGroup, + Image + } + + enum ChooseTargetMode + { + None, + BetweenCanvasGroupAndImage + } + + static readonly Dictionary _AnimationTypeToComponent = new Dictionary() { + { DOTweenAnimation.AnimationType.Move, new[] { +#if true // PHYSICS_MARKER + typeof(Rigidbody), +#endif +#if true // PHYSICS2D_MARKER + typeof(Rigidbody2D), +#endif +#if true // UI_MARKER + typeof(RectTransform), +#endif + typeof(Transform) + }}, + { DOTweenAnimation.AnimationType.Rotate, new[] { +#if true // PHYSICS_MARKER + typeof(Rigidbody), +#endif +#if true // PHYSICS2D_MARKER + typeof(Rigidbody2D), +#endif + typeof(Transform) + }}, + { DOTweenAnimation.AnimationType.LocalMove, new[] { typeof(Transform) } }, + { DOTweenAnimation.AnimationType.LocalRotate, new[] { typeof(Transform) } }, + { DOTweenAnimation.AnimationType.Scale, new[] { typeof(Transform) } }, + { DOTweenAnimation.AnimationType.Color, new[] { + typeof(Light), +#if true // SPRITE_MARKER + typeof(SpriteRenderer), +#endif +#if true // UI_MARKER + typeof(Image), typeof(Text), typeof(RawImage), typeof(Graphic), +#endif + typeof(Renderer), + }}, + { DOTweenAnimation.AnimationType.Fade, new[] { + typeof(Light), +#if true // SPRITE_MARKER + typeof(SpriteRenderer), +#endif +#if true // UI_MARKER + typeof(Image), typeof(Text), typeof(CanvasGroup), typeof(RawImage), typeof(Graphic), +#endif + typeof(Renderer), + }}, +#if true // UI_MARKER + { DOTweenAnimation.AnimationType.Text, new[] { typeof(Text) } }, +#endif + { DOTweenAnimation.AnimationType.PunchPosition, new[] { +#if true // UI_MARKER + typeof(RectTransform), +#endif + typeof(Transform) + }}, + { DOTweenAnimation.AnimationType.PunchRotation, new[] { typeof(Transform) } }, + { DOTweenAnimation.AnimationType.PunchScale, new[] { typeof(Transform) } }, + { DOTweenAnimation.AnimationType.ShakePosition, new[] { +#if true // UI_MARKER + typeof(RectTransform), +#endif + typeof(Transform) + }}, + { DOTweenAnimation.AnimationType.ShakeRotation, new[] { typeof(Transform) } }, + { DOTweenAnimation.AnimationType.ShakeScale, new[] { typeof(Transform) } }, + { DOTweenAnimation.AnimationType.CameraAspect, new[] { typeof(Camera) } }, + { DOTweenAnimation.AnimationType.CameraBackgroundColor, new[] { typeof(Camera) } }, + { DOTweenAnimation.AnimationType.CameraFieldOfView, new[] { typeof(Camera) } }, + { DOTweenAnimation.AnimationType.CameraOrthoSize, new[] { typeof(Camera) } }, + { DOTweenAnimation.AnimationType.CameraPixelRect, new[] { typeof(Camera) } }, + { DOTweenAnimation.AnimationType.CameraRect, new[] { typeof(Camera) } }, +#if true // UI_MARKER + { DOTweenAnimation.AnimationType.UIWidthHeight, new[] { typeof(RectTransform) } }, + { DOTweenAnimation.AnimationType.FillAmount, new[] { typeof(Image) } }, +#endif + }; + +#if false // TK2D_MARKER + static readonly Dictionary _Tk2dAnimationTypeToComponent = new Dictionary() { + { DOTweenAnimation.AnimationType.Scale, new[] { typeof(tk2dBaseSprite), typeof(tk2dTextMesh) } }, + { DOTweenAnimation.AnimationType.Color, new[] { typeof(tk2dBaseSprite), typeof(tk2dTextMesh) } }, + { DOTweenAnimation.AnimationType.Fade, new[] { typeof(tk2dBaseSprite), typeof(tk2dTextMesh) } }, + { DOTweenAnimation.AnimationType.Text, new[] { typeof(tk2dTextMesh) } } + }; +#endif +#if false // TEXTMESHPRO_MARKER + static readonly Dictionary _TMPAnimationTypeToComponent = new Dictionary() { + { DOTweenAnimation.AnimationType.Color, new[] { typeof(TextMeshPro), typeof(TextMeshProUGUI) } }, + { DOTweenAnimation.AnimationType.Fade, new[] { typeof(TextMeshPro), typeof(TextMeshProUGUI) } }, + { DOTweenAnimation.AnimationType.Text, new[] { typeof(TextMeshPro), typeof(TextMeshProUGUI) } } + }; +#endif + + static readonly string[] _AnimationType = new[] { + "None", + "Move", "LocalMove", + "Rotate", "LocalRotate", + "Scale", + "Color", "Fade", +#if true // UI_MARKER + "FillAmount", + "Text", +#endif +#if false // TK2D_MARKER + "Text", +#endif +#if false // TEXTMESHPRO_MARKER + "Text", +#endif +#if true // UI_MARKER + "UIWidthHeight", +#endif + "Punch/Position", "Punch/Rotation", "Punch/Scale", + "Shake/Position", "Shake/Rotation", "Shake/Scale", + "Camera/Aspect", "Camera/BackgroundColor", "Camera/FieldOfView", "Camera/OrthoSize", "Camera/PixelRect", "Camera/Rect" + }; + static string[] _animationTypeNoSlashes; // _AnimationType list without slashes in values + static string[] _datString; // String representation of DOTweenAnimation enum (here for caching reasons) + + DOTweenAnimation _src; + DOTweenSettings _settings; + bool _runtimeEditMode; // If TRUE allows to change and save stuff at runtime + bool _refreshRequired; // If TRUE refreshes components data + int _totComponentsOnSrc; // Used to determine if a Component is added or removed from the source + bool _isLightSrc; // Used to determine if we're tweening a Light, to set the max Fade value to more than 1 +#pragma warning disable 414 + ChooseTargetMode _chooseTargetMode = ChooseTargetMode.None; +#pragma warning restore 414 + + static readonly GUIContent _GuiC_selfTarget_true = new GUIContent( + "SELF", "Will animate components on this gameObject" + ); + static readonly GUIContent _GuiC_selfTarget_false = new GUIContent( + "OTHER", "Will animate components on the given gameObject instead than on this one" + ); + static readonly GUIContent _GuiC_tweenTargetIsTargetGO_true = new GUIContent( + "Use As Tween Target", "Will set the tween target (via SetTarget, used to control a tween directly from a target) to the \"OTHER\" gameObject" + ); + static readonly GUIContent _GuiC_tweenTargetIsTargetGO_false = new GUIContent( + "Use As Tween Target", "Will set the tween target (via SetTarget, used to control a tween directly from a target) to the gameObject containing this animation, not the \"OTHER\" one" + ); + + #region MonoBehaviour Methods + + void OnEnable() + { + _src = target as DOTweenAnimation; + _settings = DOTweenUtilityWindow.GetDOTweenSettings(); + + onStartProperty = base.serializedObject.FindProperty("onStart"); + onPlayProperty = base.serializedObject.FindProperty("onPlay"); + onUpdateProperty = base.serializedObject.FindProperty("onUpdate"); + onStepCompleteProperty = base.serializedObject.FindProperty("onStepComplete"); + onCompleteProperty = base.serializedObject.FindProperty("onComplete"); + onRewindProperty = base.serializedObject.FindProperty("onRewind"); + onTweenCreatedProperty = base.serializedObject.FindProperty("onTweenCreated"); + + // Convert _AnimationType to _animationTypeNoSlashes + int len = _AnimationType.Length; + _animationTypeNoSlashes = new string[len]; + for (int i = 0; i < len; ++i) { + string a = _AnimationType[i]; + a = a.Replace("/", ""); + _animationTypeNoSlashes[i] = a; + } + } + + void OnDisable() + { + DOTweenPreviewManager.StopAllPreviews(); + } + + override public void OnInspectorGUI() + { + base.OnInspectorGUI(); + + GUILayout.Space(3); + EditorGUIUtils.SetGUIStyles(); + + bool playMode = Application.isPlaying; + _runtimeEditMode = _runtimeEditMode && playMode; + + GUILayout.BeginHorizontal(); + EditorGUIUtils.InspectorLogo(); + GUILayout.Label(_src.animationType.ToString() + (string.IsNullOrEmpty(_src.id) ? "" : " [" + _src.id + "]"), EditorGUIUtils.sideLogoIconBoldLabelStyle); + // Up-down buttons + GUILayout.FlexibleSpace(); + if (GUILayout.Button("▲", DeGUI.styles.button.toolIco)) UnityEditorInternal.ComponentUtility.MoveComponentUp(_src); + if (GUILayout.Button("▼", DeGUI.styles.button.toolIco)) UnityEditorInternal.ComponentUtility.MoveComponentDown(_src); + GUILayout.EndHorizontal(); + + if (playMode) { + if (_runtimeEditMode) { + + } else { + GUILayout.Space(8); + GUILayout.Label("Animation Editor disabled while in play mode", EditorGUIUtils.wordWrapLabelStyle); + if (!_src.isActive) { + GUILayout.Label("This animation has been toggled as inactive and won't be generated", EditorGUIUtils.wordWrapLabelStyle); + GUI.enabled = false; + } + if (GUILayout.Button(new GUIContent("Activate Edit Mode", "Switches to Runtime Edit Mode, where you can change animations values and restart them"))) { + _runtimeEditMode = true; + } + GUILayout.Label("NOTE: when using DOPlayNext, the sequence is determined by the DOTweenAnimation Components order in the target GameObject's Inspector", EditorGUIUtils.wordWrapLabelStyle); + GUILayout.Space(10); + if (!_runtimeEditMode) return; + } + } + + Undo.RecordObject(_src, "DOTween Animation"); + Undo.RecordObject(_settings, "DOTween Animation"); + +// _src.isValid = Validate(); // Moved down + + EditorGUIUtility.labelWidth = 110; + + if (playMode) { + GUILayout.Space(4); + DeGUILayout.Toolbar("Edit Mode Commands"); + DeGUILayout.BeginVBox(DeGUI.styles.box.stickyTop); + GUILayout.BeginHorizontal(); + if (GUILayout.Button("TogglePause")) _src.tween.TogglePause(); + if (GUILayout.Button("Rewind")) _src.tween.Rewind(); + if (GUILayout.Button("Restart")) _src.tween.Restart(); + GUILayout.EndHorizontal(); + if (GUILayout.Button("Commit changes and restart")) { + _src.tween.Rewind(); + _src.tween.Kill(); + if (_src.isValid) { + _src.CreateTween(); + _src.tween.Play(); + } + } + GUILayout.Label("To apply your changes when exiting Play mode, use the Component's upper right menu and choose \"Copy Component\", then \"Paste Component Values\" after exiting Play mode", DeGUI.styles.label.wordwrap); + DeGUILayout.EndVBox(); + } else { + GUILayout.BeginHorizontal(); + bool hasManager = _src.GetComponent() != null; + EditorGUI.BeginChangeCheck(); + _settings.showPreviewPanel = hasManager + ? DeGUILayout.ToggleButton(_settings.showPreviewPanel, "Preview Controls", styles.custom.inlineToggle) + : DeGUILayout.ToggleButton(_settings.showPreviewPanel, "Preview Controls", styles.custom.inlineToggle, GUILayout.Width(120)); + if (EditorGUI.EndChangeCheck()) { + EditorUtility.SetDirty(_settings); + DOTweenPreviewManager.StopAllPreviews(); + } + if (!hasManager) { + if (GUILayout.Button(new GUIContent("Add Manager", "Adds a manager component which allows you to choose additional options for this gameObject"))) { + _src.gameObject.AddComponent(); + } + } + GUILayout.EndHorizontal(); + } + + // Preview in editor + bool isPreviewing = _settings.showPreviewPanel ? DOTweenPreviewManager.PreviewGUI(_src) : false; + + EditorGUI.BeginDisabledGroup(isPreviewing); + // Choose target + GUILayout.BeginHorizontal(); + _src.isActive = EditorGUILayout.Toggle(new GUIContent("", "If unchecked, this animation will not be created"), _src.isActive, GUILayout.Width(14)); + EditorGUI.BeginChangeCheck(); + EditorGUI.BeginChangeCheck(); + _src.targetIsSelf = DeGUILayout.ToggleButton( + _src.targetIsSelf, _src.targetIsSelf ? _GuiC_selfTarget_true : _GuiC_selfTarget_false, + new Color(1f, 0.78f, 0f), DeGUI.colors.bg.toggleOn, new Color(0.33f, 0.14f, 0.02f), DeGUI.colors.content.toggleOn, + null, GUILayout.Width(47) + ); + bool innerChanged = EditorGUI.EndChangeCheck(); + if (innerChanged) { + _src.targetGO = null; + GUI.changed = true; + } + if (_src.targetIsSelf) GUILayout.Label(_GuiC_selfTarget_true.tooltip); + else { + using (new DeGUI.ColorScope(null, null, _src.targetGO == null ? Color.red : Color.white)) { + _src.targetGO = (GameObject)EditorGUILayout.ObjectField(_src.targetGO, typeof(GameObject), true); + } + _src.tweenTargetIsTargetGO = DeGUILayout.ToggleButton( + _src.tweenTargetIsTargetGO, _src.tweenTargetIsTargetGO ? _GuiC_tweenTargetIsTargetGO_true : _GuiC_tweenTargetIsTargetGO_false, + GUILayout.Width(131) + ); + } + bool check = EditorGUI.EndChangeCheck(); + if (check) _refreshRequired = true; + GUILayout.EndHorizontal(); + + GameObject targetGO = _src.targetIsSelf ? _src.gameObject : _src.targetGO; + + if (targetGO == null) { + // Uses external target gameObject but it's not set + if (_src.targetGO != null || _src.target != null) { + _src.targetGO = null; + _src.target = null; + GUI.changed = true; + } + } else { + GUILayout.BeginHorizontal(); + DOTweenAnimation.AnimationType prevAnimType = _src.animationType; +// _src.animationType = (DOTweenAnimation.AnimationType)EditorGUILayout.EnumPopup(_src.animationType, EditorGUIUtils.popupButton); + GUI.enabled = GUI.enabled && _src.isActive; + _src.animationType = AnimationToDOTweenAnimationType(_AnimationType[EditorGUILayout.Popup(DOTweenAnimationTypeToPopupId(_src.animationType), _AnimationType)]); + _src.autoGenerate = DeGUILayout.ToggleButton(_src.autoGenerate, new GUIContent("AutoGenerate", "If selected, the tween will be generated at startup (during Start for RectTransform position tween, Awake for all the others)")); + if (_src.autoGenerate) { + _src.autoPlay = DeGUILayout.ToggleButton(_src.autoPlay, new GUIContent("AutoPlay", "If selected, the tween will play automatically")); + } + _src.autoKill = DeGUILayout.ToggleButton(_src.autoKill, new GUIContent("AutoKill", "If selected, the tween will be killed when it completes, and won't be reusable")); + GUILayout.EndHorizontal(); + if (prevAnimType != _src.animationType) { + // Set default optional values based on animation type + _src.endValueTransform = null; + _src.useTargetAsV3 = false; + switch (_src.animationType) { + case DOTweenAnimation.AnimationType.Move: + case DOTweenAnimation.AnimationType.LocalMove: + case DOTweenAnimation.AnimationType.Rotate: + case DOTweenAnimation.AnimationType.LocalRotate: + case DOTweenAnimation.AnimationType.Scale: + _src.endValueV3 = Vector3.zero; + _src.endValueFloat = 0; + _src.optionalBool0 = _src.animationType == DOTweenAnimation.AnimationType.Scale; + break; + case DOTweenAnimation.AnimationType.UIWidthHeight: + _src.endValueV3 = Vector3.zero; + _src.endValueFloat = 0; + _src.optionalBool0 = _src.animationType == DOTweenAnimation.AnimationType.UIWidthHeight; + break; + case DOTweenAnimation.AnimationType.FillAmount: + _src.endValueFloat = 1; + break; + case DOTweenAnimation.AnimationType.Color: + case DOTweenAnimation.AnimationType.Fade: + _isLightSrc = targetGO.GetComponent() != null; + _src.endValueFloat = 0; + break; + case DOTweenAnimation.AnimationType.Text: + _src.optionalBool0 = true; + break; + case DOTweenAnimation.AnimationType.PunchPosition: + case DOTweenAnimation.AnimationType.PunchRotation: + case DOTweenAnimation.AnimationType.PunchScale: + _src.endValueV3 = _src.animationType == DOTweenAnimation.AnimationType.PunchRotation ? new Vector3(0, 180, 0) : Vector3.one; + _src.optionalFloat0 = 1; + _src.optionalInt0 = 10; + _src.optionalBool0 = false; + break; + case DOTweenAnimation.AnimationType.ShakePosition: + case DOTweenAnimation.AnimationType.ShakeRotation: + case DOTweenAnimation.AnimationType.ShakeScale: + _src.endValueV3 = _src.animationType == DOTweenAnimation.AnimationType.ShakeRotation ? new Vector3(90, 90, 90) : Vector3.one; + _src.optionalInt0 = 10; + _src.optionalFloat0 = 90; + _src.optionalBool0 = false; + _src.optionalBool1 = true; + break; + case DOTweenAnimation.AnimationType.CameraAspect: + case DOTweenAnimation.AnimationType.CameraFieldOfView: + case DOTweenAnimation.AnimationType.CameraOrthoSize: + _src.endValueFloat = 0; + break; + case DOTweenAnimation.AnimationType.CameraPixelRect: + case DOTweenAnimation.AnimationType.CameraRect: + _src.endValueRect = new Rect(0, 0, 0, 0); + break; + } + } + if (_src.animationType == DOTweenAnimation.AnimationType.None) { + _src.isValid = false; + if (GUI.changed) EditorUtility.SetDirty(_src); + return; + } + + if (_refreshRequired || prevAnimType != _src.animationType || ComponentsChanged()) { + _refreshRequired = false; + _src.isValid = Validate(targetGO); + // See if we need to choose between multiple targets +#if true // UI_MARKER + if (_src.animationType == DOTweenAnimation.AnimationType.Fade && targetGO.GetComponent() != null && targetGO.GetComponent() != null) { + _chooseTargetMode = ChooseTargetMode.BetweenCanvasGroupAndImage; + // Reassign target and forcedTargetType if lost + if (_src.forcedTargetType == DOTweenAnimation.TargetType.Unset) _src.forcedTargetType = _src.targetType; + switch (_src.forcedTargetType) { + case DOTweenAnimation.TargetType.CanvasGroup: + _src.target = targetGO.GetComponent(); + break; + case DOTweenAnimation.TargetType.Image: + _src.target = targetGO.GetComponent(); + break; + } + } else { +#endif + _chooseTargetMode = ChooseTargetMode.None; + _src.forcedTargetType = DOTweenAnimation.TargetType.Unset; +#if true // UI_MARKER + } +#endif + } + + if (!_src.isValid) { + GUI.color = Color.red; + GUILayout.BeginVertical(GUI.skin.box); + GUILayout.Label("No valid Component was found for the selected animation", EditorGUIUtils.wordWrapLabelStyle); + GUILayout.EndVertical(); + GUI.color = Color.white; + if (GUI.changed) EditorUtility.SetDirty(_src); + return; + } + +#if true // UI_MARKER + // Special cases in which multiple target types could be used (set after validation) + if (_chooseTargetMode == ChooseTargetMode.BetweenCanvasGroupAndImage && _src.forcedTargetType != DOTweenAnimation.TargetType.Unset) { + FadeTargetType fadeTargetType = (FadeTargetType)Enum.Parse(typeof(FadeTargetType), _src.forcedTargetType.ToString()); + DOTweenAnimation.TargetType prevTargetType = _src.forcedTargetType; + _src.forcedTargetType = (DOTweenAnimation.TargetType)Enum.Parse(typeof(DOTweenAnimation.TargetType), EditorGUILayout.EnumPopup(_src.animationType + " Target", fadeTargetType).ToString()); + if (_src.forcedTargetType != prevTargetType) { + // Target type change > assign correct target + switch (_src.forcedTargetType) { + case DOTweenAnimation.TargetType.CanvasGroup: + _src.target = targetGO.GetComponent(); + break; + case DOTweenAnimation.TargetType.Image: + _src.target = targetGO.GetComponent(); + break; + } + } + } +#endif + + GUILayout.BeginHorizontal(); + _src.duration = EditorGUILayout.FloatField("Duration", _src.duration); + if (_src.duration < 0) _src.duration = 0; + _src.isSpeedBased = DeGUILayout.ToggleButton(_src.isSpeedBased, new GUIContent("SpeedBased", "If selected, the duration will count as units/degree x second"), DeGUI.styles.button.tool, GUILayout.Width(75)); + GUILayout.EndHorizontal(); + _src.delay = EditorGUILayout.FloatField("Delay", _src.delay); + if (_src.delay < 0) _src.delay = 0; + _src.isIndependentUpdate = EditorGUILayout.Toggle("Ignore TimeScale", _src.isIndependentUpdate); + _src.easeType = EditorGUIUtils.FilteredEasePopup("Ease", _src.easeType); + if (_src.easeType == Ease.INTERNAL_Custom) { + _src.easeCurve = EditorGUILayout.CurveField(" Ease Curve", _src.easeCurve); + } + _src.loops = EditorGUILayout.IntField(new GUIContent("Loops", "Set to -1 for infinite loops"), _src.loops); + if (_src.loops < -1) _src.loops = -1; + if (_src.loops > 1 || _src.loops == -1) + _src.loopType = (LoopType)EditorGUILayout.EnumPopup(" Loop Type", _src.loopType); + _src.id = EditorGUILayout.TextField("ID", _src.id); + + bool canBeRelative = true; + // End value and eventual specific options + switch (_src.animationType) { + case DOTweenAnimation.AnimationType.Move: + case DOTweenAnimation.AnimationType.LocalMove: + GUIEndValueV3(targetGO, _src.animationType == DOTweenAnimation.AnimationType.Move); + _src.optionalBool0 = EditorGUILayout.Toggle(" Snapping", _src.optionalBool0); + canBeRelative = !_src.useTargetAsV3; + break; + case DOTweenAnimation.AnimationType.Rotate: + case DOTweenAnimation.AnimationType.LocalRotate: + bool isRigidbody2D = DOTweenModuleUtils.Physics.HasRigidbody2D(_src); + if (isRigidbody2D) GUIEndValueFloat(); + else { + GUIEndValueV3(targetGO); + _src.optionalRotationMode = (RotateMode)EditorGUILayout.EnumPopup(" Rotation Mode", _src.optionalRotationMode); + } + break; + case DOTweenAnimation.AnimationType.Scale: + if (_src.optionalBool0) GUIEndValueFloat(); + else GUIEndValueV3(targetGO); + _src.optionalBool0 = EditorGUILayout.Toggle("Uniform Scale", _src.optionalBool0); + break; + case DOTweenAnimation.AnimationType.UIWidthHeight: + if (_src.optionalBool0) GUIEndValueFloat(); + else GUIEndValueV2(); + _src.optionalBool0 = EditorGUILayout.Toggle("Uniform Scale", _src.optionalBool0); + break; + case DOTweenAnimation.AnimationType.FillAmount: + GUIEndValueFloat(); + if (_src.endValueFloat < 0) _src.endValueFloat = 0; + if (_src.endValueFloat > 1) _src.endValueFloat = 1; + canBeRelative = false; + break; + case DOTweenAnimation.AnimationType.Color: + GUIEndValueColor(); + canBeRelative = false; + break; + case DOTweenAnimation.AnimationType.Fade: + GUIEndValueFloat(); + if (_src.endValueFloat < 0) _src.endValueFloat = 0; + if (!_isLightSrc && _src.endValueFloat > 1) _src.endValueFloat = 1; + canBeRelative = false; + break; + case DOTweenAnimation.AnimationType.Text: + GUIEndValueString(); + _src.optionalBool0 = EditorGUILayout.Toggle("Rich Text Enabled", _src.optionalBool0); + _src.optionalScrambleMode = (ScrambleMode)EditorGUILayout.EnumPopup("Scramble Mode", _src.optionalScrambleMode); + _src.optionalString = EditorGUILayout.TextField(new GUIContent("Custom Scramble", "Custom characters to use in case of ScrambleMode.Custom"), _src.optionalString); + break; + case DOTweenAnimation.AnimationType.PunchPosition: + case DOTweenAnimation.AnimationType.PunchRotation: + case DOTweenAnimation.AnimationType.PunchScale: + GUIEndValueV3(targetGO); + canBeRelative = false; + _src.optionalInt0 = EditorGUILayout.IntSlider(new GUIContent(" Vibrato", "How much will the punch vibrate"), _src.optionalInt0, 1, 50); + _src.optionalFloat0 = EditorGUILayout.Slider(new GUIContent(" Elasticity", "How much the vector will go beyond the starting position when bouncing backwards"), _src.optionalFloat0, 0, 1); + if (_src.animationType == DOTweenAnimation.AnimationType.PunchPosition) _src.optionalBool0 = EditorGUILayout.Toggle(" Snapping", _src.optionalBool0); + break; + case DOTweenAnimation.AnimationType.ShakePosition: + case DOTweenAnimation.AnimationType.ShakeRotation: + case DOTweenAnimation.AnimationType.ShakeScale: + GUIEndValueV3(targetGO); + canBeRelative = false; + _src.optionalInt0 = EditorGUILayout.IntSlider(new GUIContent(" Vibrato", "How much will the shake vibrate"), _src.optionalInt0, 1, 50); + using (new GUILayout.HorizontalScope()) { + _src.optionalFloat0 = EditorGUILayout.Slider(new GUIContent(" Randomness", "The shake randomness"), _src.optionalFloat0, 0, 90); + _src.optionalShakeRandomnessMode = (ShakeRandomnessMode)EditorGUILayout.EnumPopup(_src.optionalShakeRandomnessMode, GUILayout.Width(70)); + } + _src.optionalBool1 = EditorGUILayout.Toggle(new GUIContent(" FadeOut", "If selected the shake will fade out, otherwise it will constantly play with full force"), _src.optionalBool1); + if (_src.animationType == DOTweenAnimation.AnimationType.ShakePosition) _src.optionalBool0 = EditorGUILayout.Toggle(" Snapping", _src.optionalBool0); + break; + case DOTweenAnimation.AnimationType.CameraAspect: + case DOTweenAnimation.AnimationType.CameraFieldOfView: + case DOTweenAnimation.AnimationType.CameraOrthoSize: + GUIEndValueFloat(); + canBeRelative = false; + break; + case DOTweenAnimation.AnimationType.CameraBackgroundColor: + GUIEndValueColor(); + canBeRelative = false; + break; + case DOTweenAnimation.AnimationType.CameraPixelRect: + case DOTweenAnimation.AnimationType.CameraRect: + GUIEndValueRect(); + canBeRelative = false; + break; + } + + // Final settings + if (canBeRelative) _src.isRelative = EditorGUILayout.Toggle(" Relative", _src.isRelative); + + // Events + AnimationInspectorGUI.AnimationEvents(this, _src); + } + EditorGUI.EndDisabledGroup(); + + if (GUI.changed) EditorUtility.SetDirty(_src); + } + + #endregion + + #region Methods + + // Returns TRUE if the Component layout on the src gameObject changed (a Component was added or removed) + bool ComponentsChanged() + { + int prevTotComponentsOnSrc = _totComponentsOnSrc; + _totComponentsOnSrc = _src.gameObject.GetComponents().Length; + return prevTotComponentsOnSrc != _totComponentsOnSrc; + } + + // Checks if a Component that can be animated with the given animationType is attached to the src + bool Validate(GameObject targetGO) + { + if (_src.animationType == DOTweenAnimation.AnimationType.None) return false; + + Component srcTarget; + // First check for external plugins +#if false // TK2D_MARKER + if (_Tk2dAnimationTypeToComponent.ContainsKey(_src.animationType)) { + foreach (Type t in _Tk2dAnimationTypeToComponent[_src.animationType]) { + srcTarget = targetGO.GetComponent(t); + if (srcTarget != null) { + _src.target = srcTarget; + _src.targetType = DOTweenAnimation.TypeToDOTargetType(t); + return true; + } + } + } +#endif +#if false // TEXTMESHPRO_MARKER + if (_TMPAnimationTypeToComponent.ContainsKey(_src.animationType)) { + foreach (Type t in _TMPAnimationTypeToComponent[_src.animationType]) { + srcTarget = targetGO.GetComponent(t); + if (srcTarget != null) { + _src.target = srcTarget; + _src.targetType = DOTweenAnimation.TypeToDOTargetType(t); + return true; + } + } + } +#endif + // Then check for regular stuff + if (_AnimationTypeToComponent.ContainsKey(_src.animationType)) { + foreach (Type t in _AnimationTypeToComponent[_src.animationType]) { + srcTarget = targetGO.GetComponent(t); + if (srcTarget != null) { + _src.target = srcTarget; + _src.targetType = DOTweenAnimation.TypeToDOTargetType(t); + return true; + } + } + } + return false; + } + + DOTweenAnimation.AnimationType AnimationToDOTweenAnimationType(string animation) + { + if (_datString == null) _datString = Enum.GetNames(typeof(DOTweenAnimation.AnimationType)); + animation = animation.Replace("/", ""); + return (DOTweenAnimation.AnimationType)(Array.IndexOf(_datString, animation)); + } + int DOTweenAnimationTypeToPopupId(DOTweenAnimation.AnimationType animation) + { + return Array.IndexOf(_animationTypeNoSlashes, animation.ToString()); + } + + #endregion + + #region GUI Draw Methods + + void GUIEndValueFloat() + { + GUILayout.BeginHorizontal(); + GUIToFromButton(); + _src.endValueFloat = EditorGUILayout.FloatField(_src.endValueFloat); + GUILayout.EndHorizontal(); + } + + void GUIEndValueColor() + { + GUILayout.BeginHorizontal(); + GUIToFromButton(); + _src.endValueColor = EditorGUILayout.ColorField(_src.endValueColor); + GUILayout.EndHorizontal(); + } + + void GUIEndValueV3(GameObject targetGO, bool optionalTransform = false) + { + GUILayout.BeginHorizontal(); + GUIToFromButton(); + if (_src.useTargetAsV3) { + Transform prevT = _src.endValueTransform; + _src.endValueTransform = EditorGUILayout.ObjectField(_src.endValueTransform, typeof(Transform), true) as Transform; + if (_src.endValueTransform != prevT && _src.endValueTransform != null) { +#if true // UI_MARKER + // Check that it's a Transform for a Transform or a RectTransform for a RectTransform + if (targetGO.GetComponent() != null) { + if (_src.endValueTransform.GetComponent() == null) { + EditorUtility.DisplayDialog("DOTween Pro", "For Unity UI elements, the target must also be a UI element", "Ok"); + _src.endValueTransform = null; + } + } else if (_src.endValueTransform.GetComponent() != null) { + EditorUtility.DisplayDialog("DOTween Pro", "You can't use a UI target for a non UI object", "Ok"); + _src.endValueTransform = null; + } +#endif + } + } else { + _src.endValueV3 = EditorGUILayout.Vector3Field("", _src.endValueV3, GUILayout.Height(16)); + } + if (optionalTransform) { + if (GUILayout.Button(_src.useTargetAsV3 ? "target" : "value", EditorGUIUtils.sideBtStyle, GUILayout.Width(44))) _src.useTargetAsV3 = !_src.useTargetAsV3; + } + GUILayout.EndHorizontal(); +#if true // UI_MARKER + if (_src.useTargetAsV3 && _src.endValueTransform != null && _src.target is RectTransform) { + EditorGUILayout.HelpBox("NOTE: when using a UI target, the tween will be created during Start instead of Awake", MessageType.Info); + } +#endif + } + + void GUIEndValueV2() + { + GUILayout.BeginHorizontal(); + GUIToFromButton(); + _src.endValueV2 = EditorGUILayout.Vector2Field("", _src.endValueV2, GUILayout.Height(16)); + GUILayout.EndHorizontal(); + } + + void GUIEndValueString() + { + GUILayout.BeginHorizontal(); + GUIToFromButton(); + _src.endValueString = EditorGUILayout.TextArea(_src.endValueString, EditorGUIUtils.wordWrapTextArea); + GUILayout.EndHorizontal(); + } + + void GUIEndValueRect() + { + GUILayout.BeginHorizontal(); + GUIToFromButton(); + _src.endValueRect = EditorGUILayout.RectField(_src.endValueRect); + GUILayout.EndHorizontal(); + } + + void GUIToFromButton() + { + if (GUILayout.Button(_src.isFrom ? "FROM" : "TO", EditorGUIUtils.sideBtStyle, GUILayout.Width(90))) _src.isFrom = !_src.isFrom; + GUILayout.Space(16); + } + + #endregion + } + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + [InitializeOnLoad] + static class Initializer + { + static Initializer() + { + DOTweenAnimation.OnReset += OnReset; + } + + static void OnReset(DOTweenAnimation src) + { + DOTweenSettings settings = DOTweenUtilityWindow.GetDOTweenSettings(); + if (settings == null) return; + + Undo.RecordObject(src, "DOTweenAnimation"); + src.autoPlay = settings.defaultAutoPlay == AutoPlay.All || settings.defaultAutoPlay == AutoPlay.AutoPlayTweeners; + src.autoKill = settings.defaultAutoKill; + EditorUtility.SetDirty(src); + } + } +} diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenAnimationInspector.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenAnimationInspector.cs.meta new file mode 100644 index 00000000..d2d7eee1 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenAnimationInspector.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e0203fd81362bab4d842d87ad09ee76e +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenPreviewManager.cs b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenPreviewManager.cs new file mode 100644 index 00000000..73d8a6b3 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenPreviewManager.cs @@ -0,0 +1,265 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2015/03/12 16:03 + +using System; +using System.Collections.Generic; +using DG.DemiEditor; +using DG.DemiLib; +using DG.Tweening; +using DG.Tweening.Core; +using UnityEditor; +using UnityEditorInternal; +using UnityEngine; +using Object = UnityEngine.Object; + +namespace DG.DOTweenEditor +{ + public static class DOTweenPreviewManager + { + static bool _previewOnlyIfSetToAutoPlay = true; + static readonly Dictionary _AnimationToTween = new Dictionary(); + static readonly List _TmpKeys = new List(); + + #region Public Methods & GUI + + /// + /// Returns TRUE if its actually previewing animations + /// + public static bool PreviewGUI(DOTweenAnimation src) + { + if (EditorApplication.isPlaying) return false; + + Styles.Init(); + + bool isPreviewing = _AnimationToTween.Count > 0; + bool isPreviewingThis = isPreviewing && _AnimationToTween.ContainsKey(src); + + // Preview in editor + GUI.backgroundColor = isPreviewing + ? new DeSkinColor(new Color(0.49f, 0.8f, 0.86f), new Color(0.15f, 0.26f, 0.35f)) + : new DeSkinColor(Color.white, new Color(0.13f, 0.13f, 0.13f)); + GUILayout.BeginVertical(Styles.previewBox); + DeGUI.ResetGUIColors(); + GUILayout.BeginHorizontal(); + GUILayout.Label("Preview Mode - Experimental", Styles.previewLabel); + _previewOnlyIfSetToAutoPlay = DeGUILayout.ToggleButton( + _previewOnlyIfSetToAutoPlay, + new GUIContent("AutoPlay only", "If toggled only previews animations that have AutoPlay turned ON"), + Styles.btOption + ); + GUILayout.EndHorizontal(); + GUILayout.Space(1); + // Preview - Play + GUILayout.BeginHorizontal(); + EditorGUI.BeginDisabledGroup( + isPreviewingThis || src.animationType == DOTweenAnimation.AnimationType.None + || !src.isActive || _previewOnlyIfSetToAutoPlay && !src.autoPlay + ); + if (GUILayout.Button("► Play", Styles.btPreview)) { + if (!isPreviewing) StartupGlobalPreview(); + AddAnimationToGlobalPreview(src); + } + EditorGUI.EndDisabledGroup(); + EditorGUI.BeginDisabledGroup(isPreviewing); + if (GUILayout.Button("► Play All on GameObject", Styles.btPreview)) { + if (!isPreviewing) StartupGlobalPreview(); + DOTweenAnimation[] anims = src.gameObject.GetComponents(); + foreach (DOTweenAnimation anim in anims) AddAnimationToGlobalPreview(anim); + } + if (GUILayout.Button("► Play All in Scene", Styles.btPreview)) { + if (!isPreviewing) StartupGlobalPreview(); + // DOTweenAnimation[] anims = Object.FindObjectsOfType(); // OBSOLETE + DOTweenAnimation[] anims = DeEditorCompatibilityUtils.FindObjectsOfType(); + foreach (DOTweenAnimation anim in anims) AddAnimationToGlobalPreview(anim); + } + EditorGUI.EndDisabledGroup(); + GUILayout.EndHorizontal(); + // Preview - Stop + GUILayout.BeginHorizontal(); + EditorGUI.BeginDisabledGroup(!isPreviewingThis); + if (GUILayout.Button("■ Stop", Styles.btPreview)) { + if (_AnimationToTween.ContainsKey(src)) StopPreview(_AnimationToTween[src].tween); + } + EditorGUI.EndDisabledGroup(); + EditorGUI.BeginDisabledGroup(!isPreviewing); + if (GUILayout.Button("■ Stop All on GameObject", Styles.btPreview)) { + StopPreview(src.gameObject); + } + if (GUILayout.Button("■ Stop All in Scene", Styles.btPreview)) { + StopAllPreviews(); + } + EditorGUI.EndDisabledGroup(); + GUILayout.EndHorizontal(); + if (isPreviewing) { + int playingTweens = 0; + int completedTweens = 0; + int pausedTweens = 0; + foreach (KeyValuePair kvp in _AnimationToTween) { + Tween t = kvp.Value.tween; + if (t.IsPlaying()) playingTweens++; + else if (t.IsComplete()) completedTweens++; + else pausedTweens++; + } + GUILayout.Label("Playing Tweens: " + playingTweens, Styles.previewStatusLabel); + GUILayout.Label("Completed Tweens: " + completedTweens, Styles.previewStatusLabel); +// GUILayout.Label("Paused Tweens: " + playingTweens); + } + GUILayout.EndVertical(); + + return isPreviewing; + } + +#if !(UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5) + public static void StopAllPreviews(PlayModeStateChange state) + { + StopAllPreviews(); + } +#endif + + public static void StopAllPreviews() + { + _TmpKeys.Clear(); + foreach (KeyValuePair kvp in _AnimationToTween) { + _TmpKeys.Add(kvp.Key); + } + StopPreview(_TmpKeys); + _TmpKeys.Clear(); + _AnimationToTween.Clear(); + + DOTweenEditorPreview.Stop(); +#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 + UnityEditor.EditorApplication.playmodeStateChanged -= StopAllPreviews; +#else + UnityEditor.EditorApplication.playModeStateChanged -= StopAllPreviews; +#endif +// EditorApplication.playmodeStateChanged -= StopAllPreviews; + + InternalEditorUtility.RepaintAllViews(); + } + +#endregion + +#region Methods + + static void StartupGlobalPreview() + { + DOTweenEditorPreview.Start(); +#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 + UnityEditor.EditorApplication.playmodeStateChanged += StopAllPreviews; +#else + UnityEditor.EditorApplication.playModeStateChanged += StopAllPreviews; +#endif +// EditorApplication.playmodeStateChanged += StopAllPreviews; + } + + static void AddAnimationToGlobalPreview(DOTweenAnimation src) + { + if (!src.isActive) return; // Ignore sources whose tweens have been set to inactive + if (_previewOnlyIfSetToAutoPlay && !src.autoPlay) return; + + Tween t = src.CreateEditorPreview(); + if (t == null) return; + _AnimationToTween.Add(src, new TweenInfo(src, t, src.isFrom)); + // Tween setup + DOTweenEditorPreview.PrepareTweenForPreview(t); + } + + static void StopPreview(GameObject go) + { + _TmpKeys.Clear(); + foreach (KeyValuePair kvp in _AnimationToTween) { + if (kvp.Key.gameObject != go) continue; + _TmpKeys.Add(kvp.Key); + } + StopPreview(_TmpKeys); + _TmpKeys.Clear(); + + if (_AnimationToTween.Count == 0) StopAllPreviews(); + else InternalEditorUtility.RepaintAllViews(); + } + + static void StopPreview(Tween t) + { + TweenInfo tInfo = null; + foreach (KeyValuePair kvp in _AnimationToTween) { + if (kvp.Value.tween != t) continue; + tInfo = kvp.Value; + _AnimationToTween.Remove(kvp.Key); + break; + } + if (tInfo == null) { + Debug.LogWarning("DOTween Preview ► Couldn't find tween to stop"); + return; + } + if (tInfo.isFrom) { + int totLoops = tInfo.tween.Loops(); + if (totLoops < 0 || totLoops > 1) { + tInfo.tween.Goto(tInfo.tween.Duration(false)); + } else tInfo.tween.Complete(); + } else tInfo.tween.Rewind(); + tInfo.tween.Kill(); + EditorUtility.SetDirty(tInfo.animation); // Refresh views + + if (_AnimationToTween.Count == 0) StopAllPreviews(); + else InternalEditorUtility.RepaintAllViews(); + } + + // Stops while iterating inversely, which deals better with tweens that overwrite each other + static void StopPreview(List keys) + { + for (int i = keys.Count - 1; i > -1; --i) { + DOTweenAnimation anim = keys[i]; + TweenInfo tInfo = _AnimationToTween[anim]; + if (tInfo.isFrom) { + int totLoops = tInfo.tween.Loops(); + if (totLoops < 0 || totLoops > 1) { + tInfo.tween.Goto(tInfo.tween.Duration(false)); + } else tInfo.tween.Complete(); + } else tInfo.tween.Rewind(); + tInfo.tween.Kill(); + EditorUtility.SetDirty(anim); // Refresh views + _AnimationToTween.Remove(anim); + } + } + +#endregion + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + class TweenInfo + { + public DOTweenAnimation animation; + public Tween tween; + public bool isFrom; + public TweenInfo(DOTweenAnimation animation, Tween tween, bool isFrom) + { + this.animation = animation; + this.tween = tween; + this.isFrom = isFrom; + } + } + + static class Styles + { + static bool _initialized; + + public static GUIStyle previewBox, previewLabel, btOption, btPreview, previewStatusLabel; + + public static void Init() + { + if (_initialized) return; + + _initialized = true; + + previewBox = new GUIStyle(GUI.skin.box).Clone().Padding(1, 1, 0, 3) + .Background(DeStylePalette.squareBorderCurved_darkBorders).Border(7, 7, 7, 7); + previewLabel = new GUIStyle(GUI.skin.label).Clone(10, FontStyle.Bold).Padding(1, 0, 3, 0).Margin(3, 6, 0, 0).StretchWidth(false); + btOption = DeGUI.styles.button.bBlankBorderCompact.MarginBottom(2).MarginRight(4); + btPreview = EditorStyles.miniButton.Clone(Format.RichText); + previewStatusLabel = EditorStyles.miniLabel.Clone().Padding(4, 0, 0, 0).Margin(0); + } + } + } +} diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenPreviewManager.cs.meta b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenPreviewManager.cs.meta new file mode 100644 index 00000000..53780cce --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenPreviewManager.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 22292a5f27a9a644ba9e6ad1bf863531 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML new file mode 100644 index 00000000..ad80aef0 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML @@ -0,0 +1,18 @@ + + + + DOTweenProEditor + + + + + Custom colors + + + + + Needs to be overridden in order to initialize new styles added from inherited classes + + + + diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML.meta b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML.meta new file mode 100644 index 00000000..f37a1335 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 753a4f4ed73b17143923101226957756 +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll new file mode 100644 index 00000000..21d3e800 Binary files /dev/null and b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll differ diff --git a/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.meta b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.meta new file mode 100644 index 00000000..62ab8c09 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: a6402d4311c862b4eb1325590d6466af +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + DefaultValueInitialized: true + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DOTweenPro/readme.txt b/Assets/Plugins/Demigiant/DOTweenPro/readme.txt new file mode 100644 index 00000000..9837c952 --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/readme.txt @@ -0,0 +1,35 @@ +DOTween and DOTween Pro are copyright (c) 2014-2018 Daniele Giardini - Demigiant + +// IMPORTANT!!! ///////////////////////////////////////////// +// Upgrading DOTween from versions older than 1.2.000 /////// +// (or DOTween Pro older than 1.0.000) ////////////////////// +------------------------------------------------------------- +If you're upgrading your project from a version of DOTween older than 1.2.000 (or DOTween Pro older than 1.0.000) please follow these instructions carefully. +1) Import the new version in the same folder as the previous one, overwriting old files. A lot of errors will appear but don't worry +2) Close and reopen Unity (and your project). This is fundamental: skipping this step will cause a bloodbath +3) Open DOTween's Utility Panel (Tools > Demigiant > DOTween Utility Panel) if it doesn't open automatically, then press "Setup DOTween...": this will run the upgrade setup +4) From the Add/Remove Modules panel that opens, activate/deactivate Modules for Unity systems and for external assets (like TextMesh Pro) + +// GET STARTED ////////////////////////////////////////////// + +- After importing a new DOTween update, select DOTween's Utility Panel from the "Tools/Demigiant" menu (if it doesn't open automatically) and press the "Setup DOTween..." button to activate/deactivate Modules. You can also access a Preferences Tab from there to choose default settings for DOTween. + +// VISUAL SCRIPTING (PRO ONLY) +- To animate a gameObject, select it and choose "Add Component > DOTween > DOTween Animation" +- To animate a gameObject along a path, select it and choose "Add Component > DOTween > DOTween Path" + +// SCRIPTING +- In your code, add "using DG.Tweening" to each class where you want to use DOTween. +- You're ready to tween. Check out the links below for full documentation and license info. + + +// LINKS /////////////////////////////////////////////////////// + +DOTween website (documentation, examples, etc): http://dotween.demigiant.com +DOTween license: http://dotween.demigiant.com/license.php +DOTween repository (Google Code): https://code.google.com/p/dotween/ +Demigiant website (documentation, examples, etc): http://www.demigiant.com + +// NOTES ////////////////////////////////////////////////////// + +- DOTween's Utility Panel can be found under "Tools > Demigiant > DOTween Utility Panel" and also contains other useful options, plus a tab to set DOTween's preferences \ No newline at end of file diff --git a/Assets/Plugins/Demigiant/DOTweenPro/readme.txt.meta b/Assets/Plugins/Demigiant/DOTweenPro/readme.txt.meta new file mode 100644 index 00000000..6a87c35d --- /dev/null +++ b/Assets/Plugins/Demigiant/DOTweenPro/readme.txt.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: aa8f07903bf128e44a7d0b91a63dedab +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib.meta b/Assets/Plugins/Demigiant/DemiLib.meta new file mode 100644 index 00000000..edcf2cce --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib.meta @@ -0,0 +1,21 @@ +fileFormatVersion: 2 +guid: 5a499e4809836274eb38cd99b370a2c1 +labels: +- Tween +- Tweening +- Animation +- HOTween +- Paths +- iTween +- DFTween +- LeanTween +- Ease +- Easing +- Shake +- Punch +- 2DToolkit +- TextMeshPro +- Text +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core.meta b/Assets/Plugins/Demigiant/DemiLib/Core.meta new file mode 100644 index 00000000..86e50754 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 03513cf143bb144409fbb3a51ec77b1b +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll new file mode 100644 index 00000000..1024e34b Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll.meta b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll.meta new file mode 100644 index 00000000..1ed91993 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 54be29b67d0d29a478da2c6e5c62f091 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Any: + enabled: 1 + settings: {} + Editor: + enabled: 0 + settings: + DefaultValueInitialized: true + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml new file mode 100644 index 00000000..6322fe3d --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml @@ -0,0 +1,231 @@ + + + + DemiLib + + + + + Class attribute + Sets the script execution order index + + + + + Sets the script execution order for this class + + Script execution order index + + + + Set when calling DeGUI.BeginGUI + + + + + Stores a color palette, which can be passed to default DeGUI layouts when calling DeGUI.BeginGUI, + and changed at any time by calling DeGUI.ChangePalette. + You can inherit from this class to create custom color palettes with more hColor options. + + + + + Converts a HEX color to a Unity Color and returns it + + The HEX color, either with or without the initial # (accepts both regular and short format) + + + + Global colors + + + + + Background colors + + + + Editor background color + + + + Content colors + + + + + Toggle button specific colors + + + + + Various Input utils + + + + + Returns a number key int if a number key was pressed in this frame, or -1 otherwise + + + + + + Extend this to replicate Unity's Scope system with any Unity version. + Thanks to Dmitriy Yukhanov for pointing this out and creating an initial version. + Expand this class to create scopes. + Example: + public class VBoxScope : DeScope + { + public VBoxScope(GUIStyle style) + { + BeginVBox(style); + } + + protected override void CloseScope() + { + EndVBox(); + } + } + Usage: + using (new VBoxScope(myStyle) { + // Do something + } + + + + + Contains both free and pro skins color variations, + and automatically returns the correct one when converted to Color + + + + + Used by DeHierarchy + + + + + Returns a list of all items whose gameObject is NULL, or NULL if there's no missing gameObjects. + + + + + If the item exists sets it, otherwise first creates it and then sets it + + + + + If the item exists sets it, otherwise first creates it and then sets it + + + + + If the item exists sets it, otherwise first creates it and then sets it + + + + + Returns TRUE if the item existed and was removed. + + + + + Returns TRUE if the item existed and was changed. + + + + + Returns the customizedItem for the given gameObject, or NULL if none was found + + + + + Returns the color corresponding to the given + + + + Must be univocal + + + Node position in editor GUI + + + Ids of all forward connected nodes. Length indicates how many forward connections are allowed. + Min length represents available connections from node. + + + + A serializable struct including a min and a max int value + + + + Min value + + + Max value + + + + Creates a new Range + + + + + Returns a random value within this range (min/max included) + + + + + + + + A serializable struct including a min and a max float value + + + + Min value + + + Max value + + + + Creates a new Range + + + + + Returns a random value within this range (min/max included) + + + + + + + + Returns ONLY the Components in the children, and ignores the parent. + + If TRUE also includes inactive children + + + + Returns the Component only if it's in a child, and ignores the parent. + + If TRUE also searches inactive children + + + + Returns a HEX version of the given Unity Color, without the initial # + + If TRUE, also converts the alpha value and returns a hex of 8 characters, + otherwise doesn't and returns a hex of 6 characters + + + + Returns a HEX version of the given Unity Color, without the initial # + + If TRUE, also converts the alpha value and returns a hex of 8 characters, + otherwise doesn't and returns a hex of 6 characters + + + diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml.meta b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml.meta new file mode 100644 index 00000000..473a9b57 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 9bf2564c9817bb34988453ae948954d2 +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor.meta new file mode 100644 index 00000000..11f8e334 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 77fbbad1c51d68f4c844d26743104b07 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll new file mode 100644 index 00000000..8012e1ee Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.meta new file mode 100644 index 00000000..aa20ddfe --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 202f9ddaf2c1a8a429504f7f3cd7b84f +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + DefaultValueInitialized: true + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.xml b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.xml new file mode 100644 index 00000000..a3452ab5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.xml @@ -0,0 +1,2370 @@ + + + + DemiEditor + + + + + Utils to use the correct method based on Unity's version + + + + + Encodes to PNG using reflection to use correct method depending if editor is version 2017 or earlier + + + + + Returns the prefab parent by using different code on Unity 2018 or later + + + + + Starts an editor coroutine. You can't use normal yield new WaitFor methods because + those are Unity runtime, but you can instead use . + Other than that, you can use normal yield null/etc. + Returns an (which you can use with to cancel the coroutine), + or NULL in case the coroutine completed immediately. + + + + + Stops the given coroutine generated by + + + + + To be used inside a coroutine as a yield instruction: waits for the given seconds + (replaces Unity's yield new WaitForSeconds because it's not available in-editor). + Example usage: + yield return DeEditorCoroutines.WaitForSeconds(1); + + + + + File utils + + + + Path slash for AssetDatabase format + + + Path slash to replace for AssetDatabase format + + + Current OS path slash + + + Path slash to replace on current OS + + + + Full path to project directory, without final slash. + + + + + Full path to project's Assets directory, without final slash. + + + + + Returns TRUE if the given path is an absolute path + + + + + Returns TRUE if the given path is an AssetDatabase path + + + + + Returns TRUE if the given GUID refers to a valid and existing project folder + + + + + Converts the given project-relative path to a full path + + + + + Converts the given full path to a project-relative path + + + + + Returns TRUE if the file/directory at the given path exists. + + Path, relative to Unity's project folder + + + + Validates the string as a valid fileName + (uses commonly accepted characters an all systems instead of system-specific ones). + BEWARE: doesn't check for reserved words + + string to replace + Minimum length for considering the string valid + + + + Returns TRUE if the given filepath is within this Unity project Assets folder + + Full file path + + + + Returns the given string stripped of any invalid filename characters. + BEWARE: doesn't check for reserved words + + string to replace + Character to use as replacement for invalid ones + + + + Returns the given path with all slashes converted to the correct ones used by the system + + + + + Returns the asset path of the given GUID (relative to Unity project's folder), + or an empty string if either the GUID is invalid or the related path doesn't exist. + + + + + Checks if the given directory (full path) is empty or not + + + + + Deletes all files and subdirectories from the given directory + + + + Returns the adb path to the given ScriptableObject + + + Returns the adb path to the given MonoBehaviour + + + Returns the adb directory that contains the given ScriptableObject without final slash + + + Returns the adb directory that contains the given MonoBehaviour without final slash + + + + Returns the adb paths to the selected folders in the Project panel, or NULL if there is none. + Contrary to Selection.activeObject, which only returns folders selected in the right side of the panel, + this method also works with folders selected in the left side. + + + + + Sets the script execution order of the given MonoBehaviour + + + + + Gets the script execution order of the given MonoBehaviour + + + + + Precisely returns the last controlId assigned to a GUI element + + + + + Framework used to fix missing monoScript reference in GameObjects when a script's meta guid changes + + + + + Retrieves the GUID in the given meta file and returns it, or NULL if it's not found + + Full filePath to the meta file + + + + Fixes all wrong Component GUIDs in scenes and prefabs + + objects to use for the operation + + + + Fixes all wrong Component GUIDs in the active scene and returns the total number of Components fixed + + objects to use for the operation + + + + Finds all MonoBehaviour/Behaviour/Component in the given scene/prefab file string + that contain the given + and replaces their GUID with the one passed (if different). + Returns the total number of Component GUIDs that were fixed + + + + + Dispatched when Unity has finished compiling code and updating the AssetDatabase + + + + + Utils to manage UnityPackages import/export and file mirroring + + + + + Stores all file paths (excluding metas) found in the given AssetDatabase directory and subdirectory + into the given AssetDatabase file (which will be created if missing), + writing them as relative to the given directory. + EXAMPLE: + adbReadFromDirPath = "Plugins/DOTween" + file "Assets/Plugins/DOTween/aScript.cs" stored as "aScript.cs" + file "Assets/Plugins/DOTween/Subdir/aScript.cs" stored as "Subdir/aScript.cs" + + + AssetDatabase path ("Assets/...") where the list should be written + AssetDatabase path ("Assets/...") from which the list of files should be retrieved, without final slash + If TRUE ignores ASMDEF files + + + + Parses a file list created via and removes any files not present in the list from the given directory + + Label to use when logging the result + AssetDatabase path ("Assets/...") to the file containing the list + AssetDatabase path ("Assets/...") to the directory to parse for extra files to remove + If TRUE ignores ASMDEF files + If TRUE only returns a report log and doesn't actually delete the files + + + + Utilities for Editor Panels. + + + + + Connects to a asset. + If the asset already exists at the given path, loads it and returns it. + Otherwise, depending on the given parameters, either returns NULL or automatically creates it before loading and returning it. + + Asset type + File path (relative to Unity's project folder) + If TRUE and the requested asset doesn't exist, forces its creation + If TRUE also creates the path folders if they don't exist + + + + Check if the at the given path exists and eventually if it's available + + File path (relative to Unity's project folder) + If TRUE also check if the file is available + (file can be unavailable if it was deleted outside Unity, or if Unity is just starting) + + + + + Returns TRUE if the given is dockable, FALSE if instead it's a utility window + + + + + + + Sets the icon and title of an editor window. Works with older versions of Unity, where the titleContent property wasn't available. + + Reference to the editor panel whose icon to set + Icon to apply + Title. If NULL doesn't change it + + + + Repaints the currently focues editor + + + + + Prefab utilities + + + + + Behaves as the Inspector's Apply button, applying any modification of this instance to the prefab parent + + + + + + Returns TRUe if a prefab instance has unapplied modifications, ignoring any modifications applied to the transform. + NOTE: this a somehow costly operation (since it generates GC) + + + + + Completely removes any prefab connection from the given prefab instances, by desotroing the original object and recreating it. + Returns a list with all the new elements created. + + Based on RodGreen's method (http://forum.unity3d.com/threads/82883-Breaking-connection-from-gameObject-to-prefab-for-good.?p=726602&viewfull=1#post726602) + + + + + + Completely removes any prefab connection from the given prefab instance, by desotroing the original object and recreating it. + + Based on RodGreen's method (http://forum.unity3d.com/threads/82883-Breaking-connection-from-gameObject-to-prefab-for-good.?p=726602&viewfull=1#post726602) + + + + + Returns TRUE if Unity editor is neither compiling code nor updating assets + + + Calls the given action after the given delay + + + + Return the size of the editor game view, eventual extra bars excluded (meaning the true size of the game area) + + + + + Returns a value from 1 to N (2 for 200% scaling) indicating the UI Scaling of Unity's editor. + The first time this is called it will store the scaling and keep it without refreshing, + since you need to restart Unity in order to apply a scaling change + + + + + Clears all logs from Unity's console + + + + + Adds the given global define (if it's not already present) to all the + or only to the given , depending on passed parameters, + and returns TRUE if it was added, FALSE otherwise. + NOTE: when adding to all of them some legacy warnings might appear, which you can ignore. + + + to use. Leave NULL to add to all of them. + + + + Adds the given list of global defines (if they're not already present) to all the + or only to the given , depending on passed parameters, + and returns TRUE if it was added, FALSE otherwise. + NOTE: when adding to all of them some legacy warnings might appear, which you can ignore. + + Defines to add + to use. Leave NULL to add to all of them. + + + + Removes the given global define (if present) from all the + or only from the given , depending on passed parameters, + and returns TRUE if it was removed, FALSE otherwise. + NOTE: when removing from all of them some legacy warnings might appear, which you can ignore. + + + to use. Leave NULL to remove from all of them. + + + + Removes the given global defines (if present) from all the + or only from the given , depending on passed parameters, + and returns TRUE if it was removed, FALSE otherwise. + NOTE: when removing from all of them some legacy warnings might appear, which you can ignore. + + Defines to remove + to use. Leave NULL to remove from all of them. + + + + Returns TRUE if the given global define is present in at least one of the + or only in the given , depending on passed parameters. + + + to use. Leave NULL to check in all of them for the first occurrence. + + + + Returns an array of all defines in the current . + + + + + Sets the gizmos icon visibility in the Scene and Game view for the given class names + + Visibility + Class names (no namespace), as many as you want separated by a comma + + + + Sets the gizmos icon visibility in the Scene and Game view for all custom icons + (for example icons created with HOTools) + + Visibility + + + + Returns all components of type T in the currently open scene, or NULL if none could be found. + If you're on Unity 5 or later, and have DeEditorTools, use DeEditorToolsUtils.FindAllComponentsOfType + instead, which is more efficient. + + + + + Shifts an item from an index to another, without modifying the list except than by moving elements around + + + + + Expands the given array and adds the given element as the last one + + + + + Removes the element at index from the given array, shifts everything after by -1 position and resizes the array + + + + Nothing is being dragged + + + Dragging + + + Dragging concluded and accepted + + + Dragging concluded but item position didn't change + + + Dragging canceled + + + Dragging concluced but not accepted because too short + + + Automatically determines if dragged elements are horizontal, vertical, or both + + + Forces vertical drag + + + Forces horizontal drag (useful to avoid initial wrong drag indicators + if the users starts dragging an horizontal system vertically) + + + + Manages the dragging of GUI elements + + + + + True if a GUI element is currently being dragged + + + + + Return the current item being dragged, or NULL if there is none + + + + + Type of current item being dragged, or NULL if there is none + + + + + Starting index of current item being dragged, or NULL if there is none + + + + + Retrieves the eventual optional data stored via the StartDrag method + + + + + Starts a drag operation on a GUI element. + + Reference to the current editor drawing the GUI (used when a Repaint is needed) + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Optional data that can be retrieved via the static property + + + + Starts a drag operation on a GUI element. + + ID for this drag operation (must be the same for both StartDrag and Drag + Reference to the current editor drawing the GUI (used when a Repaint is needed) + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Optional data that can be retrieved via the static property + + + + Starts a drag operation on a GUI element. + + Reference to the current editor drawing the GUI (used when a Repaint is needed) + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Optional data that can be retrieved via the static property + + + + Starts a drag operation on a GUI element. + + ID for this drag operation (must be the same for both StartDrag and Drag + Reference to the current editor drawing the GUI (used when a Repaint is needed) + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Optional data that can be retrieved via the static property + + + + Call this after each draggable GUI block, to calculate and draw the current drag state + (or complete it if the mouse was released). + + ID for this drag operation (must be the same for both StartDrag and Drag + List containing the draggable item and all other relative draggable items + Current index of the draggable item being drawn + If NULL will calculate this automatically using . + Pass this if you're creating a drag between elements that don't use GUILayout + Drag direction. You can leave it to + unless you want to skip eventual layout calculations + If TRUE (default) automatically reorders the given list + to reflect successful drag results. + Note that will be different if you apply the drag to the list or not + (in the former case it will reflect the current index after the change, in the latter it will reflect the desired position) + + + + Call this after each draggable GUI block, to calculate and draw the current drag state + (or complete it if the mouse was released). + + List containing the draggable item and all other relative draggable items + Current index of the draggable item being drawn + If NULL will calculate this automatically using . + Pass this if you're creating a drag between elements that don't use GUILayout + Drag direction. You can leave it to + unless you want to skip eventual layout calculations + If TRUE (default) automatically reorders the given list + to reflect successful drag results. + Note that will be different if you apply the drag to the list or not + (in the former case it will reflect the current index after the change, in the latter it will reflect the desired position) + + + + Call this after each draggable GUI block, to calculate and draw the current drag state + (or complete it if the mouse was released). + + ID for this drag operation (must be the same for both StartDrag and Drag + List containing the draggable item and all other relative draggable items + Current index of the draggable item being drawn + Color to use for drag divider and selection + If NULL will calculate this automatically using . + Pass this if you're creating a drag between elements that don't use GUILayout + Drag direction. You can leave it to + unless you want to skip eventual layout calculations + If TRUE (default) automatically reorders the given list + to reflect successful drag results. + Note that will be different if you apply the drag to the list or not + (in the former case it will reflect the current index after the change, in the latter it will reflect the desired position) + + + + Call this after each draggable GUI block, to calculate and draw the current drag state + (or complete it if the mouse was released). + + List containing the draggable item and all other relative draggable items + Current index of the draggable item being drawn + Color to use for drag divider and selection + If NULL will calculate this automatically using . + Pass this if you're creating a drag between elements that don't use GUILayout + Drag direction. You can leave it to + unless you want to skip eventual layout calculations + If TRUE (default) automatically reorders the given list + to reflect successful drag results. + Note that will be different if you apply the drag to the list or not + (in the former case it will reflect the current index after the change, in the latter it will reflect the desired position) + + + + Ends the drag operations, and eventually applies the drag outcome. + Returns TRUE if the position of the dragged item actually changed. + Called automatically by Drag method. Use it only if you want to force the end of a drag operation. + + If TRUE marks the drag as successful and applied it if set so, otherwise simply cancels the drag + If TRUE changes the list contents to reflect the drag result + + + + Abstract dynamic class used for every node of the same type + (meaning there is only a single recycled instance for all same-type nodes) + + + + Used to fill + + + Called when the node needs to be drawn + + + + The connectedNodesIds list will be automatically increased/decreased when adding/removing connections + (otherwise connectedNodesIds will have to be increased via custom code) + + + + + Requires only two connectedNodesIds (no more, no less), + uses regular CTRL+Drag to connect connection 0, CTRL+SPACE+Drag to connect connection 1 + + + + + Like , but with an extra connection as a last extra index, which is set when pressing CTRL+SPACE+Drag. + Must always have at least one element in connectedNodesIds + + + + Layout, Repaint, LayoutAndRepaint + + + + Stores cloned nodes for pasting + + + + + Returns a list of pasteable nodes, with their GUID recreated and their connections adapted + + + + + + Returns a deep clone of the given node but doesn't clone UnityEngine references. + A new ID will be automatically generated. + + + + + Always connects a node from BottomOrRight side to TopOrLeft side + + + + + Always connects from BottomOrRight side to TopOrLeft side. + If ALT is pressed shows the delete connection button. + Called during Repaint or MouseDown/Up. + Returns TRUE if the connection was deleted using the delete connection button. + + + + + Always connects a node from BottomOrRight side to TopOrLeft side + + + + + Always connects from BottomOrRight side to TopOrLeft side. + If ALT is pressed shows the delete connection button. + Called during Repaint or MouseDown/Up. + Returns TRUE if the connection was deleted using the delete connection button. + + + + + You can attach to this + + + + + Use this to add a content group to the Help Panel + + + + Regular note + + + Editable note (activated by setting to TRUE + (but you will have to save the result somewhere yourself) + + + If TRUE shows the textArea + + + + Add definition. Supports rich-text but also these special tags: + - [b][/b] + + + + + Add key, automatically formatting these special keys: + / + + + → + + If TRUE and there's other keys/targets, adds the new key on a new line preceded by a comma + + + + Recalculates all rects based on the given Y shift + + + + + One per . + Partially independent, mainly controlled by process. + + + + TRUE when read-to or dragging nodes + + + + Resets the interaction state + + + + Returns TRUE if the given node is currently being dragged + + + + Returns TRUE if a repaint is required + + + + + + Main class for DeGUI Node system. + Create it, then enclose your GUI node calls inside a . + CODING ORDER: + - Create a to use for your node system (create it once, obviously) + - Inside OnGUI, write all your nodes GUI code inside a + - To draw the nodes, loop through the list and call for each node + + + + Distance at which nodes will be placed when snapping next to each other + + + Full area without zeroed coordinates + + + Position with zeroed coordinates (used by all node GUI since it's inside a GUILayout(area)) + + + Contains the nodes passed to NodeProcessScope ordered by depth. + You should loop through this list when drawing nodes + + + + Creates a new NodeProcess. + + EditorWindow for this process + Callback called when one or more nodes are going to be deleted. + Return FALSE if you want the deletion to be canceled. + Can be NULL, in which case it will be ignored + Callback called when a node is cloned. + Return FALSE if you want the cloning to be canceled. + Can be NULL, in which case it will be ignored + + + + Needs to be called when loading a complete new series of nodes + + + + + Call this when the layout/size of one or more nodes changed because of external intervention + (if a whole new range of nodes has been loaded, just call instead) + + + + + Forces the refresh of the area calculations. Useful if you need them before the first GUI call has run + + + + + Shifts the visible are to the given coordinates and repaints on end + + + + + Shifts the visible are to the given coordinates and repaints on end + + + + + Tells the process to repaint once the process has ended. + Calling this + + + + + Draws the given node using the given T editor GUINode type. + Returns the full area of the node + + + + + Opens the Help Panel + + + + + Closes the Help Panel + + + + + Opens or closes the Help panel based on its current state + + + + + Returns TRUE if the given area is visible (even if partially) inside the current nodeProcess area + + + + + Captures a screenshot of the node editor area and returns it when calling the onComplete method. + Sadly this requires a callback because if called immediately the capture will fail + with a "[d3d11] attempting to ReadPixels outside of RenderTexture bounds!" error in most cases + + Screenshot mode + A callback that accepts the generated Texture2D object + Screenshot scale factor (only used if screenshotMode is set to ) + If TRUE (default) displays a progress bar during the operation. + You'll want to set this to FALSE when you're already using a custom progressBar + and the screenshot is only part of a larger queue of operations + + + + Removes the node with the given ID from the list and removes all connections to it from other nodes. + Doesn't mark things dirty nor prepares them for undo + + + + + Use this to encapsulate node GUI operations. + Automatically manages various operations (press F1 to see them). + Sets GUI.changed to TRUE if the area is panned, a node is dragged, controlNodes change sorting or are deleted. + Wraps all content inside a GUILayout Area (nodeArea). + + The to use + Area within which the nodes will be drawn + Area shift (caused by dragging) + This list will be sorted based on current node draw order, + and changed in case one of its nodes is deleted. + IMPORTANT: this list should be part of your serialized class (MonoBehaviour or ScriptableObject), + so it will be stored as a reference and modifying one will modify the other. + Usually you want to pass all nodes to this except the eventual start node (or nodes that can't be sorted nor deleted). + + + + Set automatically when a selection ends up selecting a single node, + reset when deselecting all nodes, selecting multiple nodes, or resetting the + + + + + Returns TRUE if something was actually deselected, FALSE if there were no selected nodes + + + + + + Returns key modifiers currently pressed. + Requires to be updated at the beginning of every GUI call. + + + + Note: ALT isn't correctly interpreted as OPTION on OSX, contrary to what Unity manual states, + so using Command instead fixes that + + + + Call this method to update data required by softCtrl calculations. + Automatically called from within a . + Returns a object with the keys that were just pressed and just released + + Required to have the correct for the given target call + + + + Returns the given as an int, or -1 if it's not a number + + + + + Used code from Celtc on StackOverflow: https://stackoverflow.com/a/54044197/10151925 + + + + + Gets all fields from an object and its hierarchy inheritance + + + + + Perform a deep copy of the class + + + + + Does the copy + + + + + Returns by . + Contains properties and methods to manage non-layout scrollview better. + Remember to use or to increase or set the full content height + + + + Area used by ScrollView and its content + + + Full content area regardless if visible or not. Its height should be set manually based on the contents' height + + + Content area currently visible (scroll bars excluded) + + + Current scrollPosition + + + + Returns the current open, or an empty one if none is open. + + + + + Sets the width + + + + + Sets the height + + + + + Increase the height by the given amount + + + + + + Returns a Rect for a single line at the current scrollView yMax + + If less than 0 uses default line height, otherwise the value passed + if TRUE (default) automatically increases the height of the accordingly + + + + + Returns a Rect for a single line at the current scrollView yMax, as wide as the max visible rect width + + If less than 0 uses default line height, otherwise the value passed + if TRUE (default) automatically increases the height of the accordingly + + + + + Returns TRUE if the given rect is at least partially visible in the displayed scroll area + + + + + Contains both free and pro skins GUIStyle variations, + and automatically returns the correct one when converted to GUIStyle + + + + + Plays the given clip in the Editor + + + + + Stops playing the given clip. + + + + + Stops all clips playing. + + + + + A stopwatch whose time can be changed manually via + + + + + Start or resume playing + + + + + Stop the watch and reset the time + + + + + Restart measuring from zero + + + + + Pause the watch + + + + + Send the watch to the given time + + + + + Util to determine Unity editor version and store them as comparable numbers + + + + Full major version + first minor version (ex: 2018.1f) + + + Major version + + + First minor version (ex: in 2018.1 it would be 1) + + + + Assembly extensions + + + + + Full path to the assembly directory, without final slash + + + + + AssetDatabase path to the assembly directory, without final slash + + + + + GUI extension methods + + + + + Clones the style and adds the given formats to it. You can pass any of these types of values: + + Format:Rich-text, wordwrap + FontStyle:Font style + TextAnchor:Content anchor + int:Font size + Color/DeSkinColor:Font color + + + + + + Adds the given formats to the style. You can pass any of these types of values: + + Format:RichText, WordWrap + FontStyle:Font style + TextAnchor:Content anchor + int:Font size + Color/DeSkinColor:Font color + + + + + + Sets the border of the style + + + + + Sets the border of the style + + + + + Sets the border of the style + + + + + Sets the background of the style + + + + + Sets the background of the style + + + + + Sets the contentOffset of the style + + + + + Sets the contentOffset of the style + + + + + Sets the X contentOffset of the style + + + + + Sets the Y contentOffset of the style + + + + + Sets the margin of the style + + + + + Sets the margin of the style + + + + + Sets the margin of the style + + + + + Sets the left margin of the style + + + + + Sets the right margin of the style + + + + + Sets the top margin of the style + + + + + Sets the bottom margin of the style + + + + + Sets the overflow of the style + + + + + Sets the overflow of the style + + + + + Sets the overflow of the style + + + + + Sets the left overflow of the style + + + + + Sets the right overflow of the style + + + + + Sets the top overflow of the style + + + + + Sets the bottom overflow of the style + + + + + Sets the padding of the style + + + + + Sets the padding of the style + + + + + Sets the padding of the style + + + + + Sets the left padding of the style + + + + + Sets the right padding of the style + + + + + Sets the top padding of the style + + + + + Sets the bottom padding of the style + + + + + Sets the Y fixedWidth of the style + + + + + Sets the fixedHeight of the style + + + + + Sets the stretchHeight property of the style + + + + + Sets the stretchWidth property of the style + + + + + Stores a GUIStyle palette, which can be passed to default DeGUI layouts when calling DeGUI.BeginGUI, + and changed at any time by calling DeGUI.ChangePalette. + You can inherit from this class to create custom GUIStyle palettes with more options. + Each of the sub-options require a public Init method to initialize the styles, which will be called via Reflection. + + + + + Called automatically by DeGUI.BeginGUI. + Override when adding new style subclasses. + Returns TRUE if the styles were initialized or re-initialized + + + + + Extend any custom subpalettes from this, so they will be initialized correctly + + + + + GUILayout methods + + + + + A button that triggers an immediate repaint when hovered/pressed/unhovered + (which otherwise doesn't happen if you set a background to the button's GUIStyle). + Requires to be activated. + + + + + A button that triggers an immediate repaint when hovered/pressed/unhovered + (which otherwise doesn't happen if you set a background to the button's GUIStyle) + and also assigns different GUI colors based on the button's state and the given one. + Requires to be activated. + + Content + Default color + Style + GUILayout options + + + + A button that triggers an immediate repaint when hovered/pressed/unhovered + (which otherwise doesn't happen if you set a background to the button's GUIStyle) + and also assigns different GUI colors based on the button's state with options to eventually auto-generate them. + Requires to be activated. + + Content + Default color + Hover color (if NULL auto-generates it from the given one by making it brighter + Pressed color (if NULL auto-generates it from the given one by making it even brighter + Style + GUILayout options + + + Shaded button + + + Shaded button + + + Shaded button + + + Shaded button + + + Colored button + + + Colored button + + + Colored button + + + Colored button + + + + Draws a button that returns TRUE the first time it's pressed, instead than when its released. + + + + + Draws a button that returns TRUE the first time it's pressed, instead than when its released. + + + + + Draws a button that returns TRUE the first time the mouse moves over it while the mouse button is pressed, + even if it was pressed outside of the button first + + + + + Draws a button that returns TRUE the first time the mouse moves over it while the mouse button is pressed, + even if it was pressed outside of the button first + + + + Toolbar foldout button + + + Toolbar foldout button + + + Toolbar foldout button + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Begins an horizontal toolbar layout + + + Begins an horizontal toolbar layout + + + Begins an horizontal toolbar layout + + + Begins an horizontal toolbar layout + + + Ends an horizontal toolbar layout + + + A toolbar with a label + + + A toolbar with a label + + + A toolbar with a label + + + A toolbar with a label + + + A toolbar with a label + + + A toolbar with a label + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values. Auto-determines object type from the field's type + + + Returns TRUE if there's mixed values. Forces field to accept only objects of the given type + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Vertical box layout with style and color options + + + Vertical box layout with style and color options + + + End vertical box layout + + + Horizontal Divider + + + + A text field that becomes editable only on double-click + + EditorWindow reference + A unique ID to use in order to determine if the text is selected or not + Text + Style for default (non-editing mode) appearance + Style for editing mode + + + + A text field that becomes editable only on double-click + + Editor reference + A unique ID to use in order to determine if the text is selected or not + Text + Style for default (non-editing mode) appearance + Style for editing mode + + + + A text field that becomes editable only on double-click and can also be dragged + + EditorWindow reference + A unique ID to use in order to determine if the text is selected or not + Text + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Style for default (non-editing mode) appearance + Style for editing mode + + + + + A text field that becomes editable only on double-click and can also be dragged + + Editor reference + A unique ID to use in order to determine if the text is selected or not + Text + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Style for default (non-editing mode) appearance + Style for editing mode + + + + + Creates a Gradient field by using Unity 4.x hidden default one and Reflection. + + + + Scene field + + + + Draws a dropdown for choosing a SortingLayer ID + + + + + Draws a dropdown for choosing a SortingLayer ID + + + + + Global Demigiant GUI manager. Call to initialize it inside GUI calls. + + + + + Default color palette + + + + + Default style palette + + + + TRUE if we're using the PRO skin + + + + Call this at the beginning of GUI methods. + Returns TRUE if the styles were initialized or re-initialized + + Eventual to use + Eventual to use + + + + Better implementation of GUI.BeginScrollView. + Returns the modified scrollView struct. + Must be closed by a DeGUI.. +
EXAMPLE
+            Rect scrollViewArea = ...;
+            Rect drawArea = scrollViewArea;
+            // Decrease the full drawing area to exclude scrollbars if necessary
+            if (_scrollView.fullContentArea.height > scrollViewArea.height) drawArea = drawArea.Shift(0, 0, -11, 0);
+            // Begin scrollView
+            _scrollView = DeGUI.BeginScrollView(scrollViewArea, _scrollView);
+            // Increase scrollView area correctly (or directly set it with SetFullContentHeight
+            _scrollView.IncreaseContentHeightBy(...)
+            // End
+            DeGUI.EndScrollView();
+            
+
+ Visible area used by the scrollView + target. You'll need to set its size to the correct full content height + (either within the Begin/ENd ScrollView calls or before them) + If TRUE (default) resets .height to 0 + after beginning the ScrollView +
+ + + Closes a DeGUI. correctly + + + + + Exits the current event correctly, also taking care of eventual drag operations + + + + + Removes focus from any GUI button/text/element that has focus + + + + + Changes the active palettes to the given ones + (or resets them to the default ones if NULL). + Returns TRUE if the styles were initialized or re-initialized + + + + + Resets the GUI colors to the default ones (only available if BeginGUI was called first) + + + + + Sets the GUI colors to the given ones + + + + + Opens a panel that previews the given texture (if not NULL) + + + + + Gets either black or white, depending on the color that would be most visible on the given one + + + + + Gets either black or white, depending on the color that would be most visible on the given one + + + + + Sets the GUI cursor color to the given ones + + + + + Sets the GUI matrix to the given ones + + + + + Wrapper to set serialized fields with multiple sources selected: automatically sets GUI to show mixed values when necessary + and contains a fieldInfo which is set within the wrapper. + Note that you must set the property within the wrapper so that it's assigned correctly when closing the scope. + + + + Multi property scope + Name of the field so it can be found and set/get via Reflection + List of the sources containing the given field + If TRUE validates EditorGUI.EndChangeCheck before calling it + (fixes an issue which happens with advanced Undo usage in DOTween Timeline and ColorFields) + + + + A button that triggers an immediate repaint when hovered/pressed/unhovered + (which otherwise doesn't happen if you apply a background to the button's GUIStyle). + Requires to be activated. + + + + + A button that triggers an immediate repaint when hovered/pressed/unhovered + (which otherwise doesn't happen if you apply a background to the button's GUIStyle) + and also assigns different GUI colors based on the button's state and the given one. + Requires to be activated. + + Rect + Content + Default color + Style + + + + A button that triggers an immediate repaint when hovered/pressed/unhovered + (which otherwise doesn't happen if you apply a background to the button's GUIStyle) + and also assigns different GUI colors based on the button's state with options to eventually auto-generate them. + Requires to be activated. + + Rect + Content + Default color + Hover color (if NULL auto-generates it from the given one by making it brighter + Pressed color (if NULL auto-generates it from the given one by making it even brighter + Style + + + Shaded button + + + Shaded button + + + Shaded button + + + Shaded button + + + Colored button + + + Colored button + + + Colored button + + + Colored button + + + Toolbar foldout button which allows clicking even on its label + + + Foldout button + label (not intended to be used in toolbar) which allows click-to-foldout/foldin + + + + Draws a button that returns TRUE the first time it's pressed, instead than when its released. + + + + + Draws a button that returns TRUE the first time it's pressed, instead than when its released. + + + + + Draws a button that returns TRUE the first time the mouse moves over it while the mouse button is pressed, + even if it was pressed outside of the button first + + + + + Draws a button that returns TRUE the first time the mouse moves over it while the mouse button is pressed, + even if it was pressed outside of the button first + + + + Toolbar foldout button + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Button that can be toggled on and off + + + Scene field + + + + Draws a background grid using the given grid texture + + Area rect + Offset from 0, 0 position (used when area has been dragged) + Texture to use for the grid + Eventual scale to apply to the grid + + + + Draws a background grid using default grid textures + + Area rect + Offset from 0, 0 position (used when area has been dragged) + If TRUE forces a dark skin, otherwise uses a skin that fits with the current Unity's one + Eventual scale to apply to the grid + + + Box with style and color options + + + + Can be used instead of EditorGUI.PropertyField, to draw a serializedProperty without its attributes + (very useful in case you want to use this from within a PropertyDrawer for that same property, + since otherwise bad infinite loops might happen) + + + + Draws a colored square + + + Draws the given texture tiled within the given rect + Rect + Texture + Eventual scale to apply + If not NULL, colorizes the texture with this color + + + + A text field that becomes editable only on double-click + + Area + EditorWindow reference + A unique ID to use in order to determine if the text is selected or not + Text + Style for default (non-editing mode) appearance + Style for editing mode + + + + A text field that becomes editable only on double-click + + Area + Editor reference + A unique ID to use in order to determine if the text is selected or not + Text + Style for default (non-editing mode) appearance + Style for editing mode + + + + A text field that becomes editable only on double-click and can also be dragged + + Area + EditorWindow reference + A unique ID to use in order to determine if the text is selected or not + Text + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Style for default (non-editing mode) appearance + Style for editing mode + + + + A text field that becomes editable only on double-click and can also be dragged + + Area + Editor reference + A unique ID to use in order to determine if the text is selected or not + Text + List containing the dragged item and all other relative draggable items + DraggableList index of the item being dragged + Style for default (non-editing mode) appearance + Style for editing mode + + + + A textArea that becomes editable only on double-click + + Area + EditorWindow reference + A unique ID to use in order to determine if the text is selected or not + Text + Style for default (non-editing mode) appearance + Style for editing mode + + + + A textArea that becomes editable only on double-click + + Area + Editor reference + A unique ID to use in order to determine if the text is selected or not + Text + Style for default (non-editing mode) appearance + Style for editing mode + + + Divider + + + + Draws a dropdown for choosing a SortingLayer ID + + + + + Draws a dropdown for choosing a SortingLayer ID + + + + Draws a Vector3Field that can have single axes disabled + + + Draws a Vector3Field that can have single axes disabled + + + Draws a Vector3Field that can have single axes disabled + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values. Supports using an int as an enum + + + Returns TRUE if there's mixed values. Supports using an int as an enum + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values. Supports also uint fields + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values. Auto-determines object type from the field's type + + + Returns TRUE if there's mixed values. Forces field to accept only objects of the given type + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values. Supports passing int values as bool (1 = true, 0 = false) + + + Returns TRUE if there's mixed values. Supports passing int values as bool (1 = true, 0 = false) + + + Returns TRUE if there's mixed values. Supports passing int values as bool (1 = true, 0 = false) + + + Returns TRUE if there's mixed values. Requires a SerializedProperty representation of each UnityEven field + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + Returns TRUE if there's mixed values + + + + Returns a new color equal to the given one with changed brightness + + Color to evaluate + Brightness factor (multiplied by current brightness) + If set applies this alpha value + + + + Returns a new color equal to the given one with changed saturation + + Color to evaluate + Saturation factor (multiplied by current brightness) + If set applies this alpha value + + + + Changes the alpha of this color and returns it + + + + + Returns a new color equal to the given one with changed alpha + + + + + Returns a HEX version of the given Unity Color, without the initial # + + If TRUE, also converts the alpha value and returns a hex of 8 characters, + otherwise doesn't and returns a hex of 6 characters + + + + Returns a HEX version of the given Unity Color, without the initial # + + If TRUE, also converts the alpha value and returns a hex of 8 characters, + otherwise doesn't and returns a hex of 6 characters + + + + Replicates parts of DeExtensions.ListExtensions for internal usage + + + + + Shifts an item from an index to another, without modifying the list except than by moving elements around + + + + + Shuffles the list + + + + + Replicates DeExtensions.RectExtensions for internal usage + + + + + Adds one rect into another, and returns the resulting a + + + + + Returns a copy or the Rect expanded around its center by the given amount + + Indicates how much to expand the rect on each size + + + + Returns a copy or the Rect expanded around its center by the given amount + + Indicates how much to expand the rect on each horizontal side + Indicates how much to expand the rect on each vertical side + + + + Returns a copy or the Rect contracted around its center by the given amount + + Indicates how much to contract the rect on each size + + + + Returns a copy or the Rect contracted around its center by the given amount + + Indicates how much to contract the rect on each horizontal side + Indicates how much to contract the rect on each vertical side + + + + Returns a copy of the Rect resized so it fits proportionally within the given size limits + + Width to fit + Height to fit + If TRUE (default) only shrinks the rect if needed, if FALSE also enlarges it to fit + + + + + Returns TRUE if the first rect includes the second one + + If TRUE, returns TRUE only if the second rect is fully included, + otherwise just if some part of it is included + + + + Returns TRUE if this rect intersects the given one, and also outputs the intersection area + + Intersection area + + + + Returns a copy of the Rect with its X/Y coordinates set to 0 + + + + + Sets this rect to the left of the given x position, with options for margin and width resize + + Distance between this rect and the given x position + If greater than zero resizes this rect to the given size + + + + Sets this rect to the right of the given x position and resizes it so that its xMax remains the same. + + Distance between this rect and the given x position + Extra offset to add to the resulting width + + + + Returns a copy of the Rect with its values shifted according the the given parameters + + + + + Returns a copy of the Rect with its X value shifted by the given value + + + + + Returns a copy of the Rect with its Y value shifted by the given value + + + + + Returns a copy of the Rect with its x shifted by the given value and its width shrinked/expanded accordingly + (so that the xMax value will stay the same as before) + + + + + Returns a copy of the Rect with its y shifted by the given value and its height shrinked/expanded accordingly + (so that the yMax value will stay the same as before) + + + + + Returns a copy of the Rect with its X property set to the given value + + + + + Returns a copy of the Rect with its Y property set to the given value + + + + + Returns a copy of the Rect with its height property set to the given value + + + + + Returns a copy of the Rect with its width property set to the given value + + + + + Returns a copy of the Rect with its X,Y properties set so the rect center corresponds to the given values + + + + + Returns a copy of the Rect with its X property set so the rect X center corresponds to the given value + + + + + Returns a copy of the Rect with its Y property set so the rect Y center corresponds to the given value + + + + + Returns the value of the given property (works like a cast to type). + Improved from HiddenMonk's functions (http://answers.unity3d.com/questions/627090/convert-serializedproperty-to-custom-class.html) + + + + + Returns TRUE if this property is inside an array + + + + + Returns -1 if the property is not inside an array, otherwise returns its index inside the array + + + + + Returns the height of a UnityEvent serializedProperty + + + + + Uses code from FlaShG's GitMerge: https://github.com/FlaShG/GitMerge-for-Unity/blob/master/Editor/SerializedPropertyExtensions.cs + + + + + Uses code from FlaShG's GitMerge: https://github.com/FlaShG/GitMerge-for-Unity/blob/master/Editor/SerializedPropertyExtensions.cs + + + + + String extensions + + + + + Returns TRUE if the string is null or empty + + If TRUE (default) and the string contains only spaces, considers it empty + + + + Compares a version string (in format #.#.###) with another of the same format, + and return TRUE if this one is minor. Boths trings must have the same number of dot separators. + + + + + Converts a HEX color to a Unity Color and returns it + + The HEX color, either with or without the initial # (accepts both regular and short format) + + + + Nicifies a string, replacing underscores with spaces, and adding a space before Uppercase letters (except the first character) + + + + + If the given string is a directory path, returns its parent + with or without final slash depending on the original directory format + + + + + If the string is a directory, returns the directory name, + if instead it's a file returns its name without extension. + Works better than Path.GetDirectoryName, which kind of sucks imho + + + + + Evaluates the string as a property or field and returns its value. + + If NULL considers the string as a static property, otherwise uses obj as the starting instance + + + + Texture extensions + + + + + Returns the full Rect of this texture, with options for position and scale + + + + + Checks that the texture uses the correct import settings, and applies them if they're incorrect. + + + + + Returns a clone of the event + + + + + Utility class. You can either use it as is via its constructor, which automatically retrieves all serializedProperties in the instance, + or you can extend it so you can add as many public SerializedProperties as the SerializedProperties you want to access + (their name must be the same as the serialized field they refer to) + + + + + Automatically retrieves all serializable properties on the given serializedObject, + or only specific ones if propNames is specified + + + + + Draws all property fields. Remember to wrap this within serializedObject.Update + and serializedObject.ApplyModifiedProperties + + +
+
diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.xml.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.xml.meta new file mode 100644 index 00000000..d1994251 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.xml.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: d4a42b2e4e6f64d4ba01d35c5a3dafed +TextScriptImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs.meta new file mode 100644 index 00000000..24b13409 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 1efb03f507a60b949a70ed828ac18eb8 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png new file mode 100644 index 00000000..6fbcc513 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png.meta new file mode 100644 index 00000000..ca9400a4 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 7ba4b2810f605d945af87e032ca2957b +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png new file mode 100644 index 00000000..21afc7b3 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png.meta new file mode 100644 index 00000000..488d14c5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 8c9cfa1dbe00a1d41ae9d14f5ac543ec +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png new file mode 100644 index 00000000..3097db83 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png.meta new file mode 100644 index 00000000..e9075514 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 53d696c01f6ca524383f11fcc34dd13c +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png new file mode 100644 index 00000000..521e6dcd Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png.meta new file mode 100644 index 00000000..2d943034 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: f7ff421f40d548444864a01cd7f47112 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png new file mode 100644 index 00000000..700b9deb Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png.meta new file mode 100644 index 00000000..e3040e11 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: aa1d42dc6ff3e894da2208c6929d2165 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png new file mode 100644 index 00000000..f4a47c37 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png.meta new file mode 100644 index 00000000..ce709e47 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 595b166389c8db546a199430284ebc9b +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png new file mode 100644 index 00000000..9d8a19aa Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png.meta new file mode 100644 index 00000000..490a921a --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 05cfe010378336646ad6c721f66543d1 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png new file mode 100644 index 00000000..3ed059a4 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png.meta new file mode 100644 index 00000000..bc2ac360 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: af28470bd0e2e9543a6dfa9a1a4b348d +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle_dashedBorderEmpty.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle_dashedBorderEmpty.png new file mode 100644 index 00000000..f8294610 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle_dashedBorderEmpty.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle_dashedBorderEmpty.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle_dashedBorderEmpty.png.meta new file mode 100644 index 00000000..0055f304 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle_dashedBorderEmpty.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 522b0133a9838674ca9a12e0c6e5a59c +timeCreated: 1625322295 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + 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: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + 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: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png new file mode 100644 index 00000000..63ef49a7 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png.meta new file mode 100644 index 00000000..774d7020 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 789ef07ba2573f6448fa8b5dc5224c44 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png new file mode 100644 index 00000000..5c2feae1 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png.meta new file mode 100644 index 00000000..ccb46439 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 93b1287b4a087f84c95c72f49ec94e83 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png new file mode 100644 index 00000000..5dc9a725 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png.meta new file mode 100644 index 00000000..9baf7262 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d542f997a51000946873268e3546b6ba +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png new file mode 100644 index 00000000..9242a229 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png.meta new file mode 100644 index 00000000..f84830db --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 39cacc93c6c183f44992bf2421362f78 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png new file mode 100644 index 00000000..c06e1677 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png.meta new file mode 100644 index 00000000..dff65338 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 8b6b31f71cd528243b053cfc488e73f5 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png new file mode 100644 index 00000000..3118ab10 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png.meta new file mode 100644 index 00000000..b623d586 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 2cdc0bc527f7a434496c6be9236e636f +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png new file mode 100644 index 00000000..3ee1a48a Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png.meta new file mode 100644 index 00000000..fd7ccf1c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: abf8a615f379ef44b9ac872a13b7712f +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png new file mode 100644 index 00000000..ce4cf47c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png.meta new file mode 100644 index 00000000..c3dd648d --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: eeac3acbf7d1cd54fabfb1c4a12f9fc8 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png new file mode 100644 index 00000000..c5f85ccf Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png.meta new file mode 100644 index 00000000..75090ea6 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 8f0cb66458819764b94b93250bae94b6 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png new file mode 100644 index 00000000..39e15460 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png.meta new file mode 100644 index 00000000..b0e188a7 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 2a8208d8e80f90944b8ff2978292b03b +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png new file mode 100644 index 00000000..9ec5557c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png.meta new file mode 100644 index 00000000..6223c1c0 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 6f504a3fa8848264bb4fb9bb7d582dd5 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png new file mode 100644 index 00000000..dc638a7f Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png.meta new file mode 100644 index 00000000..7f4d7292 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: b9e0e5a8836018e4c810fbceba55a1b4 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png new file mode 100644 index 00000000..93c18129 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png.meta new file mode 100644 index 00000000..c7e801be --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d18ceface0c20014b8db4bba05a41b83 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png new file mode 100644 index 00000000..c1aca041 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png.meta new file mode 100644 index 00000000..884fe5fb --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 727ba41e4cc95fe4a98b07301e3ebfc8 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png new file mode 100644 index 00000000..b4397c60 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png.meta new file mode 100644 index 00000000..30bc0257 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: b4785ec6d937dab4fa59da70b69afc9d +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png new file mode 100644 index 00000000..de6a933d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png.meta new file mode 100644 index 00000000..0d20edc4 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 0f79253104349f44cb73978f6c8e93de +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png new file mode 100644 index 00000000..627b907d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png.meta new file mode 100644 index 00000000..cf3e9ab0 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 6efe1c8569d975640ba0c9f2ac4a9d61 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png new file mode 100644 index 00000000..6a0d89d4 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png.meta new file mode 100644 index 00000000..bb1b90db --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: e01c0b07c87513844ab88bb432bcf85a +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png new file mode 100644 index 00000000..ec87ccff Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png.meta new file mode 100644 index 00000000..52134bf9 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d1d45eadab0e41c4a82cdffb6396b1d7 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png new file mode 100644 index 00000000..f1465163 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png.meta new file mode 100644 index 00000000..e362a816 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 37639be6148186645bca3fce45d5aa22 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png new file mode 100644 index 00000000..bab977d9 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png.meta new file mode 100644 index 00000000..234280c2 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 358cddede8023574191e0aae610a4645 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png new file mode 100644 index 00000000..b7f481e9 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png.meta new file mode 100644 index 00000000..2a9bf068 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 7c83a08052c9e2f49b47897a637994de +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png new file mode 100644 index 00000000..30bdb8b6 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png.meta new file mode 100644 index 00000000..d9323e27 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 6862027f2176eae40a3143c562466a1b +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png new file mode 100644 index 00000000..8735b7c2 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png.meta new file mode 100644 index 00000000..1e64e47c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 622fdb780ae13e840938631c5ed708f2 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png new file mode 100644 index 00000000..d61a35d1 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png.meta new file mode 100644 index 00000000..2f10151b --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d98b8847646169c4fb5af28dd84c4179 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png new file mode 100644 index 00000000..85bb2483 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png.meta new file mode 100644 index 00000000..31ad7882 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 6b1f9e1e1c2cf004b8e3bdd3033a8e75 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png new file mode 100644 index 00000000..3445065c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png.meta new file mode 100644 index 00000000..6bac83d1 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 229d0d11465a822449f78a50dbf7104d +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png new file mode 100644 index 00000000..90dc9def Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png.meta new file mode 100644 index 00000000..d5af1ebc --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 1ccb12a4b0bf8f447b2cc114851732f5 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png new file mode 100644 index 00000000..a762110b Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png.meta new file mode 100644 index 00000000..50dfd236 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 32eaa0efb2b38774ea9705b40fdcc00a +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_doing.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_doing.png new file mode 100644 index 00000000..ed34625f Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_doing.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_doing.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_doing.png.meta new file mode 100644 index 00000000..9d3c5d90 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_doing.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 4dd24a9f658e7a3438d4fa08fb85aba3 +timeCreated: 1648211899 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + 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: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + 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: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png new file mode 100644 index 00000000..b71eefe4 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png.meta new file mode 100644 index 00000000..3580f68f --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: a248c8288afb9184f953d9aa07a696b0 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png new file mode 100644 index 00000000..f4525da6 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png.meta new file mode 100644 index 00000000..0708f256 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: c44ae4a96937e2c4b8be481648364682 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png new file mode 100644 index 00000000..df265390 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png.meta new file mode 100644 index 00000000..fab01a66 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 301c130dbb4bbba4e87072804939c861 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png new file mode 100644 index 00000000..50a913a9 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png.meta new file mode 100644 index 00000000..cc34f913 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 18a5a7cde794cc04b9b446f0feedb3a0 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png new file mode 100644 index 00000000..7ea0c06f Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png.meta new file mode 100644 index 00000000..072d281d --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d173388c1d9c32a418b5b777dd89d71a +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png new file mode 100644 index 00000000..a5330848 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png.meta new file mode 100644 index 00000000..f7b7f22a --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 669c487f3c9c5fe4abb6459f9c2628f0 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png new file mode 100644 index 00000000..5a60bd06 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png.meta new file mode 100644 index 00000000..849e0adc --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 4f69b96f9308d8f4ea239773ef5b55c4 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png new file mode 100644 index 00000000..a29a8599 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png.meta new file mode 100644 index 00000000..bd76a572 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 252f207d01ecc87419cdba1d1c0ab1ea +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png new file mode 100644 index 00000000..7b718a29 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png.meta new file mode 100644 index 00000000..b7bc6d49 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: e3d0592dad579e141924133869455c53 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png new file mode 100644 index 00000000..be854436 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png.meta new file mode 100644 index 00000000..a870de6f --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 8d60feae84bdb2d4eb16a0037056c588 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png new file mode 100644 index 00000000..e236c923 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png.meta new file mode 100644 index 00000000..aabc040b --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 4aa34055b1d36ef479af3d7b5701b28a +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png new file mode 100644 index 00000000..b4d864a5 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png.meta new file mode 100644 index 00000000..029aabf7 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 34f39b5a760ddbb4d8b8749852868335 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png new file mode 100644 index 00000000..1d89e2af Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png.meta new file mode 100644 index 00000000..560af253 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 62a48d93e78c63b4ea9b46537c7c0091 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png new file mode 100644 index 00000000..0608dcb7 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png.meta new file mode 100644 index 00000000..483c5b79 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 2a563a43c33f0f3428d02b3a43886fc2 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png new file mode 100644 index 00000000..db4ac28c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png.meta new file mode 100644 index 00000000..e57aa678 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 45e128e1cf00555479ee7934ab11cadf +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png new file mode 100644 index 00000000..7e539754 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png.meta new file mode 100644 index 00000000..8d4e226e --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 01976ad42d31f494e8040d3e32e283dc +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png new file mode 100644 index 00000000..6cc1c5fb Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png.meta new file mode 100644 index 00000000..ae289865 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 6dfd924c0ba23844fb5d04ad1560de22 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png new file mode 100644 index 00000000..d280684c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png.meta new file mode 100644 index 00000000..59f27682 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 645aafe2260b2884a9df05b4bc01b1ec +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png new file mode 100644 index 00000000..4615829f Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png.meta new file mode 100644 index 00000000..955bf42c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 18f3a26aa87fccc4cb5e211d4c6de662 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_todo.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_todo.png new file mode 100644 index 00000000..8214de5c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_todo.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_todo.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_todo.png.meta new file mode 100644 index 00000000..6f04adde --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_todo.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: c561c878c05ceb1448966fe706740008 +timeCreated: 1648211899 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + 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: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + 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: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png new file mode 100644 index 00000000..afdcff35 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png.meta new file mode 100644 index 00000000..0d3bf2eb --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: cb46e1d925af22d43a6f8bf0e1d459e6 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png new file mode 100644 index 00000000..6613a3d3 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png.meta new file mode 100644 index 00000000..2ee6aab5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: c0c40ceac3c6df146a0fcd4e6b226540 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png new file mode 100644 index 00000000..56a13248 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png.meta new file mode 100644 index 00000000..8dced06c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 55c2b426022dac44f9b25f0cba28aa45 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png new file mode 100644 index 00000000..e1a2c91a Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png.meta new file mode 100644 index 00000000..a0db4545 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 0c0132429106c8a4d89d9d0a6b723ec3 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png new file mode 100644 index 00000000..c272180e Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png.meta new file mode 100644 index 00000000..012525bc --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 3e730492361eb6e45be5c5fdafac23be +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project.meta new file mode 100644 index 00000000..8ddc4ff8 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 52bdbb53205da074d9937b996806e2e2 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png new file mode 100644 index 00000000..80dc387c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png.meta new file mode 100644 index 00000000..eddd2e8b --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: e2279677842a8064fbae0bc889fb85ab +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png new file mode 100644 index 00000000..90c52124 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png.meta new file mode 100644 index 00000000..30cc40cc --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: e1af8927fb6f5634896d59aed409a589 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png new file mode 100644 index 00000000..c4180381 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png.meta new file mode 100644 index 00000000..66ef7155 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 58676a985ae875646b7be748cf4499fd +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png new file mode 100644 index 00000000..fd589a0f Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png.meta new file mode 100644 index 00000000..fa517498 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: fb605a2688b31194887f2e7a6769235b +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png new file mode 100644 index 00000000..a34a3e8a Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png.meta new file mode 100644 index 00000000..529d85cf --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 3b67e53c8c2f8114b966c0e70d452419 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png new file mode 100644 index 00000000..99d0cf9a Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png.meta new file mode 100644 index 00000000..8276473f --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: f36ab42cc6fcdfd4187033279d3d14a9 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png new file mode 100644 index 00000000..9bba7d0b Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png.meta new file mode 100644 index 00000000..e0a50728 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 4f2c4b43188596b47866d41e1dc13c8a +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png new file mode 100644 index 00000000..9ce1a4de Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png.meta new file mode 100644 index 00000000..996c26ee --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: cf986943c88c2254780c17b2b5e3bc2f +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png new file mode 100644 index 00000000..f7ebe72a Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png.meta new file mode 100644 index 00000000..ead0de69 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 20794834c0a413f408b80110d0fc73b8 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png new file mode 100644 index 00000000..5a4b7eb1 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png.meta new file mode 100644 index 00000000..8e57f771 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: e02713e10d7aced44a7a651231f0adef +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png new file mode 100644 index 00000000..42f1f236 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png.meta new file mode 100644 index 00000000..0195fcf5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 09a0cde07b4d75f49b4c817932791b81 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png new file mode 100644 index 00000000..3ffa4751 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png.meta new file mode 100644 index 00000000..560f0dd1 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 8003873ab749935489bb11f23f830856 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png new file mode 100644 index 00000000..c441add0 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png.meta new file mode 100644 index 00000000..2bef6e5f --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d8306b1e159c72c4ebc9a4fc31debe60 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png new file mode 100644 index 00000000..abc43532 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png.meta new file mode 100644 index 00000000..47f7775b --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: ed3789262161efa4fa33c85ca534590e +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png new file mode 100644 index 00000000..c79b6683 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png.meta new file mode 100644 index 00000000..2b2bbf9f --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 96cbdf605b8ddb34da384703f2d0b849 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png new file mode 100644 index 00000000..ed3b4bb1 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png.meta new file mode 100644 index 00000000..1d860ee4 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: f252c69cd0163714eba038403f61b09e +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png new file mode 100644 index 00000000..22930f4d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png.meta new file mode 100644 index 00000000..68df5796 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d563d6ce25cd2ca48b185ec47a74a3fb +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png new file mode 100644 index 00000000..90483b3f Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png.meta new file mode 100644 index 00000000..f8724133 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 21820ec6fc9dd0b4fbf42a3b93fdad4e +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png new file mode 100644 index 00000000..750996d6 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png.meta new file mode 100644 index 00000000..946cabd3 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 4a091a7609ef2d34bbdfaa1a886deb18 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png new file mode 100644 index 00000000..6aae9648 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png.meta new file mode 100644 index 00000000..c18d4ea1 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 3e6b96a975eba1c43b2bad66fb7f8b4a +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png new file mode 100644 index 00000000..dd219ac3 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png.meta new file mode 100644 index 00000000..96df50fc --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: dc0ca9b32ae9fd049911671cf1a480bf +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png new file mode 100644 index 00000000..798457f4 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png.meta new file mode 100644 index 00000000..299f17bb --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: fbdd7ecf39c13bf48a5bd02a1159c90b +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png new file mode 100644 index 00000000..51afe673 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png.meta new file mode 100644 index 00000000..50cd9145 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: afd7d0ddb1d6c744b9cb87ae49b2ce62 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png new file mode 100644 index 00000000..7000d8f3 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png.meta new file mode 100644 index 00000000..0488aaeb --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: dfd33662d9f6f3849bd92f6e159ca226 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png new file mode 100644 index 00000000..768cc827 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png.meta new file mode 100644 index 00000000..32d19bde --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 4896b5aa9d63dec498136c21ffce735b +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png new file mode 100644 index 00000000..a1ed49d4 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png.meta new file mode 100644 index 00000000..180331a7 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: ff88be84254fb1f4b9a81a27ae0b2e81 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png new file mode 100644 index 00000000..2b313e46 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png.meta new file mode 100644 index 00000000..dd836627 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: e3ae01f12865ad54ba365963bda55759 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png new file mode 100644 index 00000000..e56d3b73 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png.meta new file mode 100644 index 00000000..44abb4ee --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: a1606d34a052ed3449da93edd229743e +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png new file mode 100644 index 00000000..bbd3158d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png.meta new file mode 100644 index 00000000..a156e1a3 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 4578222ee7a511446b0c340551bf8740 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png new file mode 100644 index 00000000..57714a5c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png.meta new file mode 100644 index 00000000..72910c0d --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 7d504312fad10f040b95bd8836dc6fc6 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png new file mode 100644 index 00000000..47b177ff Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png.meta new file mode 100644 index 00000000..e9a6d7d5 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: fc3b86627d5fe1c4d865b80627e2e37c +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png new file mode 100644 index 00000000..b9450f21 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png.meta new file mode 100644 index 00000000..db7c113b --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 25da15ac84743244ab4c860cf8798ec8 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png new file mode 100644 index 00000000..4ddd37ad Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png.meta new file mode 100644 index 00000000..a248e7ca --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: f536c51d3da3f2e4ca93ac8773ec2ad8 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png new file mode 100644 index 00000000..188ed94d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png.meta new file mode 100644 index 00000000..365f54f9 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 8db54efcce998554c86b796b37a7cdfa +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png new file mode 100644 index 00000000..188ed94d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png.meta new file mode 100644 index 00000000..c86a60da --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: aa8dc9238ab21e54ca88fa22698e4679 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png new file mode 100644 index 00000000..ec9ead73 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png.meta new file mode 100644 index 00000000..b2dcd93f --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 29b0e8156f6fb774faf129c83bc9ee33 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png new file mode 100644 index 00000000..ca376a89 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png.meta new file mode 100644 index 00000000..e9f14fba --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: c0a56b88a1b449045b3fe5f561aa12fa +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png new file mode 100644 index 00000000..ec9ead73 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png.meta new file mode 100644 index 00000000..89331d1d --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: c456d5ac01d2aa843a63985497b04931 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png new file mode 100644 index 00000000..ca376a89 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png.meta new file mode 100644 index 00000000..7365c26a --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 7acc6bd588627b046bc1c9b3cd78a6c7 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png new file mode 100644 index 00000000..38dc1bb8 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png.meta new file mode 100644 index 00000000..17c7922e --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: dec3ea647707588408ec0d11ab130b73 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png new file mode 100644 index 00000000..facdba94 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png.meta new file mode 100644 index 00000000..7f51fb86 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: ca2f91cc405eb144dad970eb23db2f72 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png new file mode 100644 index 00000000..8e17561d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png.meta new file mode 100644 index 00000000..890be39e --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: d1278357b25e10442b6ca6c24edc9781 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png new file mode 100644 index 00000000..c8cfc7ff Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png.meta new file mode 100644 index 00000000..7edd20d9 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: c99a391f381fe534c80a193fe9f307a0 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png new file mode 100644 index 00000000..77630919 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png.meta new file mode 100644 index 00000000..b26261db --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 018a5623a46db1d49b1e6ff2482b07ab +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileCheckerboard.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileCheckerboard.png new file mode 100644 index 00000000..10755e35 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileCheckerboard.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileCheckerboard.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileCheckerboard.png.meta new file mode 100644 index 00000000..7b24e9ab --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileCheckerboard.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 9371f432d5c714b4eadd3477be06f0f3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + 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 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png new file mode 100644 index 00000000..c7450680 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png.meta new file mode 100644 index 00000000..cdc61f9c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 4d338c631fa36f345b72a36f1c91ff9a +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png new file mode 100644 index 00000000..768a2da3 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png.meta new file mode 100644 index 00000000..afcc984c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: ed7cb8f9a27664e48896c904189f0e2c +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png new file mode 100644 index 00000000..705c72b6 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png.meta new file mode 100644 index 00000000..2758634d --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 27df4ca974a8eaf40803907859421506 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png new file mode 100644 index 00000000..2a081f6b Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png.meta new file mode 100644 index 00000000..8bfeba8c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 039dc89c76661c344b7776f8a47cc5a4 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png new file mode 100644 index 00000000..afc2459c Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png.meta new file mode 100644 index 00000000..2a4aa362 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: dfe6e0ac3e5f24740a17e14b65e08406 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png new file mode 100644 index 00000000..6480ee22 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png.meta new file mode 100644 index 00000000..11342624 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 93b68213089b05943a651574eb7e2fb5 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png new file mode 100644 index 00000000..e6f3c427 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png.meta new file mode 100644 index 00000000..8dfc149d --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 5510cdd48a6aaaa439c95ef5b2fe9e28 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png new file mode 100644 index 00000000..5219f2a0 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png.meta new file mode 100644 index 00000000..cdfa23e4 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 511f6b24c50557a40a09633b12b8b8ef +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 0 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 100 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png new file mode 100644 index 00000000..ad904338 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png.meta new file mode 100644 index 00000000..103bbf14 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: ef40b00a83f7bd34f84851386b3321f0 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png new file mode 100644 index 00000000..def9ea92 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png.meta new file mode 100644 index 00000000..4dd7287b --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 11848dd30e516d846a02cd302634d317 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved.png new file mode 100644 index 00000000..fb54c9f8 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved.png.meta new file mode 100644 index 00000000..8a6304e7 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 070edb62059c27b408e16f28cb87f941 +timeCreated: 1604057757 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + 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: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + 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: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved02.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved02.png new file mode 100644 index 00000000..c7ed49b0 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved02.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved02.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved02.png.meta new file mode 100644 index 00000000..45fdb5f7 --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareCurved02.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 282d742ce2ddf9f458812ab84ea6fa88 +timeCreated: 1604057757 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + 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: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + 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: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png new file mode 100644 index 00000000..0f754e57 Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png.meta new file mode 100644 index 00000000..27a1460c --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: a40dc0d6372a9084fb45976308087290 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png new file mode 100644 index 00000000..c41f635d Binary files /dev/null and b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png differ diff --git a/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png.meta b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png.meta new file mode 100644 index 00000000..54af05bd --- /dev/null +++ b/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png.meta @@ -0,0 +1,47 @@ +fileFormatVersion: 2 +guid: 517a5bfe18f2ee04d9925db10be034e2 +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Polyart/PolyartStudio/DreamscapeCastle/Scenes/DemoExterior.unity b/Assets/Polyart/PolyartStudio/DreamscapeCastle/Scenes/DemoExterior.unity index 4dbcdf23..79105539 100644 --- a/Assets/Polyart/PolyartStudio/DreamscapeCastle/Scenes/DemoExterior.unity +++ b/Assets/Polyart/PolyartStudio/DreamscapeCastle/Scenes/DemoExterior.unity @@ -488,7 +488,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030989067, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_Name @@ -504,7 +504,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030989068, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_LocalScale.x - value: 3.1568835 + value: 3.1568837 objectReference: {fileID: 0} - target: {fileID: 1030989068, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_LocalScale.y @@ -512,19 +512,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030989068, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_LocalScale.z - value: 3.1568835 + value: 3.1568837 objectReference: {fileID: 0} - target: {fileID: 1030989068, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_LocalPosition.x - value: 258.92 + value: -17.962982 objectReference: {fileID: 0} - target: {fileID: 1030989068, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_LocalPosition.y - value: 32.397 + value: 21.777 objectReference: {fileID: 0} - target: {fileID: 1030989068, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_LocalPosition.z - value: 206.8 + value: -218.61299 objectReference: {fileID: 0} - target: {fileID: 1030989068, guid: abc00000000011918871042252335570, type: 3} propertyPath: m_LocalRotation.w @@ -571,6 +571,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000011918871042252335570, type: 3} +--- !u!4 &4228252 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030989068, guid: abc00000000011918871042252335570, + type: 3} + m_PrefabInstance: {fileID: 4228251} + m_PrefabAsset: {fileID: 0} --- !u!1001 &4704039 PrefabInstance: m_ObjectHideFlags: 0 @@ -3736,7 +3742,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -3751,17 +3757,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 222.0288 + value: -54.854202 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.554229 + value: -5.065771 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 540.71204 + value: 115.29904 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -3803,13 +3809,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &35098827 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 35098826} + m_PrefabAsset: {fileID: 0} --- !u!1001 &35127910 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -3839,17 +3851,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 239.03268 + value: -37.85031 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 8.148282 + value: -2.4717178 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 484.36813 + value: 58.95514 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -3891,6 +3903,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &35127911 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 35127910} + m_PrefabAsset: {fileID: 0} --- !u!1001 &35688318 PrefabInstance: m_ObjectHideFlags: 0 @@ -4892,7 +4910,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988815, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_Name @@ -4920,15 +4938,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.x - value: 252.482 + value: -24.401001 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.y - value: 31.314 + value: 20.694 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.z - value: 200.338 + value: -225.075 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalRotation.w @@ -4975,6 +4993,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000016663490398076905278, type: 3} +--- !u!4 &41779358 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988816, guid: abc00000000016663490398076905278, + type: 3} + m_PrefabInstance: {fileID: 41779357} + m_PrefabAsset: {fileID: 0} --- !u!1001 &44218038 PrefabInstance: m_ObjectHideFlags: 0 @@ -5064,7 +5088,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030983458, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_Name @@ -5080,15 +5104,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalPosition.x - value: 236.35 + value: -40.53299 objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalPosition.y - value: 23.7 + value: 13.080001 objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalPosition.z - value: 221.85 + value: -203.56299 objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalRotation.w @@ -5096,7 +5120,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalRotation.y @@ -5135,6 +5159,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005687511059183351798, type: 3} +--- !u!4 &44367050 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030983459, guid: abc00000000005687511059183351798, + type: 3} + m_PrefabInstance: {fileID: 44367049} + m_PrefabAsset: {fileID: 0} --- !u!1001 &44460657 PrefabInstance: m_ObjectHideFlags: 0 @@ -5798,13 +5828,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2380109507114693634, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} propertyPath: m_Name value: PF_Castle_PineTree_04 objectReference: {fileID: 0} + - target: {fileID: 2380109507114693634, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} propertyPath: m_RootOrder @@ -5813,17 +5848,17 @@ PrefabInstance: - target: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} propertyPath: m_LocalPosition.x - value: 274.48114 + value: -2.4018555 objectReference: {fileID: 0} - target: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} propertyPath: m_LocalPosition.y - value: 50.68 + value: 40.06 objectReference: {fileID: 0} - target: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} propertyPath: m_LocalPosition.z - value: 72.0188 + value: -353.3942 objectReference: {fileID: 0} - target: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} @@ -5833,7 +5868,7 @@ PrefabInstance: - target: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} @@ -5865,6 +5900,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, type: 3} +--- !u!4 &48565484 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3047820187927162552, guid: fe5e5b76c2c8db74382e8d0d7d74d9dd, + type: 3} + m_PrefabInstance: {fileID: 48565483} + m_PrefabAsset: {fileID: 0} --- !u!1001 &49084112 PrefabInstance: m_ObjectHideFlags: 0 @@ -8343,7 +8384,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974846, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_Name @@ -8355,7 +8396,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.x - value: 2.1875 + value: 2.1875002 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.y @@ -8367,15 +8408,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.x - value: 438.81 + value: 161.927 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.y - value: 28.38 + value: 17.759998 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.z - value: 136.78 + value: -288.633 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalRotation.w @@ -8410,6 +8451,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012035761949254806564, type: 3} +--- !u!4 &62003658 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974847, guid: abc00000000012035761949254806564, + type: 3} + m_PrefabInstance: {fileID: 62003657} + m_PrefabAsset: {fileID: 0} --- !u!1001 &65226758 PrefabInstance: m_ObjectHideFlags: 0 @@ -8499,7 +8546,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -8509,12 +8556,12 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 4.348285 + value: 4.348286 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 5.7340837 + value: 5.7340846 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -8524,17 +8571,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 185.18967 + value: -91.69333 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 6.740918 + value: -3.8790817 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 457.4925 + value: 32.0795 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -8581,6 +8628,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &66748384 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 66748383} + m_PrefabAsset: {fileID: 0} --- !u!1001 &66789462 PrefabInstance: m_ObjectHideFlags: 0 @@ -8823,19 +8876,23 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975941, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_Name value: PF_TowerC_Mid_No_Interior objectReference: {fileID: 0} + - target: {fileID: 1030975941, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_RootOrder value: 9 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalScale.y @@ -8843,23 +8900,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalPosition.x - value: 191.41 + value: -85.47299 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalPosition.y - value: 22.24 + value: 11.62 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalPosition.z - value: 563.43 + value: 138.017 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.w - value: 0.8609175 + value: 0.86091757 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.x @@ -8867,7 +8924,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.y - value: 0.5087445 + value: 0.50874454 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.z @@ -8890,6 +8947,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} +--- !u!4 &69909813 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, + type: 3} + m_PrefabInstance: {fileID: 69909812} + m_PrefabAsset: {fileID: 0} --- !u!1001 &69991292 PrefabInstance: m_ObjectHideFlags: 0 @@ -9341,7 +9404,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -9356,17 +9419,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 222.30957 + value: -54.573425 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.6378894 + value: -4.9821105 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 545.78876 + value: 120.37576 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -9408,6 +9471,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &74303139 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 74303138} + m_PrefabAsset: {fileID: 0} --- !u!1001 &75471986 PrefabInstance: m_ObjectHideFlags: 0 @@ -9503,7 +9572,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030994894, guid: abc00000000015638984179399266445, type: 3} propertyPath: m_Name @@ -9519,15 +9588,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030994895, guid: abc00000000015638984179399266445, type: 3} propertyPath: m_LocalPosition.x - value: 253.6792 + value: -23.203796 objectReference: {fileID: 0} - target: {fileID: 1030994895, guid: abc00000000015638984179399266445, type: 3} propertyPath: m_LocalPosition.y - value: 9.528 + value: -1.092 objectReference: {fileID: 0} - target: {fileID: 1030994895, guid: abc00000000015638984179399266445, type: 3} propertyPath: m_LocalPosition.z - value: 361.0285 + value: -64.38449 objectReference: {fileID: 0} - target: {fileID: 1030994895, guid: abc00000000015638984179399266445, type: 3} propertyPath: m_LocalRotation.w @@ -9570,6 +9639,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000015638984179399266445, type: 3} +--- !u!4 &75486259 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030994895, guid: abc00000000015638984179399266445, + type: 3} + m_PrefabInstance: {fileID: 75486258} + m_PrefabAsset: {fileID: 0} --- !u!1001 &75966725 PrefabInstance: m_ObjectHideFlags: 0 @@ -10499,7 +10574,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -10514,17 +10589,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 351.754 + value: 74.871 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 2.249597 + value: -8.370403 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 302.69266 + value: -122.72034 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -10566,6 +10641,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &83449965 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 83449964} + m_PrefabAsset: {fileID: 0} --- !u!43 &85499948 Mesh: m_ObjectHideFlags: 0 @@ -12268,6 +12349,81 @@ Transform: type: 3} m_PrefabInstance: {fileID: 94102728} m_PrefabAsset: {fileID: 0} +--- !u!1 &94165389 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 94165390} + - component: {fileID: 94165392} + - component: {fileID: 94165391} + m_Layer: 5 + m_Name: HUD + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &94165390 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94165389} + 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_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 812152301} + 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 &94165391 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94165389} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + 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 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &94165392 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94165389} + m_CullTransparentMesh: 1 --- !u!1001 &94228122 PrefabInstance: m_ObjectHideFlags: 0 @@ -12745,7 +12901,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -12755,17 +12911,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 357.61 + value: 80.72699 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 7.71 + value: -2.9099998 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 451.42 + value: 26.007019 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -12812,6 +12968,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &96149304 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 96149303} + m_PrefabAsset: {fileID: 0} --- !u!1001 &96243891 PrefabInstance: m_ObjectHideFlags: 0 @@ -12917,7 +13079,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030993214, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_Name @@ -12941,15 +13103,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.x - value: 450.4 + value: 173.517 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.y - value: 33.51 + value: 22.89 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.z - value: 124.58 + value: -300.833 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalRotation.w @@ -12984,13 +13146,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008173990476097054047, type: 3} +--- !u!4 &96962446 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030993215, guid: abc00000000008173990476097054047, + type: 3} + m_PrefabInstance: {fileID: 96962445} + m_PrefabAsset: {fileID: 0} --- !u!1001 &98067176 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} @@ -13000,17 +13168,17 @@ PrefabInstance: - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.x - value: 391.851 + value: 114.96802 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.y - value: 2.128 + value: -8.492 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.z - value: 661.043 + value: 235.63004 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} @@ -13092,6 +13260,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} +--- !u!4 &98067177 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, + type: 3} + m_PrefabInstance: {fileID: 98067176} + m_PrefabAsset: {fileID: 0} --- !u!1001 &98418146 PrefabInstance: m_ObjectHideFlags: 0 @@ -13187,7 +13361,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030998937, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_Name @@ -13211,15 +13385,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalPosition.x - value: 129.39961 + value: -147.48338 objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalPosition.y - value: 15.235918 + value: 4.615918 objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalPosition.z - value: 531.691 + value: 106.277985 objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalRotation.w @@ -13254,6 +13428,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000000122685398679938398, type: 3} +--- !u!4 &99201216 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030998938, guid: abc00000000000122685398679938398, + type: 3} + m_PrefabInstance: {fileID: 99201215} + m_PrefabAsset: {fileID: 0} --- !u!1001 &99535543 PrefabInstance: m_ObjectHideFlags: 0 @@ -14302,7 +14482,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974846, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_Name @@ -14314,7 +14494,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.x - value: 2.0504751 + value: 2.0504756 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.y @@ -14326,15 +14506,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.x - value: 438.43 + value: 161.547 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.y - value: 28.58 + value: 17.96 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.z - value: 146.61 + value: -278.80298 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalRotation.w @@ -14369,6 +14549,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012035761949254806564, type: 3} +--- !u!4 &102219932 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974847, guid: abc00000000012035761949254806564, + type: 3} + m_PrefabInstance: {fileID: 102219931} + m_PrefabAsset: {fileID: 0} --- !u!1 &103630693 GameObject: m_ObjectHideFlags: 0 @@ -14840,7 +15026,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030972426, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_Name @@ -14856,15 +15042,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.x - value: 465.03 + value: 188.147 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.y - value: 30.03 + value: 19.41 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.z - value: 128.16 + value: -297.253 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalRotation.w @@ -14915,6 +15101,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000003160319123247582383, type: 3} +--- !u!4 &105774502 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030972427, guid: abc00000000003160319123247582383, + type: 3} + m_PrefabInstance: {fileID: 105774501} + m_PrefabAsset: {fileID: 0} --- !u!1001 &108270932 PrefabInstance: m_ObjectHideFlags: 0 @@ -15275,6 +15467,12 @@ Transform: type: 3} m_PrefabInstance: {fileID: 108509478} m_PrefabAsset: {fileID: 0} +--- !u!1 &109262111 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4680818796634823330, guid: dc3f4998066447e4ebccba9fefe0f278, + type: 3} + m_PrefabInstance: {fileID: 757714195} + m_PrefabAsset: {fileID: 0} --- !u!1 &110296706 stripped GameObject: m_CorrespondingSourceObject: {fileID: 1030975172, guid: abc00000000014995704704072955557, @@ -15988,7 +16186,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -16004,15 +16202,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 388.68997 + value: 111.80698 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.26 + value: -7.3599997 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 653.8961 + value: 228.48312 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -16055,6 +16253,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &120855492 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 120855491} + m_PrefabAsset: {fileID: 0} --- !u!1001 &121406151 PrefabInstance: m_ObjectHideFlags: 0 @@ -17342,7 +17546,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -17352,17 +17556,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 287.25708 + value: 10.374084 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 6.0866456 + value: -4.5333543 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 441.6617 + value: 16.248718 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -17409,6 +17613,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &130705623 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 130705622} + m_PrefabAsset: {fileID: 0} --- !u!1001 &133207354 PrefabInstance: m_ObjectHideFlags: 0 @@ -18517,7 +18727,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -18532,17 +18742,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 204.32115 + value: -72.561844 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.6968565 + value: -4.9231434 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 510.38623 + value: 84.973236 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -18584,6 +18794,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &144270178 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 144270177} + m_PrefabAsset: {fileID: 0} --- !u!1001 &144561119 PrefabInstance: m_ObjectHideFlags: 0 @@ -19432,7 +19648,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -19442,17 +19658,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 153.953 + value: -122.92999 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 10.822 + value: 0.20199966 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 456.644 + value: 31.231018 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -19499,6 +19715,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &148921217 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 148921216} + m_PrefabAsset: {fileID: 0} --- !u!1001 &149158945 PrefabInstance: m_ObjectHideFlags: 0 @@ -20604,7 +20826,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981219, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_Name @@ -20620,15 +20842,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.x - value: 305.78 + value: 28.897003 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.y - value: 5.845 + value: -4.775 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.z - value: 449.22 + value: 23.807007 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalRotation.w @@ -20675,13 +20897,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004335665070315185964, type: 3} +--- !u!4 &154212662 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981220, guid: abc00000000004335665070315185964, + type: 3} + m_PrefabInstance: {fileID: 154212661} + m_PrefabAsset: {fileID: 0} --- !u!1001 &154907480 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999626, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_Name @@ -20709,15 +20937,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.x - value: 286.246 + value: 9.363007 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.y - value: 23.73 + value: 13.11 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.z - value: 179.781 + value: -245.63199 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalRotation.w @@ -20764,6 +20992,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000017959901563305719393, type: 3} +--- !u!4 &154907481 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999627, guid: abc00000000017959901563305719393, + type: 3} + m_PrefabInstance: {fileID: 154907480} + m_PrefabAsset: {fileID: 0} --- !u!1001 &155272408 PrefabInstance: m_ObjectHideFlags: 0 @@ -21076,7 +21310,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -21086,17 +21320,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 337.544 + value: 60.66101 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 7.419 + value: -3.2009997 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 494.41 + value: 68.99701 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -21138,11 +21372,22 @@ PrefabInstance: propertyPath: m_Name value: PF_WoodenFence_B_02 (6) objectReference: {fileID: 0} + - target: {fileID: 1804927983749843277, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &156412890 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 156412889} + m_PrefabAsset: {fileID: 0} --- !u!1001 &157638173 PrefabInstance: m_ObjectHideFlags: 0 @@ -22695,7 +22940,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -22711,15 +22956,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 400.05 + value: 123.16699 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.57 + value: -7.05 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 640 + value: 214.587 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -22762,6 +23007,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &165375526 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 165375525} + m_PrefabAsset: {fileID: 0} --- !u!1001 &165522316 PrefabInstance: m_ObjectHideFlags: 0 @@ -23894,7 +24145,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981059, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_Name @@ -23910,7 +24161,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalScale.x - value: 2.75 + value: 2.7499998 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalScale.y @@ -23918,19 +24169,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalScale.z - value: 2.75 + value: 2.7499998 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.x - value: 240.51488 + value: -36.36812 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.y - value: 23.436 + value: 12.816001 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.z - value: 225.75487 + value: -199.65813 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalRotation.w @@ -23938,7 +24189,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalRotation.y @@ -23946,7 +24197,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -23981,6 +24232,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005992521218887334492, type: 3} +--- !u!4 &172105765 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981060, guid: abc00000000005992521218887334492, + type: 3} + m_PrefabInstance: {fileID: 172105764} + m_PrefabAsset: {fileID: 0} --- !u!1001 &173121830 PrefabInstance: m_ObjectHideFlags: 0 @@ -24274,7 +24531,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -24284,17 +24541,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 354.40842 + value: 77.52542 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 2.334767 + value: -8.285233 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 307.06357 + value: -118.34943 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -24341,6 +24598,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &174106328 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 174106327} + m_PrefabAsset: {fileID: 0} --- !u!1001 &174391901 PrefabInstance: m_ObjectHideFlags: 0 @@ -25141,7 +25404,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -25166,17 +25429,17 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: -0.54 + value: -277.423 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: 34.12 + value: 23.5 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 216.02 + value: -209.39299 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -25186,7 +25449,7 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -25218,11 +25481,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_07 (1) objectReference: {fileID: 0} + - target: {fileID: 8782862719963060608, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &180377872 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 180377871} + m_PrefabAsset: {fileID: 0} --- !u!1001 &184092704 PrefabInstance: m_ObjectHideFlags: 0 @@ -32595,31 +32869,35 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1031000078, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_Name value: PF_LargeCliff_A (3) objectReference: {fileID: 0} + - target: {fileID: 1031000078, guid: abc00000000012691504544810772304, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_RootOrder value: 7 objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_LocalPosition.x - value: 90.4 + value: -186.483 objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_LocalPosition.y - value: 7.6 + value: -3.02 objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_LocalPosition.z - value: -1.4 + value: -426.813 objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_LocalRotation.w - value: 0.6362274 + value: 0.6362275 objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_LocalRotation.x @@ -32627,7 +32905,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_LocalRotation.y - value: -0.2554001 + value: -0.25540012 objectReference: {fileID: 0} - target: {fileID: 1031000079, guid: abc00000000012691504544810772304, type: 3} propertyPath: m_LocalRotation.z @@ -32650,6 +32928,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012691504544810772304, type: 3} +--- !u!4 &203951061 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1031000079, guid: abc00000000012691504544810772304, + type: 3} + m_PrefabInstance: {fileID: 203951060} + m_PrefabAsset: {fileID: 0} --- !u!1001 &204012113 PrefabInstance: m_ObjectHideFlags: 0 @@ -32958,27 +33242,31 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030983511, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_Name value: PF_CastleBridge_Foundation_02 objectReference: {fileID: 0} + - target: {fileID: 1030983511, guid: abc00000000002233199144111365775, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_RootOrder value: 4 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.x - value: 252.12 + value: -24.763 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.y - value: 5 + value: -5.62 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.z - value: 205.9 + value: -219.513 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalRotation.w @@ -33013,6 +33301,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002233199144111365775, type: 3} +--- !u!4 &204678737 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030983512, guid: abc00000000002233199144111365775, + type: 3} + m_PrefabInstance: {fileID: 204678736} + m_PrefabAsset: {fileID: 0} --- !u!1001 &204850052 PrefabInstance: m_ObjectHideFlags: 0 @@ -34890,7 +35184,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -34906,15 +35200,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 400.05 + value: 123.16699 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.57 + value: -7.05 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 652.143 + value: 226.73001 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -34957,6 +35251,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &213620348 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 213620347} + m_PrefabAsset: {fileID: 0} --- !u!1001 &214310740 PrefabInstance: m_ObjectHideFlags: 0 @@ -35543,7 +35843,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -35559,15 +35859,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 388.69 + value: 111.80701 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.26 + value: -7.3599997 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 658.39606 + value: 232.98306 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -35610,6 +35910,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &216897522 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 216897521} + m_PrefabAsset: {fileID: 0} --- !u!1001 &218438494 PrefabInstance: m_ObjectHideFlags: 0 @@ -38951,7 +39257,7 @@ Transform: m_GameObject: {fileID: 226261318} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 82.40375, y: 15.011145, z: -5.233963} + m_LocalPosition: {x: -194.47925, y: 4.3911448, z: -430.64697} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -39016,7 +39322,7 @@ Transform: - {fileID: 751317474} - {fileID: 31556092} - {fileID: 1834014519} - m_Father: {fileID: 0} + m_Father: {fileID: 924913567} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &227460091 PrefabInstance: @@ -39860,7 +40166,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981219, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_Name @@ -39876,15 +40182,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.x - value: 150 + value: -126.882996 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.y - value: 11.348 + value: 0.7279997 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.z - value: 458.451 + value: 33.037994 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalRotation.w @@ -39931,6 +40237,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004335665070315185964, type: 3} +--- !u!4 &236268187 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981220, guid: abc00000000004335665070315185964, + type: 3} + m_PrefabInstance: {fileID: 236268186} + m_PrefabAsset: {fileID: 0} --- !u!1001 &236543784 PrefabInstance: m_ObjectHideFlags: 0 @@ -40060,7 +40372,7 @@ Transform: m_GameObject: {fileID: 237357164} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 82.40375, y: 15.011145, z: -5.233963} + m_LocalPosition: {x: -194.47925, y: 4.3911448, z: -430.64697} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -40079,7 +40391,7 @@ Transform: - {fileID: 1382395250} - {fileID: 1304418571} - {fileID: 134340627} - m_Father: {fileID: 0} + m_Father: {fileID: 924913567} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &237864004 GameObject: @@ -40192,7 +40504,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -40202,17 +40514,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 283.3884 + value: 6.5054016 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.819687 + value: -4.800313 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 442.06055 + value: 16.647552 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -40259,6 +40571,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &238605241 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 238605240} + m_PrefabAsset: {fileID: 0} --- !u!1001 &239231671 PrefabInstance: m_ObjectHideFlags: 0 @@ -41579,7 +41897,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -41607,15 +41925,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 460.51 + value: 183.62701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 112.36 + value: -313.05298 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -41666,6 +41984,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &246035558 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 246035557} + m_PrefabAsset: {fileID: 0} --- !u!1001 &246198708 PrefabInstance: m_ObjectHideFlags: 0 @@ -42674,7 +42998,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 6187912333247731563, guid: a14e490b53a68c74480507d59768229b, type: 3} @@ -42689,17 +43013,17 @@ PrefabInstance: - target: {fileID: 6815126939746766289, guid: a14e490b53a68c74480507d59768229b, type: 3} propertyPath: m_LocalPosition.x - value: 341.06662 + value: 64.183624 objectReference: {fileID: 0} - target: {fileID: 6815126939746766289, guid: a14e490b53a68c74480507d59768229b, type: 3} propertyPath: m_LocalPosition.y - value: 7.34 + value: -3.2799997 objectReference: {fileID: 0} - target: {fileID: 6815126939746766289, guid: a14e490b53a68c74480507d59768229b, type: 3} propertyPath: m_LocalPosition.z - value: 498.75864 + value: 73.34564 objectReference: {fileID: 0} - target: {fileID: 6815126939746766289, guid: a14e490b53a68c74480507d59768229b, type: 3} @@ -42741,6 +43065,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: a14e490b53a68c74480507d59768229b, type: 3} +--- !u!4 &251496160 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6815126939746766289, guid: a14e490b53a68c74480507d59768229b, + type: 3} + m_PrefabInstance: {fileID: 251496159} + m_PrefabAsset: {fileID: 0} --- !u!1001 &252414485 PrefabInstance: m_ObjectHideFlags: 0 @@ -42831,7 +43161,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988959, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_Name @@ -42847,23 +43177,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalScale.y - value: 7.3425 + value: 7.342501 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalScale.z - value: 7.3425 + value: 7.342501 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.x - value: 116.6 + value: -160.28299 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.y - value: 63.32101 + value: 52.70101 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.z - value: 519.8 + value: 94.38699 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.w @@ -42898,6 +43228,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000015723345820112897059, type: 3} +--- !u!4 &253424104 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988960, guid: abc00000000015723345820112897059, + type: 3} + m_PrefabInstance: {fileID: 253424103} + m_PrefabAsset: {fileID: 0} --- !u!1001 &253758748 PrefabInstance: m_ObjectHideFlags: 0 @@ -43008,7 +43344,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975110, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_Name @@ -43036,15 +43372,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.x - value: 828.74457 + value: 551.8616 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.y - value: 51.642166 + value: 41.022167 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.z - value: 1842.6802 + value: 1417.2672 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalRotation.w @@ -43091,6 +43427,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000007387135349448011318, type: 3} +--- !u!4 &253945881 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975111, guid: abc00000000007387135349448011318, + type: 3} + m_PrefabInstance: {fileID: 253945880} + m_PrefabAsset: {fileID: 0} --- !u!1001 &254492202 PrefabInstance: m_ObjectHideFlags: 0 @@ -43261,7 +43603,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -43286,22 +43628,22 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8667002 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 352.43 + value: 75.547 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 8.608944 + value: -2.011056 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 448.46 + value: 23.046997 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -43343,6 +43685,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &257126386 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 257126385} + m_PrefabAsset: {fileID: 0} --- !u!1001 &258179379 PrefabInstance: m_ObjectHideFlags: 0 @@ -43444,7 +43792,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981037, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_Name @@ -43468,15 +43816,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.x - value: 19.4 + value: -257.483 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.y - value: 25.09 + value: 14.47 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.z - value: 359.61 + value: -65.80301 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalRotation.w @@ -43511,6 +43859,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002265888782412133682, type: 3} +--- !u!4 &258267131 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981038, guid: abc00000000002265888782412133682, + type: 3} + m_PrefabInstance: {fileID: 258267130} + m_PrefabAsset: {fileID: 0} --- !u!1001 &258820854 PrefabInstance: m_ObjectHideFlags: 0 @@ -44325,7 +44679,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -44335,17 +44689,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 285.1959 + value: 8.312897 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.8712173 + value: -4.7487826 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 440.34964 + value: 14.9366455 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -44392,6 +44746,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &264346565 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 264346564} + m_PrefabAsset: {fileID: 0} --- !u!1001 &265241638 PrefabInstance: m_ObjectHideFlags: 0 @@ -45232,13 +45592,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 417968349524012222, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_Name value: PF_Castle_PineTree_02 objectReference: {fileID: 0} + - target: {fileID: 417968349524012222, guid: 9ebdb7554885e8e4f92d463b2de0426c, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_RootOrder @@ -45247,7 +45612,7 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalScale.x - value: 1.2687 + value: 1.2687002 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -45257,22 +45622,22 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalScale.z - value: 1.2687 + value: 1.2687002 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.x - value: 183.61557 + value: -93.267426 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.y - value: 35.694683 + value: 25.074684 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.z - value: 63.059914 + value: -362.3531 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -45314,6 +45679,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} +--- !u!4 &270905934 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, + type: 3} + m_PrefabInstance: {fileID: 270905933} + m_PrefabAsset: {fileID: 0} --- !u!1001 &271315627 PrefabInstance: m_ObjectHideFlags: 0 @@ -45894,7 +46265,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -45909,7 +46280,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.x - value: 3.778884 + value: 3.7788835 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -45919,22 +46290,22 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 3.778884 + value: 3.7788844 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 293.02542 + value: 16.142426 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 7.8333 + value: -2.7866998 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 464.14163 + value: 38.728638 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -45976,6 +46347,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &274668704 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 274668703} + m_PrefabAsset: {fileID: 0} --- !u!4 &274935958 stripped Transform: m_CorrespondingSourceObject: {fileID: 1030986210, guid: 17ee56a4c4830b448bc2a3e53527d636, @@ -47835,7 +48212,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -47845,12 +48222,12 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.x - value: 3.7718 + value: 3.7718003 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 3.7718 + value: 3.7718003 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -47860,17 +48237,17 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 223.12 + value: -53.763 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: 1.55 + value: -9.07 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 572.5463 + value: 147.13333 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -47912,11 +48289,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_07 objectReference: {fileID: 0} + - target: {fileID: 8782862719963060608, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &295294523 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 295294522} + m_PrefabAsset: {fileID: 0} --- !u!1001 &296158433 PrefabInstance: m_ObjectHideFlags: 0 @@ -48213,7 +48601,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -48233,27 +48621,27 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.y - value: 5.6599 + value: 5.659899 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.z - value: 5.6599 + value: 5.659901 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 339.13 + value: 62.24701 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 1.73 + value: -8.889999 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 299.56 + value: -125.853 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -48295,6 +48683,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &300924587 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 300924586} + m_PrefabAsset: {fileID: 0} --- !u!1001 &301218004 PrefabInstance: m_ObjectHideFlags: 0 @@ -48519,7 +48913,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -48534,17 +48928,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 223.9874 + value: -52.8956 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.6532655 + value: -4.9667344 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 558.3151 + value: 132.90213 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -48586,6 +48980,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &301680960 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 301680959} + m_PrefabAsset: {fileID: 0} --- !u!1001 &301748192 PrefabInstance: m_ObjectHideFlags: 0 @@ -48924,7 +49324,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030994102, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_Name @@ -48940,15 +49340,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalPosition.x - value: 255.8115 + value: -21.071503 objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalPosition.y - value: 9.4148 + value: -1.2052002 objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalPosition.z - value: 358.7463 + value: -66.66669 objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalRotation.w @@ -48956,15 +49356,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994103, guid: abc00000000006042353191074377383, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -48995,6 +49395,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000006042353191074377383, type: 3} +--- !u!4 &304363756 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030994103, guid: abc00000000006042353191074377383, + type: 3} + m_PrefabInstance: {fileID: 304363755} + m_PrefabAsset: {fileID: 0} --- !u!1001 &304602377 PrefabInstance: m_ObjectHideFlags: 0 @@ -49110,7 +49516,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974620, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_Name @@ -49126,15 +49532,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.x - value: 394.66824 + value: 117.78525 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.y - value: 2.988 + value: -7.632 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.z - value: 656.04016 + value: 230.62717 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalRotation.w @@ -49181,6 +49587,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008012362865714032028, type: 3} +--- !u!4 &305196743 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974621, guid: abc00000000008012362865714032028, + type: 3} + m_PrefabInstance: {fileID: 305196742} + m_PrefabAsset: {fileID: 0} --- !u!1001 &306739600 PrefabInstance: m_ObjectHideFlags: 0 @@ -50855,7 +51267,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -50865,22 +51277,22 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 301.79865 + value: 24.91565 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.832 + value: -4.788 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 445.37717 + value: 19.964172 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.w - value: 0.93293285 + value: 0.9329329 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -50890,7 +51302,7 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.y - value: -0.3600503 + value: -0.36005032 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -50922,6 +51334,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &322221774 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 322221773} + m_PrefabAsset: {fileID: 0} --- !u!1001 &323387413 PrefabInstance: m_ObjectHideFlags: 0 @@ -52875,7 +53293,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988959, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_Name @@ -52891,39 +53309,39 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalScale.y - value: 7.3425 + value: 7.3425007 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalScale.z - value: 7.3425 + value: 7.3425007 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.x - value: 119.77 + value: -157.113 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.y - value: 46.051388 + value: 35.43139 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.z - value: 525.93 + value: 100.517 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.w - value: 0.8338079 + value: 0.83380795 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.x - value: -0.21644746 + value: -0.21644747 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.y - value: 0.5058129 + value: 0.50581294 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.z - value: 0.045477092 + value: 0.045477096 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -52942,6 +53360,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000015723345820112897059, type: 3} +--- !u!4 &338512124 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988960, guid: abc00000000015723345820112897059, + type: 3} + m_PrefabInstance: {fileID: 338512123} + m_PrefabAsset: {fileID: 0} --- !u!1001 &338958644 PrefabInstance: m_ObjectHideFlags: 0 @@ -53608,7 +54032,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -53618,17 +54042,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 187.30621 + value: -89.57678 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 6.3267345 + value: -4.2932653 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 490.80283 + value: 65.38983 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -53675,6 +54099,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &341086813 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 341086812} + m_PrefabAsset: {fileID: 0} --- !u!1001 &341848149 PrefabInstance: m_ObjectHideFlags: 0 @@ -55937,7 +56367,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -55962,17 +56392,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 291.26 + value: 14.377014 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 6.1416883 + value: -4.4783115 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 460.63 + value: 35.21701 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -56014,11 +56444,22 @@ PrefabInstance: propertyPath: m_Name value: PF_PebblesGroup_05 (1) objectReference: {fileID: 0} + - target: {fileID: 771650965401651472, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &359142549 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 359142548} + m_PrefabAsset: {fileID: 0} --- !u!1001 &359252180 PrefabInstance: m_ObjectHideFlags: 0 @@ -56466,7 +56907,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -56476,17 +56917,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 322.813 + value: 45.929993 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 7.03 + value: -3.5899997 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 478.451 + value: 53.037994 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -56501,7 +56942,7 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalRotation.y - value: -0.8651533 + value: -0.86515325 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -56533,13 +56974,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &362726632 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 362726631} + m_PrefabAsset: {fileID: 0} --- !u!1001 &363821983 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} @@ -56564,17 +57011,17 @@ PrefabInstance: - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} propertyPath: m_LocalPosition.x - value: 352.6 + value: 75.71701 objectReference: {fileID: 0} - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} propertyPath: m_LocalPosition.y - value: 126.5 + value: 115.88 objectReference: {fileID: 0} - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} propertyPath: m_LocalPosition.z - value: -95.5 + value: -520.91296 objectReference: {fileID: 0} - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} @@ -56584,7 +57031,7 @@ PrefabInstance: - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} @@ -56616,11 +57063,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Castle_PineTree_01 objectReference: {fileID: 0} + - target: {fileID: 5679949125364215354, guid: b908c72dab6f2194695475e95663b251, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b908c72dab6f2194695475e95663b251, type: 3} +--- !u!4 &363821984 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, + type: 3} + m_PrefabInstance: {fileID: 363821983} + m_PrefabAsset: {fileID: 0} --- !u!1001 &364427758 PrefabInstance: m_ObjectHideFlags: 0 @@ -56835,7 +57293,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -56863,15 +57321,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 453.812 + value: 176.92902 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 119.293 + value: -306.12 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -56922,6 +57380,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &365740551 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 365740550} + m_PrefabAsset: {fileID: 0} --- !u!1001 &366088676 PrefabInstance: m_ObjectHideFlags: 0 @@ -57314,7 +57778,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -57330,7 +57794,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.4761217 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -57338,19 +57802,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.z - value: 2.3506 + value: 2.3505995 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 468.26 + value: 191.37701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 116.07 + value: -309.343 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -57401,6 +57865,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &369351206 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 369351205} + m_PrefabAsset: {fileID: 0} --- !u!1001 &369468856 PrefabInstance: m_ObjectHideFlags: 0 @@ -58595,7 +59065,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -58605,7 +59075,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 2.8416045 + value: 2.841605 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -58620,17 +59090,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 203.59146 + value: -73.291534 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 5.421 + value: -5.199 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 516.8251 + value: 91.41208 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -58640,7 +59110,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.x - value: 0.021526974 + value: 0.02152697 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -58650,7 +59120,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.z - value: -0.029296778 + value: -0.02929677 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -58677,6 +59147,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &379207961 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 379207960} + m_PrefabAsset: {fileID: 0} --- !u!1001 &380051579 PrefabInstance: m_ObjectHideFlags: 0 @@ -58845,7 +59321,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975941, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_Name @@ -58857,7 +59333,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalScale.y @@ -58865,23 +59341,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalPosition.x - value: 203.72891 + value: -73.15408 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalPosition.y - value: 30.08481 + value: 19.46481 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalPosition.z - value: 570.2012 + value: 144.78818 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.w - value: 0.8609175 + value: 0.86091757 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.x @@ -58889,7 +59365,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.y - value: 0.5087445 + value: 0.50874454 objectReference: {fileID: 0} - target: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} propertyPath: m_LocalRotation.z @@ -58912,6 +59388,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, type: 3} +--- !u!4 &380281624 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975942, guid: 9ba3dc7cf4db67c4b9c2cb72ec060ee2, + type: 3} + m_PrefabInstance: {fileID: 380281623} + m_PrefabAsset: {fileID: 0} --- !u!1001 &381080608 PrefabInstance: m_ObjectHideFlags: 0 @@ -59598,7 +60080,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} @@ -59608,17 +60090,17 @@ PrefabInstance: - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} propertyPath: m_LocalPosition.x - value: 264.361 + value: -12.522003 objectReference: {fileID: 0} - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} propertyPath: m_LocalPosition.y - value: 14.599 + value: 3.979 objectReference: {fileID: 0} - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} propertyPath: m_LocalPosition.z - value: 365.09 + value: -60.322998 objectReference: {fileID: 0} - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} @@ -59660,11 +60142,22 @@ PrefabInstance: propertyPath: m_Name value: PF_MerchantBanner objectReference: {fileID: 0} + - target: {fileID: 6749972503596808566, guid: b0986f993b17a284d9e7d82f365cba0a, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} +--- !u!4 &387082028 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, + type: 3} + m_PrefabInstance: {fileID: 387082027} + m_PrefabAsset: {fileID: 0} --- !u!1001 &388671823 PrefabInstance: m_ObjectHideFlags: 0 @@ -60056,7 +60549,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -60076,7 +60569,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 3.778884 + value: 3.7788844 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -60086,17 +60579,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 327.93283 + value: 51.049835 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 2.8233001 + value: -7.7966995 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 358.26236 + value: -67.150635 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -60138,6 +60631,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &389526715 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 389526714} + m_PrefabAsset: {fileID: 0} --- !u!1001 &390359403 PrefabInstance: m_ObjectHideFlags: 0 @@ -62319,7 +62818,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -62347,15 +62846,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 474.15 + value: 197.267 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 120.12 + value: -305.293 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -62406,6 +62905,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &402021581 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 402021580} + m_PrefabAsset: {fileID: 0} --- !u!1 &402086591 GameObject: m_ObjectHideFlags: 0 @@ -63400,7 +63905,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} @@ -63410,17 +63915,17 @@ PrefabInstance: - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} propertyPath: m_LocalPosition.x - value: 219.86 + value: -57.022995 objectReference: {fileID: 0} - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} propertyPath: m_LocalPosition.y - value: 22.00427 + value: 11.384271 objectReference: {fileID: 0} - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} propertyPath: m_LocalPosition.z - value: 322.79 + value: -102.622986 objectReference: {fileID: 0} - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} @@ -63467,6 +63972,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} +--- !u!4 &409101590 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, + type: 3} + m_PrefabInstance: {fileID: 409101589} + m_PrefabAsset: {fileID: 0} --- !u!1001 &409126810 PrefabInstance: m_ObjectHideFlags: 0 @@ -63577,7 +64088,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2709442274334635132, guid: 84e429ba6ad2c4642accc30ef6683911, type: 3} @@ -63592,17 +64103,17 @@ PrefabInstance: - target: {fileID: 2709442274334635133, guid: 84e429ba6ad2c4642accc30ef6683911, type: 3} propertyPath: m_LocalPosition.x - value: 487.15 + value: 210.267 objectReference: {fileID: 0} - target: {fileID: 2709442274334635133, guid: 84e429ba6ad2c4642accc30ef6683911, type: 3} propertyPath: m_LocalPosition.y - value: 30.02 + value: 19.400002 objectReference: {fileID: 0} - target: {fileID: 2709442274334635133, guid: 84e429ba6ad2c4642accc30ef6683911, type: 3} propertyPath: m_LocalPosition.z - value: 146.43 + value: -278.983 objectReference: {fileID: 0} - target: {fileID: 2709442274334635133, guid: 84e429ba6ad2c4642accc30ef6683911, type: 3} @@ -63644,6 +64155,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 84e429ba6ad2c4642accc30ef6683911, type: 3} +--- !u!4 &409203492 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2709442274334635133, guid: 84e429ba6ad2c4642accc30ef6683911, + type: 3} + m_PrefabInstance: {fileID: 409203491} + m_PrefabAsset: {fileID: 0} --- !u!1 &409733200 stripped GameObject: m_CorrespondingSourceObject: {fileID: 1030975172, guid: abc00000000014995704704072955557, @@ -65227,19 +65744,23 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030985874, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_Name value: PF_Stairs_HalfHeight_03 objectReference: {fileID: 0} + - target: {fileID: 1030985874, guid: abc00000000007062364696611057136, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_RootOrder value: 23 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalScale.x - value: 4.4230213 + value: 4.423022 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalScale.y @@ -65247,19 +65768,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalScale.z - value: 4.4230213 + value: 4.423022 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalPosition.x - value: 160.8 + value: -116.08299 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalPosition.y - value: 69.418 + value: 58.798 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalPosition.z - value: -20 + value: -445.413 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalRotation.w @@ -65294,6 +65815,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000007062364696611057136, type: 3} +--- !u!4 &425345243 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030985875, guid: abc00000000007062364696611057136, + type: 3} + m_PrefabInstance: {fileID: 425345242} + m_PrefabAsset: {fileID: 0} --- !u!1001 &425586025 PrefabInstance: m_ObjectHideFlags: 0 @@ -66083,7 +66610,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988887, guid: abc00000000014081918852341209980, type: 3} propertyPath: m_Name @@ -66099,7 +66626,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988888, guid: abc00000000014081918852341209980, type: 3} propertyPath: m_LocalScale.y - value: 6.6215 + value: 6.621501 objectReference: {fileID: 0} - target: {fileID: 1030988888, guid: abc00000000014081918852341209980, type: 3} propertyPath: m_LocalScale.z @@ -66107,15 +66634,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988888, guid: abc00000000014081918852341209980, type: 3} propertyPath: m_LocalPosition.x - value: 146.70804 + value: -130.17496 objectReference: {fileID: 0} - target: {fileID: 1030988888, guid: abc00000000014081918852341209980, type: 3} propertyPath: m_LocalPosition.y - value: 29.48 + value: 18.86 objectReference: {fileID: 0} - target: {fileID: 1030988888, guid: abc00000000014081918852341209980, type: 3} propertyPath: m_LocalPosition.z - value: 529.3064 + value: 103.8934 objectReference: {fileID: 0} - target: {fileID: 1030988888, guid: abc00000000014081918852341209980, type: 3} propertyPath: m_LocalRotation.w @@ -66150,6 +66677,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000014081918852341209980, type: 3} +--- !u!4 &427605187 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988888, guid: abc00000000014081918852341209980, + type: 3} + m_PrefabInstance: {fileID: 427605186} + m_PrefabAsset: {fileID: 0} --- !u!1001 &427840318 PrefabInstance: m_ObjectHideFlags: 0 @@ -66240,7 +66773,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -66260,7 +66793,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 2.8667 + value: 2.8667004 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -66270,17 +66803,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 305.11935 + value: 28.236359 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 6.88 + value: -3.7399998 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 379.0615 + value: -46.3515 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -66322,6 +66855,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &428197746 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 428197745} + m_PrefabAsset: {fileID: 0} --- !u!1001 &428665201 PrefabInstance: m_ObjectHideFlags: 0 @@ -66785,7 +67324,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -66795,12 +67334,12 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 4.1431313 + value: 4.1431317 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 4.1431313 + value: 4.1431303 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -66810,17 +67349,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 338.42 + value: 61.537018 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 2.53 + value: -8.09 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 287.75 + value: -137.663 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -66862,11 +67401,22 @@ PrefabInstance: propertyPath: m_Name value: PF_PebblesGroup_05 objectReference: {fileID: 0} + - target: {fileID: 771650965401651472, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &431217093 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 431217092} + m_PrefabAsset: {fileID: 0} --- !u!1001 &431347808 PrefabInstance: m_ObjectHideFlags: 0 @@ -67491,7 +68041,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974620, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_Name @@ -67507,15 +68057,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.x - value: 398.04 + value: 121.15701 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.y - value: 2.96 + value: -7.66 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.z - value: 634.32 + value: 208.90701 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalRotation.w @@ -67562,6 +68112,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008012362865714032028, type: 3} +--- !u!4 &436911638 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974621, guid: abc00000000008012362865714032028, + type: 3} + m_PrefabInstance: {fileID: 436911637} + m_PrefabAsset: {fileID: 0} --- !u!1001 &437800687 PrefabInstance: m_ObjectHideFlags: 0 @@ -68133,7 +68689,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 417968349524012222, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -68163,17 +68719,17 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.x - value: 83.99597 + value: -192.88702 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.y - value: 22.076805 + value: 11.456805 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.z - value: 148.4483 + value: -276.9647 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -68215,6 +68771,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} +--- !u!4 &443590042 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, + type: 3} + m_PrefabInstance: {fileID: 443590041} + m_PrefabAsset: {fileID: 0} --- !u!1001 &443963077 PrefabInstance: m_ObjectHideFlags: 0 @@ -69607,7 +70169,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 417968349524012222, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -69622,7 +70184,7 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalScale.x - value: 1.684506 + value: 1.6845065 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -69632,22 +70194,22 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalScale.z - value: 1.684506 + value: 1.6845065 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.x - value: 48.943604 + value: -227.93939 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.y - value: 28.704908 + value: 18.084908 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.z - value: 183.42035 + value: -241.99265 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -69689,6 +70251,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} +--- !u!4 &452341655 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, + type: 3} + m_PrefabInstance: {fileID: 452341654} + m_PrefabAsset: {fileID: 0} --- !u!1001 &452734298 PrefabInstance: m_ObjectHideFlags: 0 @@ -70838,7 +71406,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -70854,7 +71422,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.4761217 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -70866,15 +71434,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 461.98 + value: 185.09702 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 112.31 + value: -313.103 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -70925,6 +71493,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &460232056 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 460232055} + m_PrefabAsset: {fileID: 0} --- !u!1001 &461043563 PrefabInstance: m_ObjectHideFlags: 0 @@ -71974,7 +72548,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988959, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_Name @@ -71990,23 +72564,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalScale.y - value: 7.3425 + value: 7.342501 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalScale.z - value: 7.3425 + value: 7.342501 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.x - value: 119.1 + value: -157.78299 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.y - value: 53.82101 + value: 43.20101 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.z - value: 523.3 + value: 97.88699 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.w @@ -72041,6 +72615,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000015723345820112897059, type: 3} +--- !u!4 &467583069 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988960, guid: abc00000000015723345820112897059, + type: 3} + m_PrefabInstance: {fileID: 467583068} + m_PrefabAsset: {fileID: 0} --- !u!1001 &467955247 PrefabInstance: m_ObjectHideFlags: 0 @@ -72479,7 +73059,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -72489,7 +73069,7 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.x - value: 3.6517 + value: 3.6516995 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -72499,22 +73079,22 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.z - value: 3.6517 + value: 3.6516995 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 265.03888 + value: -11.844116 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: -1.96 + value: -12.58 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 233.73817 + value: -191.67482 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -72561,6 +73141,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &470455925 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 470455924} + m_PrefabAsset: {fileID: 0} --- !u!1001 &471340008 PrefabInstance: m_ObjectHideFlags: 0 @@ -73242,7 +73828,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030994400, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_Name @@ -73258,15 +73844,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalPosition.x - value: 253.779 + value: -23.103989 objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalPosition.y - value: 9.5197 + value: -1.1002998 objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalPosition.z - value: 361.0303 + value: -64.38269 objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalRotation.w @@ -73274,15 +73860,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994401, guid: abc00000000013175170654638595853, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -73309,13 +73895,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000013175170654638595853, type: 3} +--- !u!4 &475275679 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030994401, guid: abc00000000013175170654638595853, + type: 3} + m_PrefabInstance: {fileID: 475275678} + m_PrefabAsset: {fileID: 0} --- !u!1001 &476754146 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2709442274334635132, guid: 78ffac662c12ea8499188843dab01b08, type: 3} @@ -73330,17 +73922,17 @@ PrefabInstance: - target: {fileID: 2709442274334635133, guid: 78ffac662c12ea8499188843dab01b08, type: 3} propertyPath: m_LocalPosition.x - value: 286.71 + value: 9.826996 objectReference: {fileID: 0} - target: {fileID: 2709442274334635133, guid: 78ffac662c12ea8499188843dab01b08, type: 3} propertyPath: m_LocalPosition.y - value: 12.543507 + value: 1.9235067 objectReference: {fileID: 0} - target: {fileID: 2709442274334635133, guid: 78ffac662c12ea8499188843dab01b08, type: 3} propertyPath: m_LocalPosition.z - value: 196.09 + value: -229.323 objectReference: {fileID: 0} - target: {fileID: 2709442274334635133, guid: 78ffac662c12ea8499188843dab01b08, type: 3} @@ -73382,6 +73974,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 78ffac662c12ea8499188843dab01b08, type: 3} +--- !u!4 &476754147 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2709442274334635133, guid: 78ffac662c12ea8499188843dab01b08, + type: 3} + m_PrefabInstance: {fileID: 476754146} + m_PrefabAsset: {fileID: 0} --- !u!1001 &477149581 PrefabInstance: m_ObjectHideFlags: 0 @@ -74105,7 +74703,7 @@ Transform: m_GameObject: {fileID: 483971654} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 82.40375, y: 15.011145, z: -5.233963} + m_LocalPosition: {x: -194.47925, y: 4.3911448, z: -430.64697} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -75612,7 +76210,7 @@ Transform: - {fileID: 479187180} - {fileID: 655856226} - {fileID: 1386489251} - m_Father: {fileID: 0} + m_Father: {fileID: 924913567} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &484612620 PrefabInstance: @@ -76086,7 +76684,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 258270375953189096, guid: 35a3db7468afe014da5cb945388eab77, type: 3} @@ -76116,17 +76714,17 @@ PrefabInstance: - target: {fileID: 639052810792604242, guid: 35a3db7468afe014da5cb945388eab77, type: 3} propertyPath: m_LocalPosition.x - value: 247.47 + value: -29.412994 objectReference: {fileID: 0} - target: {fileID: 639052810792604242, guid: 35a3db7468afe014da5cb945388eab77, type: 3} propertyPath: m_LocalPosition.y - value: 4.73 + value: -5.89 objectReference: {fileID: 0} - target: {fileID: 639052810792604242, guid: 35a3db7468afe014da5cb945388eab77, type: 3} propertyPath: m_LocalPosition.z - value: 234.71 + value: -190.70299 objectReference: {fileID: 0} - target: {fileID: 639052810792604242, guid: 35a3db7468afe014da5cb945388eab77, type: 3} @@ -76168,6 +76766,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 35a3db7468afe014da5cb945388eab77, type: 3} +--- !u!4 &491660075 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 639052810792604242, guid: 35a3db7468afe014da5cb945388eab77, + type: 3} + m_PrefabInstance: {fileID: 491660074} + m_PrefabAsset: {fileID: 0} --- !u!1001 &492089898 PrefabInstance: m_ObjectHideFlags: 0 @@ -77348,7 +77952,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -77368,22 +77972,22 @@ PrefabInstance: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalScale.z - value: 4.3375 + value: 4.337501 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.x - value: -22.14 + value: -299.023 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.y - value: 37.63 + value: 27.010002 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.z - value: 251.12 + value: -174.293 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -77425,11 +78029,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_05 objectReference: {fileID: 0} + - target: {fileID: 7613198964696299674, guid: 5683f5995d412cd4db12468f7ba3ac5b, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} +--- !u!4 &500957047 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, + type: 3} + m_PrefabInstance: {fileID: 500957046} + m_PrefabAsset: {fileID: 0} --- !u!1001 &502423514 PrefabInstance: m_ObjectHideFlags: 0 @@ -78905,7 +79520,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -78933,15 +79548,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 449.05 + value: 172.16699 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 124.59 + value: -300.823 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -78992,6 +79607,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &510366979 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 510366978} + m_PrefabAsset: {fileID: 0} --- !u!1001 &510971339 PrefabInstance: m_ObjectHideFlags: 0 @@ -79715,7 +80336,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975927, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_Name @@ -79739,15 +80360,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.x - value: 202.42415 + value: -74.45885 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.y - value: 41.034817 + value: 30.414818 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.z - value: 558.27374 + value: 132.86075 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.w @@ -79782,6 +80403,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} +--- !u!4 &518765250 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, + type: 3} + m_PrefabInstance: {fileID: 518765249} + m_PrefabAsset: {fileID: 0} --- !u!1001 &518797944 PrefabInstance: m_ObjectHideFlags: 0 @@ -80563,7 +81190,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -80578,52 +81205,52 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.x - value: 3.7992373 + value: 3.7992368 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 3.7992373 + value: 3.7992375 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 3.7992373 + value: 3.799237 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 170.99 + value: -105.89299 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 7.8607574 + value: -2.7592425 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 557.22 + value: 131.80698 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.w - value: -0.06441757 + value: -0.06441758 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.x - value: -0.12038012 + value: -0.120380126 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.y - value: 0.96600574 + value: 0.9660058 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.z - value: -0.21952637 + value: -0.21952638 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -80645,6 +81272,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &525502127 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 525502126} + m_PrefabAsset: {fileID: 0} --- !u!1001 &526540792 PrefabInstance: m_ObjectHideFlags: 0 @@ -81241,7 +81874,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -81251,12 +81884,12 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.x - value: 3.6517 + value: 3.6517005 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 3.6517 + value: 3.6517005 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -81266,17 +81899,17 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 365.98828 + value: 89.105286 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: -2.7635562 + value: -13.383556 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 435.70514 + value: 10.292145 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -81323,6 +81956,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &531669759 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 531669758} + m_PrefabAsset: {fileID: 0} --- !u!1001 &534068031 PrefabInstance: m_ObjectHideFlags: 0 @@ -82247,7 +82886,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999626, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_Name @@ -82275,15 +82914,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.x - value: 278.0268 + value: 1.1437988 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.y - value: 23.73 + value: 13.11 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.z - value: 171.64044 + value: -253.77255 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalRotation.w @@ -82330,13 +82969,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000017959901563305719393, type: 3} +--- !u!4 &541036691 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999627, guid: abc00000000017959901563305719393, + type: 3} + m_PrefabInstance: {fileID: 541036690} + m_PrefabAsset: {fileID: 0} --- !u!1001 &541369376 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -82346,12 +82991,12 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 2.5309741 + value: 2.5309744 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 3.351263 + value: 3.3512635 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -82361,17 +83006,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 205.61989 + value: -71.26311 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 5.98 + value: -4.64 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 452.7368 + value: 27.323792 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -82418,6 +83063,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &541369377 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 541369376} + m_PrefabAsset: {fileID: 0} --- !u!1001 &541690783 PrefabInstance: m_ObjectHideFlags: 0 @@ -83781,7 +84432,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 5857465815660161278, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} @@ -83796,7 +84447,7 @@ PrefabInstance: - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalScale.x - value: 3.8143 + value: 3.8143005 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} @@ -83806,22 +84457,22 @@ PrefabInstance: - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalScale.z - value: 3.8143 + value: 3.8142996 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalPosition.x - value: 118.982414 + value: -157.90057 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalPosition.y - value: 30.868065 + value: 20.248066 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalPosition.z - value: 520.76215 + value: 95.34915 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} @@ -83863,6 +84514,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} +--- !u!4 &552197119 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, + type: 3} + m_PrefabInstance: {fileID: 552197118} + m_PrefabAsset: {fileID: 0} --- !u!1 &552313449 GameObject: m_ObjectHideFlags: 0 @@ -85459,7 +86116,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030985874, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_Name @@ -85471,7 +86128,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalScale.x - value: 4.4230213 + value: 4.423022 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalScale.y @@ -85479,19 +86136,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalScale.z - value: 4.4230213 + value: 4.423022 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalPosition.x - value: 160.97 + value: -115.912994 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalPosition.y - value: 69.418 + value: 58.798 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalPosition.z - value: -19.72103 + value: -445.13403 objectReference: {fileID: 0} - target: {fileID: 1030985875, guid: abc00000000007062364696611057136, type: 3} propertyPath: m_LocalRotation.w @@ -85526,6 +86183,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000007062364696611057136, type: 3} +--- !u!4 &561315621 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030985875, guid: abc00000000007062364696611057136, + type: 3} + m_PrefabInstance: {fileID: 561315620} + m_PrefabAsset: {fileID: 0} --- !u!1 &561969710 GameObject: m_ObjectHideFlags: 0 @@ -87532,7 +88195,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -87552,27 +88215,27 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 2.8667 + value: 2.8667004 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8666995 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 330.3184 + value: 53.435394 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 1.8700001 + value: -8.75 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 360.4821 + value: -64.93091 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -87614,6 +88277,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &571239385 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 571239384} + m_PrefabAsset: {fileID: 0} --- !u!1001 &571371930 PrefabInstance: m_ObjectHideFlags: 0 @@ -92591,7 +93260,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988959, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_Name @@ -92615,15 +93284,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.x - value: 109.6 + value: -167.28299 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.y - value: 59.82101 + value: 49.20101 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.z - value: 514.3 + value: 88.88699 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.w @@ -92658,6 +93327,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000015723345820112897059, type: 3} +--- !u!4 &578888548 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988960, guid: abc00000000015723345820112897059, + type: 3} + m_PrefabInstance: {fileID: 578888547} + m_PrefabAsset: {fileID: 0} --- !u!1001 &579249350 PrefabInstance: m_ObjectHideFlags: 0 @@ -94218,7 +94893,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988815, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_Name @@ -94234,7 +94909,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalScale.x - value: 3.3335 + value: 3.3335004 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalScale.y @@ -94242,19 +94917,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalScale.z - value: 3.3335 + value: 3.3335004 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.x - value: 254.86 + value: -22.022995 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.y - value: 31.314 + value: 20.694 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.z - value: 203.2 + value: -222.213 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalRotation.w @@ -94301,6 +94976,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000016663490398076905278, type: 3} +--- !u!4 &595029799 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988816, guid: abc00000000016663490398076905278, + type: 3} + m_PrefabInstance: {fileID: 595029798} + m_PrefabAsset: {fileID: 0} --- !u!1001 &595929790 PrefabInstance: m_ObjectHideFlags: 0 @@ -95518,7 +96199,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -95543,22 +96224,22 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8667002 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 328.54666 + value: 51.663666 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 8.608944 + value: -2.011056 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 446.40652 + value: 20.99353 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -95600,6 +96281,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &605492297 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 605492296} + m_PrefabAsset: {fileID: 0} --- !u!1001 &608896689 PrefabInstance: m_ObjectHideFlags: 0 @@ -96964,7 +97651,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975168, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_Name @@ -96976,11 +97663,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975169, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_LocalScale.x - value: 0.60381 + value: 0.6038102 objectReference: {fileID: 0} - target: {fileID: 1030975169, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_LocalScale.y - value: 0.60381 + value: 0.60381025 objectReference: {fileID: 0} - target: {fileID: 1030975169, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_LocalScale.z @@ -96988,15 +97675,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975169, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_LocalPosition.x - value: 291.31 + value: 14.427002 objectReference: {fileID: 0} - target: {fileID: 1030975169, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_LocalPosition.y - value: 8.97 + value: -1.6499996 objectReference: {fileID: 0} - target: {fileID: 1030975169, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_LocalPosition.z - value: 210.12 + value: -215.293 objectReference: {fileID: 0} - target: {fileID: 1030975169, guid: abc00000000014995704704072955557, type: 3} propertyPath: m_LocalRotation.w @@ -97031,6 +97718,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000014995704704072955557, type: 3} +--- !u!4 &615549325 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975169, guid: abc00000000014995704704072955557, + type: 3} + m_PrefabInstance: {fileID: 615549324} + m_PrefabAsset: {fileID: 0} --- !u!1001 &616471498 PrefabInstance: m_ObjectHideFlags: 0 @@ -97121,7 +97814,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999644, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_Name @@ -97145,15 +97838,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalPosition.x - value: 45.52 + value: -231.36299 objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalPosition.y - value: 19.07 + value: 8.45 objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalPosition.z - value: 298.44 + value: -126.97299 objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalRotation.w @@ -97188,6 +97881,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000013117676350499185899, type: 3} +--- !u!4 &616541204 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999645, guid: abc00000000013117676350499185899, + type: 3} + m_PrefabInstance: {fileID: 616541203} + m_PrefabAsset: {fileID: 0} --- !u!1001 &619351246 PrefabInstance: m_ObjectHideFlags: 0 @@ -97677,7 +98376,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030994012, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_Name @@ -97689,15 +98388,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalPosition.x - value: 279.215 + value: 2.3320007 objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalPosition.y - value: 7.381 + value: -3.2389998 objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalPosition.z - value: 403.01 + value: -22.402985 objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalRotation.w @@ -97705,15 +98404,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030994013, guid: abc00000000003842323218768539649, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -97732,6 +98431,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000003842323218768539649, type: 3} +--- !u!4 &620748928 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030994013, guid: abc00000000003842323218768539649, + type: 3} + m_PrefabInstance: {fileID: 620748927} + m_PrefabAsset: {fileID: 0} --- !u!1001 &622243284 PrefabInstance: m_ObjectHideFlags: 0 @@ -98010,7 +98715,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975110, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_Name @@ -98026,7 +98731,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalScale.x - value: 16.558308 + value: 16.558311 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalScale.y @@ -98034,19 +98739,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalScale.z - value: 16.558306 + value: 16.55831 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.x - value: 2940 + value: 2663.117 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.y - value: -31 + value: -41.62 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.z - value: 2266 + value: 1840.587 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalRotation.w @@ -98093,6 +98798,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000007387135349448011318, type: 3} +--- !u!4 &623943840 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975111, guid: abc00000000007387135349448011318, + type: 3} + m_PrefabInstance: {fileID: 623943839} + m_PrefabAsset: {fileID: 0} --- !u!1001 &625283045 PrefabInstance: m_ObjectHideFlags: 0 @@ -98869,7 +99580,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 1161484236} m_Modifications: - target: {fileID: 2597363471830677733, guid: aea1cfd5bf7aae7439b42c60cda01da4, type: 3} @@ -98894,17 +99605,17 @@ PrefabInstance: - target: {fileID: 2597363471830677740, guid: aea1cfd5bf7aae7439b42c60cda01da4, type: 3} propertyPath: m_LocalPosition.x - value: 464.1 + value: 187.21701 objectReference: {fileID: 0} - target: {fileID: 2597363471830677740, guid: aea1cfd5bf7aae7439b42c60cda01da4, type: 3} propertyPath: m_LocalPosition.y - value: 48.83456 + value: 38.21456 objectReference: {fileID: 0} - target: {fileID: 2597363471830677740, guid: aea1cfd5bf7aae7439b42c60cda01da4, type: 3} propertyPath: m_LocalPosition.z - value: 393.24 + value: -32.173004 objectReference: {fileID: 0} - target: {fileID: 2597363471830677740, guid: aea1cfd5bf7aae7439b42c60cda01da4, type: 3} @@ -98959,8 +99670,68 @@ PrefabInstance: m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] - m_AddedComponents: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2597363471830677741, guid: aea1cfd5bf7aae7439b42c60cda01da4, + type: 3} + insertIndex: -1 + addedObject: {fileID: 628511156} m_SourcePrefab: {fileID: 100100000, guid: aea1cfd5bf7aae7439b42c60cda01da4, type: 3} +--- !u!4 &628511154 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2597363471830677740, guid: aea1cfd5bf7aae7439b42c60cda01da4, + type: 3} + m_PrefabInstance: {fileID: 628511153} + m_PrefabAsset: {fileID: 0} +--- !u!1 &628511155 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2597363471830677741, guid: aea1cfd5bf7aae7439b42c60cda01da4, + type: 3} + m_PrefabInstance: {fileID: 628511153} + m_PrefabAsset: {fileID: 0} +--- !u!114 &628511156 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628511155} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 --- !u!1001 &628641812 PrefabInstance: m_ObjectHideFlags: 0 @@ -100349,7 +101120,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 417968349524012222, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -100379,17 +101150,17 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.x - value: -58.636536 + value: -335.51953 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.y - value: 51.265316 + value: 40.645317 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.z - value: 291.77234 + value: -133.64066 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -100431,6 +101202,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} +--- !u!4 &640178357 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, + type: 3} + m_PrefabInstance: {fileID: 640178356} + m_PrefabAsset: {fileID: 0} --- !u!1001 &640686748 PrefabInstance: m_ObjectHideFlags: 0 @@ -100900,13 +101677,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3693926014911207686, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} propertyPath: m_Name value: PF_Farm_Rock_03 objectReference: {fileID: 0} + - target: {fileID: 3693926014911207686, guid: f2774ed1da7405b4cad82952fe2f0586, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} propertyPath: m_RootOrder @@ -100915,12 +101697,12 @@ PrefabInstance: - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} propertyPath: m_LocalScale.x - value: 3.1496 + value: 3.1496003 objectReference: {fileID: 0} - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} propertyPath: m_LocalScale.y - value: 3.1496 + value: 3.1496005 objectReference: {fileID: 0} - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} @@ -100930,17 +101712,17 @@ PrefabInstance: - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} propertyPath: m_LocalPosition.x - value: 349.46 + value: 72.576996 objectReference: {fileID: 0} - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} propertyPath: m_LocalPosition.y - value: 2.67 + value: -7.95 objectReference: {fileID: 0} - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} propertyPath: m_LocalPosition.z - value: 321.87 + value: -103.543 objectReference: {fileID: 0} - target: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} @@ -100982,6 +101764,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: f2774ed1da7405b4cad82952fe2f0586, type: 3} +--- !u!4 &645458009 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4037660199919223740, guid: f2774ed1da7405b4cad82952fe2f0586, + type: 3} + m_PrefabInstance: {fileID: 645458008} + m_PrefabAsset: {fileID: 0} --- !u!1001 &646012534 PrefabInstance: m_ObjectHideFlags: 0 @@ -101303,7 +102091,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -101331,15 +102119,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 477.72 + value: 200.837 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 122.99 + value: -302.423 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -101390,6 +102178,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &647775583 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 647775582} + m_PrefabAsset: {fileID: 0} --- !u!1001 &648852391 PrefabInstance: m_ObjectHideFlags: 0 @@ -102618,7 +103412,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -102628,17 +103422,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 353.1963 + value: 76.31329 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 2.2530134 + value: -8.366986 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 304.83322 + value: -120.57977 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -102685,6 +103479,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &660912351 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 660912350} + m_PrefabAsset: {fileID: 0} --- !u!1001 &661877754 PrefabInstance: m_ObjectHideFlags: 0 @@ -103583,7 +104383,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -103608,17 +104408,17 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.x - value: 357.01746 + value: 80.13446 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.y - value: 1.17 + value: -9.45 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.z - value: 330.36493 + value: -95.048065 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -103628,7 +104428,7 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -103660,11 +104460,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_01 (1) objectReference: {fileID: 0} + - target: {fileID: 8742511295275568211, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} +--- !u!4 &670545302 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + m_PrefabInstance: {fileID: 670545301} + m_PrefabAsset: {fileID: 0} --- !u!1001 &671024066 PrefabInstance: m_ObjectHideFlags: 0 @@ -104081,7 +104892,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -104091,7 +104902,7 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.x - value: 4.8317504 + value: 4.83175 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -104101,42 +104912,42 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.z - value: 4.8317504 + value: 4.831749 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.x - value: 300.4 + value: 23.516998 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.y - value: 3.85 + value: -6.77 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.z - value: 492.14 + value: 66.72702 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.w - value: 0.50466657 + value: 0.5046666 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.x - value: 0.02374158 + value: 0.023741582 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.y - value: -0.8563402 + value: -0.8563403 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.z - value: 0.10690784 + value: 0.106907845 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -104158,11 +104969,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_01 objectReference: {fileID: 0} + - target: {fileID: 8742511295275568211, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} +--- !u!4 &674817759 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + m_PrefabInstance: {fileID: 674817758} + m_PrefabAsset: {fileID: 0} --- !u!1001 &677532257 PrefabInstance: m_ObjectHideFlags: 0 @@ -104336,7 +105158,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -104352,15 +105174,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 402.60654 + value: 125.72354 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.26 + value: -7.3599997 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 658.39606 + value: 232.98306 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -104403,6 +105225,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &679722370 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 679722369} + m_PrefabAsset: {fileID: 0} --- !u!1 &679831289 GameObject: m_ObjectHideFlags: 0 @@ -106564,7 +107392,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -106589,17 +107417,17 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 369.3 + value: 92.41699 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: 1.79 + value: -8.83 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 462.31 + value: 36.897003 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -106646,6 +107474,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &701012227 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 701012226} + m_PrefabAsset: {fileID: 0} --- !u!1001 &702309090 PrefabInstance: m_ObjectHideFlags: 0 @@ -108302,7 +109136,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030983440, guid: abc00000000010599032063786757839, type: 3} propertyPath: m_Name @@ -108318,15 +109152,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983441, guid: abc00000000010599032063786757839, type: 3} propertyPath: m_LocalPosition.x - value: 252.2599 + value: -24.623093 objectReference: {fileID: 0} - target: {fileID: 1030983441, guid: abc00000000010599032063786757839, type: 3} propertyPath: m_LocalPosition.y - value: 23.7 + value: 13.080001 objectReference: {fileID: 0} - target: {fileID: 1030983441, guid: abc00000000010599032063786757839, type: 3} propertyPath: m_LocalPosition.z - value: 205.94011 + value: -219.47289 objectReference: {fileID: 0} - target: {fileID: 1030983441, guid: abc00000000010599032063786757839, type: 3} propertyPath: m_LocalRotation.w @@ -108334,7 +109168,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983441, guid: abc00000000010599032063786757839, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030983441, guid: abc00000000010599032063786757839, type: 3} propertyPath: m_LocalRotation.y @@ -108373,6 +109207,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000010599032063786757839, type: 3} +--- !u!4 &714954668 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030983441, guid: abc00000000010599032063786757839, + type: 3} + m_PrefabInstance: {fileID: 714954667} + m_PrefabAsset: {fileID: 0} --- !u!1001 &716183541 PrefabInstance: m_ObjectHideFlags: 0 @@ -108617,7 +109457,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -108627,52 +109467,52 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.x - value: 3.6517 + value: 3.651701 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 3.6517 + value: 3.6517005 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.z - value: 3.6517 + value: 3.6517005 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 327.85 + value: 50.96701 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: -1.96 + value: -12.58 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 283.6 + value: -141.81299 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.w - value: -0.6839424 + value: -0.6839423 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.x - value: -0.07822097 + value: -0.07822096 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.y - value: -0.7185747 + value: -0.71857464 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.z - value: 0.09876692 + value: 0.09876691 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -108694,11 +109534,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_07 (3) objectReference: {fileID: 0} + - target: {fileID: 8782862719963060608, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &716535653 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 716535652} + m_PrefabAsset: {fileID: 0} --- !u!1001 &716718568 PrefabInstance: m_ObjectHideFlags: 0 @@ -108784,13 +109635,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_Name value: PF_Farm_Rock_02 (1) objectReference: {fileID: 0} + - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_RootOrder @@ -108814,17 +109670,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 362.17642 + value: 85.29343 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 0.84 + value: -9.78 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 344.83618 + value: -80.57681 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -108866,6 +109722,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &716907111 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 716907110} + m_PrefabAsset: {fileID: 0} --- !u!1001 &716908488 PrefabInstance: m_ObjectHideFlags: 0 @@ -109602,7 +110464,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -109617,7 +110479,7 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 3.6517 + value: 3.6516995 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -109627,17 +110489,17 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 196.17584 + value: -80.70715 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: -1.53 + value: -12.15 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 149.02458 + value: -276.38843 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -109684,6 +110546,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &719819898 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 719819897} + m_PrefabAsset: {fileID: 0} --- !u!1001 &720350984 PrefabInstance: m_ObjectHideFlags: 0 @@ -111401,7 +112269,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -111426,17 +112294,17 @@ PrefabInstance: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.x - value: 375.0853 + value: 98.2023 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.y - value: 0.5 + value: -10.12 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.z - value: 371.29697 + value: -54.116028 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -111446,7 +112314,7 @@ PrefabInstance: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -111478,18 +112346,29 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_05 (1) objectReference: {fileID: 0} + - target: {fileID: 7613198964696299674, guid: 5683f5995d412cd4db12468f7ba3ac5b, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} +--- !u!4 &730360042 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, + type: 3} + m_PrefabInstance: {fileID: 730360041} + m_PrefabAsset: {fileID: 0} --- !u!1001 &730841424 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -111499,17 +112378,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 324.078 + value: 47.195007 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 7.03 + value: -3.5899997 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 480.617 + value: 55.20401 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -111524,7 +112403,7 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalRotation.y - value: -0.8651533 + value: -0.86515325 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -111556,6 +112435,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &730841425 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 730841424} + m_PrefabAsset: {fileID: 0} --- !u!1001 &731967748 PrefabInstance: m_ObjectHideFlags: 0 @@ -111765,12 +112650,16 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999163, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_Name value: PF_BrokenKnightStatueSolo objectReference: {fileID: 0} + - target: {fileID: 1030999163, guid: abc00000000008558523202656726696, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_RootOrder value: 50 @@ -111789,15 +112678,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalPosition.x - value: 17.504482 + value: -259.3785 objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalPosition.y - value: 19.33 + value: 8.71 objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalPosition.z - value: 310.7246 + value: -114.688385 objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalRotation.w @@ -111832,6 +112721,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008558523202656726696, type: 3} +--- !u!4 &733417968 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999164, guid: abc00000000008558523202656726696, + type: 3} + m_PrefabInstance: {fileID: 733417967} + m_PrefabAsset: {fileID: 0} --- !u!1001 &733434495 PrefabInstance: m_ObjectHideFlags: 0 @@ -114685,7 +115580,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974790, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_Name @@ -114697,7 +115592,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974791, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_LocalScale.x - value: 2.247752 + value: 2.2477524 objectReference: {fileID: 0} - target: {fileID: 1030974791, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_LocalScale.y @@ -114705,19 +115600,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974791, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_LocalScale.z - value: 2.247752 + value: 2.2477524 objectReference: {fileID: 0} - target: {fileID: 1030974791, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_LocalPosition.x - value: 351.82 + value: 74.93701 objectReference: {fileID: 0} - target: {fileID: 1030974791, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_LocalPosition.y - value: 136.6 + value: 125.98 objectReference: {fileID: 0} - target: {fileID: 1030974791, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_LocalPosition.z - value: -129.45 + value: -554.863 objectReference: {fileID: 0} - target: {fileID: 1030974791, guid: abc00000000009975868046694201129, type: 3} propertyPath: m_LocalRotation.w @@ -114752,6 +115647,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000009975868046694201129, type: 3} +--- !u!4 &752409481 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974791, guid: abc00000000009975868046694201129, + type: 3} + m_PrefabInstance: {fileID: 752409480} + m_PrefabAsset: {fileID: 0} --- !u!1001 &752623434 PrefabInstance: m_ObjectHideFlags: 0 @@ -115627,7 +116528,7 @@ PrefabInstance: - target: {fileID: 4680818796634823330, guid: dc3f4998066447e4ebccba9fefe0f278, type: 3} propertyPath: m_Name - value: FirstPersonController + value: Character objectReference: {fileID: 0} - target: {fileID: 4680818796634823330, guid: dc3f4998066447e4ebccba9fefe0f278, type: 3} @@ -115699,6 +116600,26 @@ PrefabInstance: propertyPath: m_RenderingPath value: -1 objectReference: {fileID: 0} + - target: {fileID: 4680818797271520422, guid: dc3f4998066447e4ebccba9fefe0f278, + type: 3} + propertyPath: m_BackGroundColor.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4680818797271520422, guid: dc3f4998066447e4ebccba9fefe0f278, + type: 3} + propertyPath: m_BackGroundColor.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4680818797271520422, guid: dc3f4998066447e4ebccba9fefe0f278, + type: 3} + propertyPath: m_BackGroundColor.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4680818797271520422, guid: dc3f4998066447e4ebccba9fefe0f278, + type: 3} + propertyPath: m_BackGroundColor.r + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4680818797271520422, guid: dc3f4998066447e4ebccba9fefe0f278, type: 3} propertyPath: m_AllowDynamicResolution @@ -115707,8 +116628,50 @@ PrefabInstance: m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] - m_AddedComponents: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4680818796634823330, guid: dc3f4998066447e4ebccba9fefe0f278, + type: 3} + insertIndex: -1 + addedObject: {fileID: 757714200} + - targetCorrespondingSourceObject: {fileID: 4680818796634823330, guid: dc3f4998066447e4ebccba9fefe0f278, + type: 3} + insertIndex: -1 + addedObject: {fileID: 757714199} m_SourcePrefab: {fileID: 100100000, guid: dc3f4998066447e4ebccba9fefe0f278, type: 3} +--- !u!114 &757714199 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 109262111} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6ae53beee9ce9b24097289adbb0d7d5e, type: 3} + m_Name: + m_EditorClassIdentifier: + maxMana: 100 + mana: 100 + enableRegen: 1 + regenPerSecond: 8 + regenDelayAfterSpend: 1 +--- !u!114 &757714200 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 109262111} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7318ee1be010c1e43b9f45dbbe3a8d9d, type: 3} + m_Name: + m_EditorClassIdentifier: + maxHealth: 100 + health: 100 + enableRegen: 1 + regenPerSecond: 1.5 + regenDelayAfterDamage: 4 --- !u!1001 &757733958 PrefabInstance: m_ObjectHideFlags: 0 @@ -116391,7 +117354,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -116401,22 +117364,22 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 372.01004 + value: 95.127045 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 7.666 + value: -2.954 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 469.46997 + value: 44.056976 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.w - value: 0.37650165 + value: 0.37650168 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -116426,7 +117389,7 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.y - value: 0.9264159 + value: 0.926416 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -116458,6 +117421,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &763374651 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 763374650} + m_PrefabAsset: {fileID: 0} --- !u!1001 &764792336 PrefabInstance: m_ObjectHideFlags: 0 @@ -117395,7 +118364,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -117423,15 +118392,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 457.13 + value: 180.24701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.78 + value: 19.16 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 115.83 + value: -309.583 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -117482,6 +118451,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &769660971 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 769660970} + m_PrefabAsset: {fileID: 0} --- !u!1001 &770544107 PrefabInstance: m_ObjectHideFlags: 0 @@ -117745,7 +118720,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1196261268732993371, guid: 3613da0e2769654498a44bc7d5ab2acb, type: 3} @@ -117755,17 +118730,17 @@ PrefabInstance: - target: {fileID: 1196261268732993371, guid: 3613da0e2769654498a44bc7d5ab2acb, type: 3} propertyPath: m_LocalPosition.x - value: 11.71 + value: -265.173 objectReference: {fileID: 0} - target: {fileID: 1196261268732993371, guid: 3613da0e2769654498a44bc7d5ab2acb, type: 3} propertyPath: m_LocalPosition.y - value: 24.91 + value: 14.29 objectReference: {fileID: 0} - target: {fileID: 1196261268732993371, guid: 3613da0e2769654498a44bc7d5ab2acb, type: 3} propertyPath: m_LocalPosition.z - value: 373.12 + value: -52.293 objectReference: {fileID: 0} - target: {fileID: 1196261268732993371, guid: 3613da0e2769654498a44bc7d5ab2acb, type: 3} @@ -117807,11 +118782,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Catacombs_Exterior objectReference: {fileID: 0} + - target: {fileID: 4011936173116108411, guid: 3613da0e2769654498a44bc7d5ab2acb, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 3613da0e2769654498a44bc7d5ab2acb, type: 3} +--- !u!4 &770980109 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1196261268732993371, guid: 3613da0e2769654498a44bc7d5ab2acb, + type: 3} + m_PrefabInstance: {fileID: 770980108} + m_PrefabAsset: {fileID: 0} --- !u!1001 &771023335 PrefabInstance: m_ObjectHideFlags: 0 @@ -118529,7 +119515,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -118539,17 +119525,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 344.555 + value: 67.672 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 7.31 + value: -3.31 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 502.35 + value: 76.93701 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -118596,19 +119582,30 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &777319708 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 777319707} + m_PrefabAsset: {fileID: 0} --- !u!1001 &777454229 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_Name value: PF_Farm_Rock_06 (1) objectReference: {fileID: 0} + - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_RootOrder @@ -118617,7 +119614,7 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.x - value: 2.4355 + value: 2.4354994 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -118632,17 +119629,17 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 339.75 + value: 62.867004 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: 0.66 + value: -9.96 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 293.48 + value: -131.93298 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -118684,6 +119681,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &777454230 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 777454229} + m_PrefabAsset: {fileID: 0} --- !u!1001 &779302304 PrefabInstance: m_ObjectHideFlags: 0 @@ -119615,7 +120618,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -119643,15 +120646,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 446.08 + value: 169.19699 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 127.94 + value: -297.473 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -119702,6 +120705,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &785969630 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 785969629} + m_PrefabAsset: {fileID: 0} --- !u!1001 &786321366 PrefabInstance: m_ObjectHideFlags: 0 @@ -121420,7 +122429,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030986237, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_Name @@ -121444,15 +122453,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalPosition.x - value: 197.8143 + value: -79.068695 objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalPosition.y - value: 32.99001 + value: 22.37001 objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalPosition.z - value: 564.68365 + value: 139.27066 objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalRotation.w @@ -121487,6 +122496,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} +--- !u!4 &803235119 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, + type: 3} + m_PrefabInstance: {fileID: 803235118} + m_PrefabAsset: {fileID: 0} --- !u!1001 &803312552 PrefabInstance: m_ObjectHideFlags: 0 @@ -122093,7 +123108,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -122103,17 +123118,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 354.15607 + value: 77.27307 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 7.751 + value: -2.869 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 447.88702 + value: 22.47403 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -122160,6 +123175,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &806230349 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 806230348} + m_PrefabAsset: {fileID: 0} --- !u!1001 &807187781 PrefabInstance: m_ObjectHideFlags: 0 @@ -123225,6 +124246,108 @@ Transform: type: 3} m_PrefabInstance: {fileID: 811988534} m_PrefabAsset: {fileID: 0} +--- !u!1 &812152297 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 812152301} + - component: {fileID: 812152300} + - component: {fileID: 812152299} + - component: {fileID: 812152298} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &812152298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812152297} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &812152299 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812152297} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1920, y: 1080} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &812152300 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812152297} + 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_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 0 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &812152301 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812152297} + 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_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 94165390} + m_Father: {fileID: 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!1 &813624337 GameObject: m_ObjectHideFlags: 0 @@ -130625,7 +131748,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} @@ -130645,17 +131768,17 @@ PrefabInstance: - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} propertyPath: m_LocalPosition.x - value: 84.82031 + value: -192.06268 objectReference: {fileID: 0} - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} propertyPath: m_LocalPosition.y - value: 21.652084 + value: 11.032084 objectReference: {fileID: 0} - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} propertyPath: m_LocalPosition.z - value: 138.15958 + value: -287.25342 objectReference: {fileID: 0} - target: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, type: 3} @@ -130707,6 +131830,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b908c72dab6f2194695475e95663b251, type: 3} +--- !u!4 &827438047 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5015016632002524288, guid: b908c72dab6f2194695475e95663b251, + type: 3} + m_PrefabInstance: {fileID: 827438046} + m_PrefabAsset: {fileID: 0} --- !u!1001 &828001974 PrefabInstance: m_ObjectHideFlags: 0 @@ -131004,7 +132133,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030993394, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_Name @@ -131016,15 +132145,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalPosition.x - value: 191.40326 + value: -85.47974 objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalPosition.y - value: 10.5 + value: -0.119999886 objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalPosition.z - value: 367.0743 + value: -58.338684 objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalRotation.w @@ -131032,15 +132161,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030993395, guid: abc00000000003185706359673351837, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -131059,6 +132188,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000003185706359673351837, type: 3} +--- !u!4 &831152984 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030993395, guid: abc00000000003185706359673351837, + type: 3} + m_PrefabInstance: {fileID: 831152983} + m_PrefabAsset: {fileID: 0} --- !u!4 &832138624 stripped Transform: m_CorrespondingSourceObject: {fileID: 1030986210, guid: 17ee56a4c4830b448bc2a3e53527d636, @@ -131930,7 +133065,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -131945,27 +133080,27 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 3.6517 + value: 3.6517003 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.z - value: 3.6517 + value: 3.651701 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 313.71 + value: 36.826996 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: 18.8 + value: 8.179999 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 118.23 + value: -307.18298 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -132012,6 +133147,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &840921883 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 840921882} + m_PrefabAsset: {fileID: 0} --- !u!1001 &841357636 PrefabInstance: m_ObjectHideFlags: 0 @@ -132752,7 +133893,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030983511, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_Name @@ -132764,15 +133905,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.x - value: 269.3 + value: -7.583008 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.y - value: 5 + value: -5.62 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.z - value: 188.72 + value: -236.693 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalRotation.w @@ -132807,6 +133948,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002233199144111365775, type: 3} +--- !u!4 &846478736 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030983512, guid: abc00000000002233199144111365775, + type: 3} + m_PrefabInstance: {fileID: 846478735} + m_PrefabAsset: {fileID: 0} --- !u!1001 &846709479 PrefabInstance: m_ObjectHideFlags: 0 @@ -132917,7 +134064,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -132937,27 +134084,27 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 4.9006357 + value: 4.9006367 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 4.9006357 + value: 4.9006367 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 170.75 + value: -106.132996 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 11.8 + value: 1.1800003 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 561.96 + value: 136.54703 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -132999,6 +134146,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &847106098 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 847106097} + m_PrefabAsset: {fileID: 0} --- !u!1001 &847869627 PrefabInstance: m_ObjectHideFlags: 0 @@ -133714,13 +134867,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_Name value: PF_Farm_Rock_02 objectReference: {fileID: 0} + - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_RootOrder @@ -133734,7 +134892,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 2.8667 + value: 2.8667004 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -133744,17 +134902,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 291.05 + value: 14.166992 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 6.88 + value: -3.7399998 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 461.55 + value: 36.136993 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -133796,6 +134954,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &852781758 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 852781757} + m_PrefabAsset: {fileID: 0} --- !u!1001 &856102862 PrefabInstance: m_ObjectHideFlags: 0 @@ -134708,7 +135872,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -134724,7 +135888,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.476122 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -134736,15 +135900,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 472.07 + value: 195.18701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 118.61 + value: -306.80298 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -134795,6 +135959,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &859386931 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 859386930} + m_PrefabAsset: {fileID: 0} --- !u!1001 &859764200 PrefabInstance: m_ObjectHideFlags: 0 @@ -135802,7 +136972,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -135812,17 +136982,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 319.748 + value: 42.86499 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 6.8644075 + value: -3.7555923 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 471.615 + value: 46.201996 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -135869,6 +137039,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &870622732 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 870622731} + m_PrefabAsset: {fileID: 0} --- !u!1 &871779471 stripped GameObject: m_CorrespondingSourceObject: {fileID: 1030975132, guid: abc00000000016310321921250879688, @@ -139243,7 +140419,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -139259,7 +140435,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.476122 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -139267,23 +140443,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.z - value: 2.3506 + value: 2.3505998 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 475.89 + value: 199.00702 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.02 + value: 18.400002 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 121.48 + value: -303.93298 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w - value: 0.9283099 + value: 0.92831 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.x @@ -139291,7 +140467,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.y - value: -0.37180722 + value: -0.37180725 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.z @@ -139330,6 +140506,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &900346572 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 900346571} + m_PrefabAsset: {fileID: 0} --- !u!1001 &901397675 PrefabInstance: m_ObjectHideFlags: 0 @@ -139898,7 +141080,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974620, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_Name @@ -139914,15 +141096,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.x - value: 402.16824 + value: 125.28525 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.y - value: 2.988 + value: -7.632 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.z - value: 656.04016 + value: 230.62717 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalRotation.w @@ -139969,6 +141151,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008012362865714032028, type: 3} +--- !u!4 &905893349 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974621, guid: abc00000000008012362865714032028, + type: 3} + m_PrefabInstance: {fileID: 905893348} + m_PrefabAsset: {fileID: 0} --- !u!1001 &906656154 PrefabInstance: m_ObjectHideFlags: 0 @@ -140463,7 +141651,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974620, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_Name @@ -140479,15 +141667,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.x - value: 386.84 + value: 109.957 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.y - value: 2.988 + value: -7.632 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.z - value: 656.04016 + value: 230.62717 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalRotation.w @@ -140534,6 +141722,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008012362865714032028, type: 3} +--- !u!4 &912291013 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974621, guid: abc00000000008012362865714032028, + type: 3} + m_PrefabInstance: {fileID: 912291012} + m_PrefabAsset: {fileID: 0} --- !u!1001 &912599034 PrefabInstance: m_ObjectHideFlags: 0 @@ -141433,7 +142627,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 6225113236493125548, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} @@ -141453,7 +142647,7 @@ PrefabInstance: - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalScale.y - value: 3.18605 + value: 3.1860495 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} @@ -141463,17 +142657,17 @@ PrefabInstance: - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalPosition.x - value: 114.1 + value: -162.78299 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalPosition.y - value: 61.958023 + value: 51.338024 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalPosition.z - value: 517.8 + value: 92.38699 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} @@ -141515,6 +142709,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} +--- !u!4 &920187743 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, + type: 3} + m_PrefabInstance: {fileID: 920187742} + m_PrefabAsset: {fileID: 0} --- !u!1001 &920662357 PrefabInstance: m_ObjectHideFlags: 0 @@ -142403,6 +143603,367 @@ Transform: type: 3} m_PrefabInstance: {fileID: 924534098} m_PrefabAsset: {fileID: 0} +--- !u!1 &924913566 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 924913567} + m_Layer: 0 + m_Name: OutsideStuff + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &924913567 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 924913566} + serializedVersion: 2 + 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_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2008569668} + - {fileID: 1766231041} + - {fileID: 1604608679} + - {fileID: 387082028} + - {fileID: 204678737} + - {fileID: 1880305738} + - {fileID: 1689579147} + - {fileID: 203951061} + - {fileID: 1494735877} + - {fileID: 69909813} + - {fileID: 1605722212} + - {fileID: 1598540465} + - {fileID: 1576214684} + - {fileID: 2006293028} + - {fileID: 1827509225} + - {fileID: 1082673091} + - {fileID: 363821984} + - {fileID: 1016209077} + - {fileID: 1811409743} + - {fileID: 1205354548} + - {fileID: 1458311077} + - {fileID: 48565484} + - {fileID: 270905934} + - {fileID: 425345243} + - {fileID: 1845841491} + - {fileID: 971844114} + - {fileID: 1939676726} + - {fileID: 359142549} + - {fileID: 431217093} + - {fileID: 716907111} + - {fileID: 2138094639} + - {fileID: 1199475165} + - {fileID: 730360042} + - {fileID: 1797769002} + - {fileID: 645458009} + - {fileID: 670545302} + - {fileID: 2010807173} + - {fileID: 777454230} + - {fileID: 716535653} + - {fileID: 1750533464} + - {fileID: 1616326772} + - {fileID: 1008148018} + - {fileID: 500957047} + - {fileID: 180377872} + - {fileID: 674817759} + - {fileID: 852781758} + - {fileID: 295294523} + - {fileID: 1916369599} + - {fileID: 4716615108431153151} + - {fileID: 5966913739181167879} + - {fileID: 7662555389460838466} + - {fileID: 733417968} + - {fileID: 966016316} + - {fileID: 1489895178} + - {fileID: 937677170} + - {fileID: 770980109} + - {fileID: 156412890} + - {fileID: 365740551} + - {fileID: 647775583} + - {fileID: 1859638225} + - {fileID: 1308645758} + - {fileID: 304363756} + - {fileID: 1203890269} + - {fileID: 965950618} + - {fileID: 1323451226} + - {fileID: 1538375736} + - {fileID: 2135965577} + - {fileID: 2139160829} + - {fileID: 305196743} + - {fileID: 1911207393} + - {fileID: 1990121974} + - {fileID: 467583069} + - {fileID: 362726632} + - {fileID: 1320757592} + - {fileID: 1574309750} + - {fileID: 1754060881} + - {fileID: 620748928} + - {fileID: 62003658} + - {fileID: 679722370} + - {fileID: 1491246004} + - {fileID: 120855492} + - {fileID: 578888548} + - {fileID: 2104601619} + - {fileID: 1879437728} + - {fileID: 402021581} + - {fileID: 1582317537} + - {fileID: 1231589928} + - {fileID: 1301323762} + - {fileID: 934548338} + - {fileID: 552197119} + - {fileID: 75486259} + - {fileID: 1271166422} + - {fileID: 1378201773} + - {fileID: 1323126271} + - {fileID: 2111198292} + - {fileID: 3157835672567319899} + - {fileID: 975489034} + - {fileID: 1485661882} + - {fileID: 905893349} + - {fileID: 4228252} + - {fileID: 251496160} + - {fileID: 1853907914} + - {fileID: 1075753646} + - {fileID: 972486844} + - {fileID: 1207237924} + - {fileID: 1794672927} + - {fileID: 1861418101} + - {fileID: 2016467336} + - {fileID: 769660971} + - {fileID: 1673324099} + - {fileID: 870622732} + - {fileID: 730841425} + - {fileID: 1725241600} + - {fileID: 213620348} + - {fileID: 1312475452} + - {fileID: 2126932520} + - {fileID: 752409481} + - {fileID: 510366979} + - {fileID: 2118766773} + - {fileID: 983634956} + - {fileID: 1841410168} + - {fileID: 102219932} + - {fileID: 1505873627} + - {fileID: 1102814430} + - {fileID: 995735329} + - {fileID: 246035558} + - {fileID: 253945881} + - {fileID: 859386931} + - {fileID: 912291013} + - {fileID: 1558953038} + - {fileID: 1338928417} + - {fileID: 1225366177} + - {fileID: 1316258471} + - {fileID: 1044754027} + - {fileID: 1815961487} + - {fileID: 409203492} + - {fileID: 1620187759} + - {fileID: 165375526} + - {fileID: 1000891428} + - {fileID: 105774502} + - {fileID: 1564396563} + - {fileID: 1594340267} + - {fileID: 900346572} + - {fileID: 1835492170} + - {fileID: 475275679} + - {fileID: 1178512711} + - {fileID: 253424104} + - {fileID: 920187743} + - {fileID: 1968565420} + - {fileID: 476754147} + - {fileID: 96962446} + - {fileID: 1370640273} + - {fileID: 785969630} + - {fileID: 1277862869} + - {fileID: 154907481} + - {fileID: 1491402281} + - {fileID: 831152984} + - {fileID: 947893615} + - {fileID: 1633750227} + - {fileID: 777319708} + - {fileID: 322221774} + - {fileID: 460232056} + - {fileID: 436911638} + - {fileID: 2050550973} + - {fileID: 369351206} + - {fileID: 1351233023} + - {fileID: 216897522} + - {fileID: 491660075} + - {fileID: 98067177} + - {fileID: 541036691} + - {fileID: 1549385080} + - {fileID: 595029799} + - {fileID: 44367050} + - {fileID: 427605187} + - {fileID: 971556665} + - {fileID: 1685627211} + - {fileID: 172105765} + - {fileID: 623943840} + - {fileID: 1417106531} + - {fileID: 947649505} + - {fileID: 1141527310} + - {fileID: 1168581954} + - {fileID: 714954668} + - {fileID: 1374660095} + - {fileID: 41779358} + - {fileID: 1447405962} + - {fileID: 1102757072} + - {fileID: 483971655} + - {fileID: 1459000275} + - {fileID: 226261319} + - {fileID: 237357165} + - {fileID: 1980329023} + - {fileID: 1992667778} + - {fileID: 827438047} + - {fileID: 443590042} + - {fileID: 640178357} + - {fileID: 1158410900} + - {fileID: 452341655} + - {fileID: 1963907735} + - {fileID: 952817407} + - {fileID: 1261968245} + - {fileID: 1836047209} + - {fileID: 616541204} + - {fileID: 980917905} + - {fileID: 1336020838} + - {fileID: 1955178243} + - {fileID: 1021580854} + - {fileID: 1073264054} + - {fileID: 1524663922} + - {fileID: 238605241} + - {fileID: 264346565} + - {fileID: 2014555614} + - {fileID: 130705623} + - {fileID: 154212662} + - {fileID: 1518711832} + - {fileID: 1937751177} + - {fileID: 1148390886} + - {fileID: 1307491095} + - {fileID: 300924587} + - {fileID: 1085813783} + - {fileID: 840921883} + - {fileID: 1021549977} + - {fileID: 1914147215} + - {fileID: 2102318831} + - {fileID: 2137924502} + - {fileID: 83449965} + - {fileID: 174106328} + - {fileID: 660912351} + - {fileID: 1201119090} + - {fileID: 1379594941} + - {fileID: 1992600883} + - {fileID: 2119070336} + - {fileID: 1229429354} + - {fileID: 1938436205} + - {fileID: 1024649955} + - {fileID: 428197746} + - {fileID: 1294924600} + - {fileID: 1970148702} + - {fileID: 1284100088} + - {fileID: 1714497008} + - {fileID: 274668704} + - {fileID: 571239385} + - {fileID: 389526715} + - {fileID: 1703048009} + - {fileID: 1899546594} + - {fileID: 1718072937} + - {fileID: 1335623459} + - {fileID: 1428553771} + - {fileID: 1721618169} + - {fileID: 1794667949} + - {fileID: 531669759} + - {fileID: 1662653004} + - {fileID: 932675541} + - {fileID: 1766596879} + - {fileID: 701012227} + - {fileID: 1960276489} + - {fileID: 605492297} + - {fileID: 806230349} + - {fileID: 96149304} + - {fileID: 2035490524} + - {fileID: 1789470968} + - {fileID: 995451743} + - {fileID: 763374651} + - {fileID: 257126386} + - {fileID: 2093588468} + - {fileID: 258267131} + - {fileID: 561315621} + - {fileID: 1885478763} + - {fileID: 1022747154} + - {fileID: 1375418541} + - {fileID: 1916241303} + - {fileID: 1423658836} + - {fileID: 1838998610} + - {fileID: 66748384} + - {fileID: 541369377} + - {fileID: 2127423244} + - {fileID: 35127911} + - {fileID: 1504038067} + - {fileID: 1813970850} + - {fileID: 803235119} + - {fileID: 1363022803} + - {fileID: 1561985041} + - {fileID: 518765250} + - {fileID: 2097181720} + - {fileID: 1567238210} + - {fileID: 380281624} + - {fileID: 74303139} + - {fileID: 1148355304} + - {fileID: 1134424493} + - {fileID: 301680960} + - {fileID: 99201216} + - {fileID: 338512124} + - {fileID: 1708383209} + - {fileID: 35098827} + - {fileID: 379207961} + - {fileID: 1245379639} + - {fileID: 525502127} + - {fileID: 1180693454} + - {fileID: 847106098} + - {fileID: 946849373} + - {fileID: 144270178} + - {fileID: 1371096065} + - {fileID: 1159707661} + - {fileID: 341086813} + - {fileID: 2138051524} + - {fileID: 1967553201} + - {fileID: 1341845837} + - {fileID: 1129303025} + - {fileID: 148921217} + - {fileID: 236268187} + - {fileID: 3782493150624190878} + - {fileID: 615549325} + - {fileID: 1976818329} + - {fileID: 1162118391} + - {fileID: 1723685649} + - {fileID: 470455925} + - {fileID: 1700626136} + - {fileID: 1930393748} + - {fileID: 1263936375} + - {fileID: 997739219} + - {fileID: 719819898} + - {fileID: 2054705981} + - {fileID: 1934991607} + - {fileID: 846478736} + - {fileID: 1796007251} + - {fileID: 409101590} + - {fileID: 2085353196} + - {fileID: 1193427799} + - {fileID: 1117209390} + - {fileID: 2011136119} + m_Father: {fileID: 1161484236} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &925413347 PrefabInstance: m_ObjectHideFlags: 0 @@ -143542,7 +145103,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -143567,17 +145128,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 379.51 + value: 102.627014 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 2.537 + value: -8.083 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 446.02 + value: 20.606995 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -143624,6 +145185,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &932675541 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 932675540} + m_PrefabAsset: {fileID: 0} --- !u!1 &932894593 GameObject: m_ObjectHideFlags: 0 @@ -144151,7 +145718,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 6225113236493125548, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} @@ -144166,7 +145733,7 @@ PrefabInstance: - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalScale.x - value: 3.2557 + value: 3.2557006 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} @@ -144176,22 +145743,22 @@ PrefabInstance: - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalScale.z - value: 3.2557 + value: 3.2557006 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalPosition.x - value: 142.83441 + value: -134.04858 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalPosition.y - value: 27.16 + value: 16.54 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} propertyPath: m_LocalPosition.z - value: 526.5058 + value: 101.092804 objectReference: {fileID: 0} - target: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} @@ -144233,6 +145800,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 4e48640c9888e9d41956cc968f1e9296, type: 3} +--- !u!4 &934548338 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6714826556582206742, guid: 4e48640c9888e9d41956cc968f1e9296, + type: 3} + m_PrefabInstance: {fileID: 934548337} + m_PrefabAsset: {fileID: 0} --- !u!850595691 &935704531 LightingSettings: m_ObjectHideFlags: 0 @@ -145007,12 +146580,16 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999644, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_Name value: PF_StatueHoodedBroken objectReference: {fileID: 0} + - target: {fileID: 1030999644, guid: abc00000000013117676350499185899, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_RootOrder value: 53 @@ -145031,15 +146608,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalPosition.x - value: 21.535 + value: -255.34799 objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalPosition.y - value: 19.03 + value: 8.410001 objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalPosition.z - value: 292.11 + value: -133.30301 objectReference: {fileID: 0} - target: {fileID: 1030999645, guid: abc00000000013117676350499185899, type: 3} propertyPath: m_LocalRotation.w @@ -145074,6 +146651,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000013117676350499185899, type: 3} +--- !u!4 &937677170 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999645, guid: abc00000000013117676350499185899, + type: 3} + m_PrefabInstance: {fileID: 937677169} + m_PrefabAsset: {fileID: 0} --- !u!1001 &938403555 PrefabInstance: m_ObjectHideFlags: 0 @@ -145856,7 +147439,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -145866,17 +147449,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 206.3662 + value: -70.5168 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.634555 + value: -4.985445 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 512.05597 + value: 86.642975 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -145923,13 +147506,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &946849373 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 946849372} + m_PrefabAsset: {fileID: 0} --- !u!1001 &947649504 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999491, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_Name @@ -145945,7 +147534,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalScale.x - value: 2.75 + value: 2.7500005 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalScale.y @@ -145953,19 +147542,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalScale.z - value: 2.75 + value: 2.7500005 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalPosition.x - value: 272.4599 + value: -4.4230957 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalPosition.y - value: 23.683 + value: 13.063001 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalPosition.z - value: 194.34187 + value: -231.07112 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalRotation.w @@ -146016,13 +147605,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000010228223666518435043, type: 3} +--- !u!4 &947649505 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999492, guid: abc00000000010228223666518435043, + type: 3} + m_PrefabInstance: {fileID: 947649504} + m_PrefabAsset: {fileID: 0} --- !u!1001 &947893614 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} @@ -146032,17 +147627,17 @@ PrefabInstance: - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} propertyPath: m_LocalPosition.x - value: 251.05 + value: -25.832993 objectReference: {fileID: 0} - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} propertyPath: m_LocalPosition.y - value: 9.94 + value: -0.6800003 objectReference: {fileID: 0} - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} propertyPath: m_LocalPosition.z - value: 244.4 + value: -181.013 objectReference: {fileID: 0} - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} @@ -146089,6 +147684,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} +--- !u!4 &947893615 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, + type: 3} + m_PrefabInstance: {fileID: 947893614} + m_PrefabAsset: {fileID: 0} --- !u!1001 &947907067 PrefabInstance: m_ObjectHideFlags: 0 @@ -146868,7 +148469,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -146878,17 +148479,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 318.531 + value: 41.64801 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 6.346 + value: -4.2739997 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 462.558 + value: 37.14502 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -146935,6 +148536,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &952817407 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 952817406} + m_PrefabAsset: {fileID: 0} --- !u!1001 &953026189 PrefabInstance: m_ObjectHideFlags: 0 @@ -148427,7 +150034,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -148455,15 +150062,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 481.59 + value: 204.707 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 125.73 + value: -299.68298 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -148514,18 +150121,28 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &965950618 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 965950617} + m_PrefabAsset: {fileID: 0} --- !u!1001 &966016315 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999574, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_Name value: PF_Statue_Saint objectReference: {fileID: 0} + - target: {fileID: 1030999574, guid: abc00000000002520808867098156923, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_RootOrder value: 51 @@ -148544,15 +150161,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalPosition.x - value: 50.604904 + value: -226.27809 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalPosition.y - value: 19.26 + value: 8.64 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalPosition.z - value: 283.04 + value: -142.37299 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalRotation.w @@ -148560,15 +150177,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -148587,6 +150204,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002520808867098156923, type: 3} +--- !u!4 &966016316 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999575, guid: abc00000000002520808867098156923, + type: 3} + m_PrefabInstance: {fileID: 966016315} + m_PrefabAsset: {fileID: 0} --- !u!1001 &970411652 PrefabInstance: m_ObjectHideFlags: 0 @@ -149084,7 +150707,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -149112,15 +150735,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 458.98 + value: 182.09702 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 114.05 + value: -311.36298 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -149171,6 +150794,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &971556665 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 971556664} + m_PrefabAsset: {fileID: 0} --- !u!1001 &971569699 PrefabInstance: m_ObjectHideFlags: 0 @@ -149400,13 +151029,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_Name value: PF_Farm_Rock_04 (4) objectReference: {fileID: 0} + - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_RootOrder @@ -149415,12 +151049,12 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.x - value: 4.6982 + value: 4.698201 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.y - value: 4.6982 + value: 4.6981993 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -149430,17 +151064,17 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 370.34372 + value: 93.460724 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 18.16 + value: 7.54 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 135.90897 + value: -289.50403 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -149482,13 +151116,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &971844114 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 971844113} + m_PrefabAsset: {fileID: 0} --- !u!1001 &972486843 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2485053786207625693, guid: 8d0997dbee2106c47a3e5af6a4b06be2, type: 3} @@ -149508,17 +151148,17 @@ PrefabInstance: - target: {fileID: 5800110098476360665, guid: 8d0997dbee2106c47a3e5af6a4b06be2, type: 3} propertyPath: m_LocalPosition.x - value: 342.5 + value: 65.617004 objectReference: {fileID: 0} - target: {fileID: 5800110098476360665, guid: 8d0997dbee2106c47a3e5af6a4b06be2, type: 3} propertyPath: m_LocalPosition.y - value: 7.14 + value: -3.48 objectReference: {fileID: 0} - target: {fileID: 5800110098476360665, guid: 8d0997dbee2106c47a3e5af6a4b06be2, type: 3} propertyPath: m_LocalPosition.z - value: 486.7 + value: 61.287018 objectReference: {fileID: 0} - target: {fileID: 5800110098476360665, guid: 8d0997dbee2106c47a3e5af6a4b06be2, type: 3} @@ -149560,6 +151200,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 8d0997dbee2106c47a3e5af6a4b06be2, type: 3} +--- !u!4 &972486844 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5800110098476360665, guid: 8d0997dbee2106c47a3e5af6a4b06be2, + type: 3} + m_PrefabInstance: {fileID: 972486843} + m_PrefabAsset: {fileID: 0} --- !u!1001 &972940835 PrefabInstance: m_ObjectHideFlags: 0 @@ -150151,7 +151797,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981219, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_Name @@ -150167,15 +151813,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.x - value: 325.14304 + value: 48.26004 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.y - value: 7.08 + value: -3.54 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.z - value: 481.15793 + value: 55.744934 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalRotation.w @@ -150222,6 +151868,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004335665070315185964, type: 3} +--- !u!4 &975489034 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981220, guid: abc00000000004335665070315185964, + type: 3} + m_PrefabInstance: {fileID: 975489033} + m_PrefabAsset: {fileID: 0} --- !u!1001 &975626718 PrefabInstance: m_ObjectHideFlags: 0 @@ -150757,7 +152409,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981037, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_Name @@ -150769,7 +152421,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalScale.x - value: 3.28125 + value: 3.281251 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalScale.y @@ -150777,19 +152429,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalScale.z - value: 3.28125 + value: 3.281251 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.x - value: 43.3 + value: -233.583 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.y - value: 17.639412 + value: 7.019412 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.z - value: 260.7 + value: -164.71298 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalRotation.w @@ -150824,6 +152476,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002265888782412133682, type: 3} +--- !u!4 &980917905 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981038, guid: abc00000000002265888782412133682, + type: 3} + m_PrefabInstance: {fileID: 980917904} + m_PrefabAsset: {fileID: 0} --- !u!1001 &980951769 PrefabInstance: m_ObjectHideFlags: 0 @@ -151755,7 +153413,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -151771,7 +153429,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.4761226 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -151779,19 +153437,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.z - value: 2.3506 + value: 2.3506005 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 479.9 + value: 203.017 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.97 + value: 19.349998 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 124.39 + value: -301.023 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -151842,6 +153500,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &983634956 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 983634955} + m_PrefabAsset: {fileID: 0} --- !u!1001 &984405116 PrefabInstance: m_ObjectHideFlags: 0 @@ -153292,7 +154956,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -153302,17 +154966,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 366.7461 + value: 89.8631 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 7.707 + value: -2.913 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 464.177 + value: 38.764008 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -153359,13 +155023,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &995451743 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 995451742} + m_PrefabAsset: {fileID: 0} --- !u!1001 &995735328 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974846, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_Name @@ -153389,15 +155059,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.x - value: 433.8 + value: 156.91699 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.y - value: 26.59 + value: 15.97 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.z - value: 140.95 + value: -284.463 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalRotation.w @@ -153432,6 +155102,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012035761949254806564, type: 3} +--- !u!4 &995735329 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974847, guid: abc00000000012035761949254806564, + type: 3} + m_PrefabInstance: {fileID: 995735328} + m_PrefabAsset: {fileID: 0} --- !u!1001 &997100897 PrefabInstance: m_ObjectHideFlags: 0 @@ -155916,7 +157592,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -155931,12 +157607,12 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.x - value: 2.4355 + value: 2.4355004 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.y - value: 2.4355 + value: 2.4355001 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -155946,17 +157622,17 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 211.53088 + value: -65.35211 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: 1.09 + value: -9.53 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 150.87892 + value: -274.53406 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -155998,13 +157674,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &997739219 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 997739218} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1000891427 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030993214, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_Name @@ -156016,7 +157698,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.x - value: 1.25 + value: 1.2499998 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.y @@ -156024,19 +157706,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.z - value: 1.25 + value: 1.2499998 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.x - value: 453.51117 + value: 176.62817 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.y - value: 33.51 + value: 22.89 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.z - value: 121.46712 + value: -303.94586 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalRotation.w @@ -156071,6 +157753,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008173990476097054047, type: 3} +--- !u!4 &1000891428 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030993215, guid: abc00000000008173990476097054047, + type: 3} + m_PrefabInstance: {fileID: 1000891427} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1002266841 PrefabInstance: m_ObjectHideFlags: 0 @@ -156929,13 +158617,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_Name value: PF_Farm_Rock_04 objectReference: {fileID: 0} + - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_RootOrder @@ -156949,27 +158642,27 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.y - value: 3.3476 + value: 3.3475993 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.z - value: 3.3476 + value: 3.3476005 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 31.16 + value: -245.72299 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 17.59 + value: 6.9700003 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 315.24 + value: -110.173004 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -157011,6 +158704,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &1008148018 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 1008148017} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1008222600 PrefabInstance: m_ObjectHideFlags: 0 @@ -158063,7 +159762,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 166171474814278951, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -158076,6 +159775,11 @@ PrefabInstance: propertyPath: m_Name value: PF_Castle_PineTree_03 (1) objectReference: {fileID: 0} + - target: {fileID: 3779590339127789939, guid: f6e487b1b36231a4c86fab39ec239c3c, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_RootOrder @@ -158099,17 +159803,17 @@ PrefabInstance: - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.x - value: 296.31 + value: 19.427002 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.y - value: 86.475 + value: 75.854996 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.z - value: -24.661 + value: -450.074 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -158119,7 +159823,7 @@ PrefabInstance: - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -158160,6 +159864,12 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 299398044} m_SourcePrefab: {fileID: 100100000, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} +--- !u!4 &1016209077 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, + type: 3} + m_PrefabInstance: {fileID: 1016209076} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1016813515 PrefabInstance: m_ObjectHideFlags: 0 @@ -158798,7 +160508,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -158823,17 +160533,17 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 307.67 + value: 30.787018 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: 21.08 + value: 10.46 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 110.72 + value: -314.693 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -158880,6 +160590,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &1021549977 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 1021549976} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1021551121 PrefabInstance: m_ObjectHideFlags: 0 @@ -158990,7 +160706,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -159000,17 +160716,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 291.51587 + value: 14.632874 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.843 + value: -4.777 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 447.89807 + value: 22.485077 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -159057,6 +160773,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1021580854 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1021580853} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1021602695 PrefabInstance: m_ObjectHideFlags: 0 @@ -159415,7 +161137,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -159435,27 +161157,27 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 2.8667 + value: 2.8666995 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8667002 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 181.64095 + value: -95.24205 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 6.2167 + value: -4.4033 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 437.24738 + value: 11.834381 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -159497,13 +161219,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1022747154 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1022747153} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1024649954 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -159523,7 +161251,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 2.8667 + value: 2.8667004 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -159533,17 +161261,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 238.28998 + value: -38.593018 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 6.88 + value: -3.7399998 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 452.69998 + value: 27.286987 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -159585,6 +161313,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1024649955 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1024649954} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1025165666 PrefabInstance: m_ObjectHideFlags: 0 @@ -161878,7 +163612,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974488, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_Name @@ -161894,15 +163628,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalPosition.x - value: 460.92 + value: 184.03702 objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalPosition.y - value: 27.81 + value: 17.189999 objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalPosition.z - value: 168.39 + value: -257.023 objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalRotation.w @@ -161953,6 +163687,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004934315601898454205, type: 3} +--- !u!4 &1044754027 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974489, guid: abc00000000004934315601898454205, + type: 3} + m_PrefabInstance: {fileID: 1044754026} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1045111269 PrefabInstance: m_ObjectHideFlags: 0 @@ -165322,7 +167062,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -165332,17 +167072,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 291.4859 + value: 14.602905 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.843 + value: -4.777 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 447.8858 + value: 22.472809 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -165389,6 +167129,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1073264054 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1073264053} + m_PrefabAsset: {fileID: 0} --- !u!1 &1074012342 GameObject: m_ObjectHideFlags: 0 @@ -165698,7 +167444,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -165726,15 +167472,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 447.70804 + value: 170.82504 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 126.20251 + value: -299.21048 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -165785,6 +167531,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1075753646 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1075753645} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1076279702 PrefabInstance: m_ObjectHideFlags: 0 @@ -166556,19 +168308,23 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030986169, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_Name value: PF_TowerA_Bottom_No_Interior objectReference: {fileID: 0} + - target: {fileID: 1030986169, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_RootOrder value: 15 objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999999 objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_LocalScale.y @@ -166576,19 +168332,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999999 objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_LocalPosition.x - value: 197.81212 + value: -79.07088 objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_LocalPosition.y - value: 6.24 + value: -4.38 objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_LocalPosition.z - value: 564.68 + value: 139.267 objectReference: {fileID: 0} - target: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} propertyPath: m_LocalRotation.w @@ -166623,6 +168379,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6e55bb2fb573fb842bf2e05e33101cf2, type: 3} +--- !u!4 &1082673091 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030986170, guid: 6e55bb2fb573fb842bf2e05e33101cf2, + type: 3} + m_PrefabInstance: {fileID: 1082673090} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1083176374 PrefabInstance: m_ObjectHideFlags: 0 @@ -166808,7 +168570,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -166828,7 +168590,7 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.y - value: 2.4355 + value: 2.4355004 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -166838,17 +168600,17 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 338.6 + value: 61.71701 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: 1.95 + value: -8.67 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 281.05 + value: -144.363 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -166890,6 +168652,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &1085813783 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 1085813782} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1086151942 PrefabInstance: m_ObjectHideFlags: 0 @@ -169200,7 +170968,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030983422, guid: abc00000000010518291674500599476, type: 3} propertyPath: m_Name @@ -169216,15 +170984,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983423, guid: abc00000000010518291674500599476, type: 3} propertyPath: m_LocalPosition.x - value: 268.1698 + value: -8.713196 objectReference: {fileID: 0} - target: {fileID: 1030983423, guid: abc00000000010518291674500599476, type: 3} propertyPath: m_LocalPosition.y - value: 23.7 + value: 13.080001 objectReference: {fileID: 0} - target: {fileID: 1030983423, guid: abc00000000010518291674500599476, type: 3} propertyPath: m_LocalPosition.z - value: 190.03021 + value: -235.38278 objectReference: {fileID: 0} - target: {fileID: 1030983423, guid: abc00000000010518291674500599476, type: 3} propertyPath: m_LocalRotation.w @@ -169232,7 +171000,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983423, guid: abc00000000010518291674500599476, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 1030983423, guid: abc00000000010518291674500599476, type: 3} propertyPath: m_LocalRotation.y @@ -169271,13 +171039,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000010518291674500599476, type: 3} +--- !u!4 &1102757072 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030983423, guid: abc00000000010518291674500599476, + type: 3} + m_PrefabInstance: {fileID: 1102757071} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1102814429 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974846, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_Name @@ -169297,19 +171071,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.z - value: 1.75 + value: 1.7500002 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.x - value: 468.77484 + value: 191.89185 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.y - value: 28.58 + value: 17.96 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.z - value: 178.00247 + value: -247.41052 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalRotation.w @@ -169344,6 +171118,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012035761949254806564, type: 3} +--- !u!4 &1102814430 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974847, guid: abc00000000012035761949254806564, + type: 3} + m_PrefabInstance: {fileID: 1102814429} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1102845326 PrefabInstance: m_ObjectHideFlags: 0 @@ -171268,7 +173048,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} @@ -171288,17 +173068,17 @@ PrefabInstance: - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalPosition.x - value: 174.25269 + value: -102.63031 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalPosition.y - value: 8.25 + value: -2.37 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalPosition.z - value: 511.4488 + value: 86.0358 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} @@ -171308,17 +173088,17 @@ PrefabInstance: - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} @@ -171345,6 +173125,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 08c46a07e735754449bcbd97075f3354, type: 3} +--- !u!4 &1117209390 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, + type: 3} + m_PrefabInstance: {fileID: 1117209389} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1117563931 PrefabInstance: m_ObjectHideFlags: 0 @@ -173797,7 +175583,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -173807,17 +175593,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 149.364 + value: -127.519 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 11.019 + value: 0.39900017 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 462.757 + value: 37.343994 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -173864,6 +175650,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1129303025 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1129303024} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1129363963 PrefabInstance: m_ObjectHideFlags: 0 @@ -174574,7 +176366,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -174584,17 +176376,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 223.42 + value: -53.462997 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.54 + value: -5.08 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 555.8 + value: 130.387 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -174641,6 +176433,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1134424493 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1134424492} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1134761251 PrefabInstance: m_ObjectHideFlags: 0 @@ -175642,7 +177440,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988815, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_Name @@ -175670,15 +177468,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.x - value: 257.39 + value: -19.492981 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.y - value: 31.314 + value: 20.694 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalPosition.z - value: 205.3 + value: -220.11299 objectReference: {fileID: 0} - target: {fileID: 1030988816, guid: abc00000000016663490398076905278, type: 3} propertyPath: m_LocalRotation.w @@ -175725,6 +177523,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000016663490398076905278, type: 3} +--- !u!4 &1141527310 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988816, guid: abc00000000016663490398076905278, + type: 3} + m_PrefabInstance: {fileID: 1141527309} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1142006848 PrefabInstance: m_ObjectHideFlags: 0 @@ -176552,7 +178356,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -176562,17 +178366,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 222.08505 + value: -54.797943 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.714 + value: -4.9059997 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 543.21893 + value: 117.80594 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -176582,7 +178386,7 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.x - value: 0.042971052 + value: 0.042971045 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -176592,7 +178396,7 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.z - value: -0.0044629346 + value: -0.0044629336 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -176619,13 +178423,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1148355304 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1148355303} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1148390885 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -176635,52 +178445,52 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.x - value: 3.6517 + value: 3.6516988 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 3.6517 + value: 3.6516995 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.z - value: 3.6517 + value: 3.6516993 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 384.36 + value: 107.47699 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: -3.18 + value: -13.8 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 384.92 + value: -40.49298 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.w - value: 0.20644413 + value: 0.20644414 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.x - value: -0.1256867 + value: -0.12568672 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.y - value: -0.970313 + value: -0.9703131 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.z - value: -0.008733807 + value: -0.008733808 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -176707,6 +178517,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &1148390886 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 1148390885} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1148548725 PrefabInstance: m_ObjectHideFlags: 0 @@ -177437,7 +179253,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3779590339127789939, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -177452,7 +179268,7 @@ PrefabInstance: - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalScale.x - value: 1.2167622 + value: 1.2167624 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -177462,22 +179278,22 @@ PrefabInstance: - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalScale.z - value: 1.2167622 + value: 1.2167624 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.x - value: 60.54303 + value: -216.33997 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.y - value: 25.793728 + value: 15.173728 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.z - value: 169.81952 + value: -255.59348 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -177519,13 +179335,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} +--- !u!4 &1158410900 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, + type: 3} + m_PrefabInstance: {fileID: 1158410899} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1159707660 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -177540,17 +179362,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 189.835 + value: -87.04799 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 6.44 + value: -4.18 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 491.392 + value: 65.979004 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -177592,6 +179414,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &1159707661 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 1159707660} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1159765633 PrefabInstance: m_ObjectHideFlags: 0 @@ -177945,13 +179773,50 @@ Mesh: offset: 0 size: 0 path: +--- !u!1 &1161484235 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1161484236} + m_Layer: 0 + m_Name: Environment + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1161484236 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1161484235} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 276.883, y: 10.62, z: 425.413} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 924913567} + - {fileID: 1428963469} + - {fileID: 838521661} + - {fileID: 628511154} + - {fileID: 1840767892} + - {fileID: 1623487555} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1162118390 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} @@ -177961,17 +179826,17 @@ PrefabInstance: - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalPosition.x - value: 293.6 + value: 16.71701 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalPosition.y - value: 58.47 + value: 47.850002 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalPosition.z - value: 318.7 + value: -106.71298 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} @@ -177986,12 +179851,12 @@ PrefabInstance: - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} @@ -178018,6 +179883,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} +--- !u!4 &1162118391 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, + type: 3} + m_PrefabInstance: {fileID: 1162118390} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1162342438 PrefabInstance: m_ObjectHideFlags: 0 @@ -179603,7 +181474,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 100000, guid: 9f8303a75784a5f4b89b822b799b39d7, type: 3} propertyPath: m_Name @@ -179635,15 +181506,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 400000, guid: 9f8303a75784a5f4b89b822b799b39d7, type: 3} propertyPath: m_LocalPosition.x - value: 1114 + value: 837.117 objectReference: {fileID: 0} - target: {fileID: 400000, guid: 9f8303a75784a5f4b89b822b799b39d7, type: 3} propertyPath: m_LocalPosition.y - value: 2 + value: -8.62 objectReference: {fileID: 0} - target: {fileID: 400000, guid: 9f8303a75784a5f4b89b822b799b39d7, type: 3} propertyPath: m_LocalPosition.z - value: 405 + value: -20.412994 objectReference: {fileID: 0} - target: {fileID: 400000, guid: 9f8303a75784a5f4b89b822b799b39d7, type: 3} propertyPath: m_LocalRotation.w @@ -179722,6 +181593,12 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 1305896959} m_SourcePrefab: {fileID: 100100000, guid: 9f8303a75784a5f4b89b822b799b39d7, type: 3} +--- !u!4 &1168581954 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400000, guid: 9f8303a75784a5f4b89b822b799b39d7, + type: 3} + m_PrefabInstance: {fileID: 1168581953} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1169247794 PrefabInstance: m_ObjectHideFlags: 0 @@ -181034,7 +182911,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981219, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_Name @@ -181050,15 +182927,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.x - value: 332.56 + value: 55.677002 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.y - value: 7.08 + value: -3.54 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.z - value: 503.03 + value: 77.617004 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalRotation.w @@ -181105,6 +182982,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004335665070315185964, type: 3} +--- !u!4 &1178512711 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981220, guid: abc00000000004335665070315185964, + type: 3} + m_PrefabInstance: {fileID: 1178512710} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1180003882 PrefabInstance: m_ObjectHideFlags: 0 @@ -181194,7 +183077,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -181204,12 +183087,12 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 3.7659783 + value: 3.7659776 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 4.9661956 + value: 4.9661946 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -181219,17 +183102,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 172.77809 + value: -104.104904 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 9.043568 + value: -1.5764322 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 556.64026 + value: 131.22726 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -181276,6 +183159,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1180693454 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1180693453} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1180866622 PrefabInstance: m_ObjectHideFlags: 0 @@ -182878,7 +184767,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} @@ -182898,17 +184787,17 @@ PrefabInstance: - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalPosition.x - value: 288.25 + value: 11.367004 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalPosition.y - value: 7.35 + value: -3.27 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalPosition.z - value: 439.45 + value: 14.037018 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} @@ -182918,17 +184807,17 @@ PrefabInstance: - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, type: 3} @@ -182955,6 +184844,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 08c46a07e735754449bcbd97075f3354, type: 3} +--- !u!4 &1193427799 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7096177191515348561, guid: 08c46a07e735754449bcbd97075f3354, + type: 3} + m_PrefabInstance: {fileID: 1193427798} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1194038986 PrefabInstance: m_ObjectHideFlags: 0 @@ -183581,13 +185476,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_Name value: PF_Farm_Rock_04 (2) objectReference: {fileID: 0} + - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_RootOrder @@ -183596,32 +185496,32 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.x - value: 3.1284 + value: 3.1283996 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.y - value: 3.1284 + value: 3.1284006 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.z - value: 3.1284 + value: 3.1283998 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 388.24 + value: 111.356995 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 5.22 + value: -5.4 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 339.54 + value: -85.872986 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -183663,13 +185563,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &1199475165 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 1199475164} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1201119089 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -183684,17 +185590,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 355.383 + value: 78.5 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 2.134 + value: -8.486 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 309.459 + value: -115.95398 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -183736,6 +185642,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &1201119090 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 1201119089} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1201134456 PrefabInstance: m_ObjectHideFlags: 0 @@ -184134,7 +186046,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -184150,15 +186062,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 400.05 + value: 123.16699 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.57 + value: -7.05 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 646.41 + value: 220.99698 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -184201,6 +186113,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &1203890269 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 1203890268} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1204064551 PrefabInstance: m_ObjectHideFlags: 0 @@ -184729,13 +186647,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 4755303842331735600, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_Name value: Prefab_Tree_Castle_Broadleaf_New_01 objectReference: {fileID: 0} + - target: {fileID: 4755303842331735600, guid: 3ac415a490bde0f499bed40400467f57, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_RootOrder @@ -184744,12 +186667,12 @@ PrefabInstance: - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalScale.x - value: 1.4455 + value: 1.4455001 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalScale.y - value: 1.4455 + value: 1.4454998 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} @@ -184759,17 +186682,17 @@ PrefabInstance: - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalPosition.x - value: 219.87 + value: -57.013 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalPosition.y - value: 18.55 + value: 7.9299994 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalPosition.z - value: 93.6 + value: -331.813 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} @@ -184811,6 +186734,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 3ac415a490bde0f499bed40400467f57, type: 3} +--- !u!4 &1205354548 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, + type: 3} + m_PrefabInstance: {fileID: 1205354547} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1205720266 PrefabInstance: m_ObjectHideFlags: 0 @@ -185005,7 +186934,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} @@ -185015,17 +186944,17 @@ PrefabInstance: - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.x - value: 408.75 + value: 131.867 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.y - value: 1.744 + value: -8.875999 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.z - value: 657.05 + value: 231.637 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} @@ -185035,17 +186964,17 @@ PrefabInstance: - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} @@ -185107,6 +187036,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} +--- !u!4 &1207237924 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, + type: 3} + m_PrefabInstance: {fileID: 1207237923} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1207498304 PrefabInstance: m_ObjectHideFlags: 0 @@ -186604,7 +188539,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -186620,15 +188555,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 395.55 + value: 118.66699 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.57 + value: -7.05 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 649.643 + value: 224.23001 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -186671,6 +188606,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &1225366177 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 1225366176} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1225429720 PrefabInstance: m_ObjectHideFlags: 0 @@ -187242,7 +189183,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -187252,52 +189193,52 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.x - value: 5.1515017 + value: 5.1515007 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.y - value: 5.1515017 + value: 5.151502 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.z - value: 5.1515017 + value: 5.151501 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.x - value: 264.4297 + value: -12.453308 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.y - value: 2.394487 + value: -8.225513 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.z - value: 515.65607 + value: 90.24307 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.w - value: -0.28817278 + value: -0.2881728 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.x - value: 0.087409936 + value: 0.08740994 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.y - value: 0.9496728 + value: 0.9496729 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.z - value: -0.08624027 + value: -0.08624028 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -187324,13 +189265,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} +--- !u!4 &1229429354 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + m_PrefabInstance: {fileID: 1229429353} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1231589927 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -187340,22 +189287,22 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 299.9401 + value: 23.057098 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.832 + value: -4.788 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 443.72098 + value: 18.307983 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.w - value: 0.93293285 + value: 0.9329329 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -187365,7 +189312,7 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.y - value: -0.3600503 + value: -0.36005032 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -187397,6 +189344,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1231589928 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1231589927} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1231804920 PrefabInstance: m_ObjectHideFlags: 0 @@ -188929,7 +190882,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -188944,32 +190897,32 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.x - value: 2.8667 + value: 2.8667002 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 2.8667 + value: 2.8667004 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8667006 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 202.4 + value: -74.483 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 4.27 + value: -6.35 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 517.07 + value: 91.65701 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -189011,6 +190964,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1245379639 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1245379638} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1248373918 PrefabInstance: m_ObjectHideFlags: 0 @@ -191234,7 +193193,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -191244,17 +193203,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 318.45 + value: 41.567017 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 6.652 + value: -3.968 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 462.634 + value: 37.22101 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -191301,6 +193260,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &1261968245 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 1261968244} + m_PrefabAsset: {fileID: 0} --- !u!1 &1262312034 GameObject: m_ObjectHideFlags: 0 @@ -191495,7 +193460,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -191510,12 +193475,12 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.x - value: 2.4355 + value: 2.4355004 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.y - value: 2.4355 + value: 2.4354994 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -191525,17 +193490,17 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 203.82834 + value: -73.05466 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: 2.38 + value: -8.24 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 141.05566 + value: -284.35733 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -191577,6 +193542,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &1263936375 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 1263936374} + m_PrefabAsset: {fileID: 0} --- !u!1 &1264075757 GameObject: m_ObjectHideFlags: 0 @@ -192751,7 +194722,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -192767,15 +194738,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 393.99 + value: 117.106995 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.26 + value: -7.3599997 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 653.8961 + value: 228.48312 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -192818,6 +194789,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &1271166422 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 1271166421} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1271822580 PrefabInstance: m_ObjectHideFlags: 0 @@ -193922,7 +195899,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030992482, guid: abc00000000001619170280026711899, type: 3} propertyPath: m_Name @@ -193938,7 +195915,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030992483, guid: abc00000000001619170280026711899, type: 3} propertyPath: m_LocalScale.y - value: 80.153915 + value: 80.1539 objectReference: {fileID: 0} - target: {fileID: 1030992483, guid: abc00000000001619170280026711899, type: 3} propertyPath: m_LocalScale.z @@ -193946,15 +195923,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030992483, guid: abc00000000001619170280026711899, type: 3} propertyPath: m_LocalPosition.x - value: 113.1 + value: -163.78299 objectReference: {fileID: 0} - target: {fileID: 1030992483, guid: abc00000000001619170280026711899, type: 3} propertyPath: m_LocalPosition.y - value: 71.821014 + value: 61.201015 objectReference: {fileID: 0} - target: {fileID: 1030992483, guid: abc00000000001619170280026711899, type: 3} propertyPath: m_LocalPosition.z - value: 518.3 + value: 92.88699 objectReference: {fileID: 0} - target: {fileID: 1030992483, guid: abc00000000001619170280026711899, type: 3} propertyPath: m_LocalRotation.w @@ -193989,6 +195966,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000001619170280026711899, type: 3} +--- !u!4 &1277862869 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030992483, guid: abc00000000001619170280026711899, + type: 3} + m_PrefabInstance: {fileID: 1277862868} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1278711865 PrefabInstance: m_ObjectHideFlags: 0 @@ -195001,6 +196984,74 @@ Transform: type: 3} m_PrefabInstance: {fileID: 1280690177} m_PrefabAsset: {fileID: 0} +--- !u!1 &1282845310 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1282845313} + - component: {fileID: 1282845312} + - component: {fileID: 1282845311} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1282845311 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282845310} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &1282845312 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282845310} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1282845313 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282845310} + serializedVersion: 2 + 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_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1282978349 PrefabInstance: m_ObjectHideFlags: 0 @@ -195812,7 +197863,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -195822,7 +197873,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -195832,22 +197883,22 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.z - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 290.286 + value: 13.403015 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 5.956 + value: -4.664 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 427.999 + value: 2.5859985 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -195894,6 +197945,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1284100088 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1284100087} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1284401977 PrefabInstance: m_ObjectHideFlags: 0 @@ -200296,7 +202353,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -200306,7 +202363,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -200316,22 +202373,22 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.z - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 305.34 + value: 28.457 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 5.9 + value: -4.72 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 378.14 + value: -47.27298 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -200378,6 +202435,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1294924600 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1294924599} + m_PrefabAsset: {fileID: 0} --- !u!1 &1295331522 GameObject: m_ObjectHideFlags: 0 @@ -201306,7 +203369,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975128, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_Name @@ -201322,7 +203385,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalScale.x - value: 21.317406 + value: 21.317408 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalScale.y @@ -201330,19 +203393,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalScale.z - value: 21.317406 + value: 21.317408 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalPosition.x - value: -339.4 + value: -616.28296 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalPosition.y - value: 36.3 + value: 25.68 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalPosition.z - value: 495.5 + value: 70.087006 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalRotation.w @@ -201401,6 +203464,12 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 708640522} m_SourcePrefab: {fileID: 100100000, guid: abc00000000016310321921250879688, type: 3} +--- !u!4 &1301323762 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975129, guid: abc00000000016310321921250879688, + type: 3} + m_PrefabInstance: {fileID: 1301323761} + m_PrefabAsset: {fileID: 0} --- !u!1 &1303027450 GameObject: m_ObjectHideFlags: 0 @@ -202302,7 +204371,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -202312,7 +204381,7 @@ PrefabInstance: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalScale.x - value: 6.090567 + value: 6.090568 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -202322,22 +204391,22 @@ PrefabInstance: - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalScale.z - value: 6.090567 + value: 6.0905666 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.x - value: 373.67 + value: 96.78702 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.y - value: 2.4 + value: -8.219999 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} propertyPath: m_LocalPosition.z - value: 370.16 + value: -55.25299 objectReference: {fileID: 0} - target: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} @@ -202384,13 +204453,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 5683f5995d412cd4db12468f7ba3ac5b, type: 3} +--- !u!4 &1307491095 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7128165440910025248, guid: 5683f5995d412cd4db12468f7ba3ac5b, + type: 3} + m_PrefabInstance: {fileID: 1307491094} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1308645757 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030988959, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_Name @@ -202418,15 +204493,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.x - value: 250.929 + value: -25.953995 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.y - value: 31.916 + value: 21.296001 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalPosition.z - value: 198.759 + value: -226.65399 objectReference: {fileID: 0} - target: {fileID: 1030988960, guid: abc00000000015723345820112897059, type: 3} propertyPath: m_LocalRotation.w @@ -202473,6 +204548,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000015723345820112897059, type: 3} +--- !u!4 &1308645758 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030988960, guid: abc00000000015723345820112897059, + type: 3} + m_PrefabInstance: {fileID: 1308645757} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1308883068 PrefabInstance: m_ObjectHideFlags: 0 @@ -205345,7 +207426,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} @@ -205370,17 +207451,17 @@ PrefabInstance: - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} propertyPath: m_LocalPosition.x - value: 249.65 + value: -27.233002 objectReference: {fileID: 0} - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} propertyPath: m_LocalPosition.y - value: 13.41 + value: 2.79 objectReference: {fileID: 0} - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} propertyPath: m_LocalPosition.z - value: 256.67 + value: -168.74298 objectReference: {fileID: 0} - target: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} @@ -205427,6 +207508,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 167fcfe2e687d8746be10ee0994c852e, type: 3} +--- !u!4 &1312475452 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8279249178619474842, guid: 167fcfe2e687d8746be10ee0994c852e, + type: 3} + m_PrefabInstance: {fileID: 1312475451} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1312512023 PrefabInstance: m_ObjectHideFlags: 0 @@ -206611,7 +208698,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974620, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_Name @@ -206627,15 +208714,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.x - value: 398.04 + value: 121.15701 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.y - value: 2.96 + value: -7.66 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.z - value: 650.08 + value: 224.66702 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalRotation.w @@ -206682,6 +208769,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008012362865714032028, type: 3} +--- !u!4 &1316258471 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974621, guid: abc00000000008012362865714032028, + type: 3} + m_PrefabInstance: {fileID: 1316258470} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1317415247 PrefabInstance: m_ObjectHideFlags: 0 @@ -207464,7 +209557,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -207474,17 +209567,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 305.639 + value: 28.756012 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 6.13 + value: -4.49 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 465.092 + value: 39.679016 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -207531,6 +209624,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &1320757592 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 1320757591} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1320994312 PrefabInstance: m_ObjectHideFlags: 0 @@ -207831,7 +209930,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -207859,15 +209958,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 470.2 + value: 193.31702 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 30.17 + value: 19.55 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 117.19 + value: -308.223 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -207918,13 +210017,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1323126271 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1323126270} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1323451225 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} @@ -207934,17 +210039,17 @@ PrefabInstance: - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.x - value: 391.851 + value: 114.96802 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.y - value: 2.128 + value: -8.492 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} propertyPath: m_LocalPosition.z - value: 661.043 + value: 235.63004 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} @@ -208026,6 +210131,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 2600e27fdf91ac54caffcac4c6f2c37d, type: 3} +--- !u!4 &1323451226 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2600e27fdf91ac54caffcac4c6f2c37d, + type: 3} + m_PrefabInstance: {fileID: 1323451225} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1325176522 PrefabInstance: m_ObjectHideFlags: 0 @@ -209261,7 +211372,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -209276,52 +211387,52 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.x - value: 2.8667 + value: 2.8667002 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.y - value: 2.8667 + value: 2.8666995 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8666992 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 356.74484 + value: 79.86185 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 3.7654245 + value: -6.854575 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 425.07706 + value: -0.3359375 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.w - value: -0.11286158 + value: -0.11286159 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.x - value: -0.8949907 + value: -0.89499074 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.y - value: -0.0043177516 + value: -0.004317752 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalRotation.z - value: -0.4315498 + value: -0.43154982 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -209343,6 +211454,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1335623459 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1335623458} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1335910482 PrefabInstance: m_ObjectHideFlags: 0 @@ -209582,7 +211699,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981037, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_Name @@ -209606,15 +211723,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.x - value: 50.43 + value: -226.453 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.y - value: 17.639412 + value: 7.019412 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.z - value: 250.66 + value: -174.75299 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalRotation.w @@ -209649,6 +211766,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002265888782412133682, type: 3} +--- !u!4 &1336020838 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981038, guid: abc00000000002265888782412133682, + type: 3} + m_PrefabInstance: {fileID: 1336020837} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1336177446 PrefabInstance: m_ObjectHideFlags: 0 @@ -210241,7 +212364,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -210269,15 +212392,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 489.18 + value: 212.297 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 131.54 + value: -293.873 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -210328,6 +212451,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1338928417 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1338928416} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1340917415 PrefabInstance: m_ObjectHideFlags: 0 @@ -210542,7 +212671,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -210552,17 +212681,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 149.16655 + value: -127.716446 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 11.338924 + value: 0.7189245 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 457.93896 + value: 32.52597 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -210609,6 +212738,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1341845837 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1341845836} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1343285994 PrefabInstance: m_ObjectHideFlags: 0 @@ -212008,7 +214143,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981059, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_Name @@ -212036,15 +214171,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.x - value: 232.14488 + value: -44.738113 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.y - value: 23.436 + value: 12.816001 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.z - value: 217.92488 + value: -207.48811 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalRotation.w @@ -212095,6 +214230,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005992521218887334492, type: 3} +--- !u!4 &1351233023 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981060, guid: abc00000000005992521218887334492, + type: 3} + m_PrefabInstance: {fileID: 1351233022} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1352517081 PrefabInstance: m_ObjectHideFlags: 0 @@ -214121,7 +216262,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975991, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_Name @@ -214145,15 +216286,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.x - value: 202.42415 + value: -74.45885 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.y - value: 47.784824 + value: 37.164825 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.z - value: 558.27374 + value: 132.86075 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.w @@ -214188,6 +216329,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} +--- !u!4 &1363022803 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, + type: 3} + m_PrefabInstance: {fileID: 1363022802} + m_PrefabAsset: {fileID: 0} --- !u!1 &1363033369 GameObject: m_ObjectHideFlags: 0 @@ -214725,7 +216872,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} @@ -214735,17 +216882,17 @@ PrefabInstance: - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalPosition.x - value: 335.817 + value: 58.93399 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalPosition.y - value: 7.401 + value: -3.2189999 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalPosition.z - value: 489.366 + value: 63.953003 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} @@ -214792,13 +216939,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} +--- !u!4 &1370640273 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, + type: 3} + m_PrefabInstance: {fileID: 1370640272} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1371096064 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -214813,17 +216966,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 208.3511 + value: -68.53189 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.6733603 + value: -4.9466395 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 513.61914 + value: 88.20615 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -214865,6 +217018,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &1371096065 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 1371096064} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1371942165 PrefabInstance: m_ObjectHideFlags: 0 @@ -215226,7 +217385,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975110, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_Name @@ -215254,15 +217413,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.x - value: 2466 + value: 2189.117 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.y - value: 39 + value: 28.380001 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.z - value: 541 + value: 115.587006 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalRotation.w @@ -215309,6 +217468,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000007387135349448011318, type: 3} +--- !u!4 &1374660095 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975111, guid: abc00000000007387135349448011318, + type: 3} + m_PrefabInstance: {fileID: 1374660094} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1374968758 PrefabInstance: m_ObjectHideFlags: 0 @@ -215419,7 +217584,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -215449,17 +217614,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 184.27802 + value: -92.60498 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 7.3729 + value: -3.2470999 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 436.24478 + value: 10.831787 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -215501,6 +217666,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1375418541 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1375418540} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1375626709 PrefabInstance: m_ObjectHideFlags: 0 @@ -216186,7 +218357,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 6141435976922132877, guid: 2a290f008787c4e4bad9f302c993811b, type: 3} @@ -216196,17 +218367,17 @@ PrefabInstance: - target: {fileID: 6141435976922132877, guid: 2a290f008787c4e4bad9f302c993811b, type: 3} propertyPath: m_LocalPosition.x - value: 218.54 + value: -58.343002 objectReference: {fileID: 0} - target: {fileID: 6141435976922132877, guid: 2a290f008787c4e4bad9f302c993811b, type: 3} propertyPath: m_LocalPosition.y - value: 29.444878 + value: 18.824879 objectReference: {fileID: 0} - target: {fileID: 6141435976922132877, guid: 2a290f008787c4e4bad9f302c993811b, type: 3} propertyPath: m_LocalPosition.z - value: 227.14 + value: -198.273 objectReference: {fileID: 0} - target: {fileID: 6141435976922132877, guid: 2a290f008787c4e4bad9f302c993811b, type: 3} @@ -216253,6 +218424,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 2a290f008787c4e4bad9f302c993811b, type: 3} +--- !u!4 &1378201773 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6141435976922132877, guid: 2a290f008787c4e4bad9f302c993811b, + type: 3} + m_PrefabInstance: {fileID: 1378201772} + m_PrefabAsset: {fileID: 0} --- !u!1 &1378980998 GameObject: m_ObjectHideFlags: 0 @@ -216364,7 +218541,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -216374,17 +218551,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 270.8609 + value: -6.0220947 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 5.8430862 + value: -4.7769136 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 453.4453 + value: 28.032318 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -216431,6 +218608,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1379594941 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1379594940} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1381585972 PrefabInstance: m_ObjectHideFlags: 0 @@ -222327,7 +224510,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -222351,19 +224534,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.z - value: 2.3506 + value: 2.3506002 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 463.8 + value: 186.91699 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 113.63 + value: -311.783 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -222414,6 +224597,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1417106531 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1417106530} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1417602623 PrefabInstance: m_ObjectHideFlags: 0 @@ -222847,7 +225036,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -222877,17 +225066,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 183.80638 + value: -93.076614 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 7.9646177 + value: -2.6553822 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 432.65695 + value: 7.2439575 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -222929,6 +225118,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1423658836 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1423658835} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1424366462 PrefabInstance: m_ObjectHideFlags: 0 @@ -223334,7 +225529,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -223349,7 +225544,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.x - value: 3.778884 + value: 3.778883 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -223364,17 +225559,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 358.45663 + value: 81.57364 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 4.565052 + value: -6.054948 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 427.89816 + value: 2.4851685 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -223416,6 +225611,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1428553771 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1428553770} + m_PrefabAsset: {fileID: 0} --- !u!1 &1428963468 GameObject: m_ObjectHideFlags: 0 @@ -223441,7 +225642,7 @@ Transform: m_GameObject: {fileID: 1428963468} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 82.40375, y: 15.011145, z: -5.233963} + m_LocalPosition: {x: -194.47925, y: 4.3911448, z: -430.64697} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -223554,7 +225755,7 @@ Transform: - {fileID: 735334414} - {fileID: 816495287} - {fileID: 1802932163} - m_Father: {fileID: 0} + m_Father: {fileID: 1161484236} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1431626779 PrefabInstance: @@ -226423,7 +228624,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -226439,15 +228640,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 402.6065 + value: 125.72351 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.26 + value: -7.3599997 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 653.8961 + value: 228.48312 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -226490,6 +228691,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &1447405962 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 1447405961} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1448773110 PrefabInstance: m_ObjectHideFlags: 0 @@ -233220,7 +235427,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2626898585195053301, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -233233,6 +235440,11 @@ PrefabInstance: propertyPath: m_Name value: PF_Castle_PineTree_03 objectReference: {fileID: 0} + - target: {fileID: 3779590339127789939, guid: f6e487b1b36231a4c86fab39ec239c3c, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_RootOrder @@ -233256,17 +235468,17 @@ PrefabInstance: - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.x - value: 76.7 + value: -200.183 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.y - value: 48.1 + value: 37.48 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalPosition.z - value: -6.5 + value: -431.913 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -233276,7 +235488,7 @@ PrefabInstance: - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} @@ -233317,6 +235529,12 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 1607074979} m_SourcePrefab: {fileID: 100100000, guid: f6e487b1b36231a4c86fab39ec239c3c, type: 3} +--- !u!4 &1458311077 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4555423802049532873, guid: f6e487b1b36231a4c86fab39ec239c3c, + type: 3} + m_PrefabInstance: {fileID: 1458311076} + m_PrefabAsset: {fileID: 0} --- !u!1 &1459000274 GameObject: m_ObjectHideFlags: 0 @@ -233342,7 +235560,7 @@ Transform: m_GameObject: {fileID: 1459000274} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalPosition: {x: -276.883, y: -10.62, z: -425.413} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -234317,7 +236535,7 @@ Transform: - {fileID: 2144190855} - {fileID: 1338095255} - {fileID: 1536326178} - m_Father: {fileID: 0} + m_Father: {fileID: 924913567} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1459283167 GameObject: @@ -237488,7 +239706,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -237503,17 +239721,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 317.24246 + value: 40.359467 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 6.5864244 + value: -4.0335755 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 466.7062 + value: 41.293213 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -237523,7 +239741,7 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalRotation.x - value: 0.069351576 + value: 0.06935156 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -237533,7 +239751,7 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalRotation.z - value: 0.053520072 + value: 0.053520057 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -237555,6 +239773,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &1485661882 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 1485661881} + m_PrefabAsset: {fileID: 0} --- !u!1 &1485858430 GameObject: m_ObjectHideFlags: 0 @@ -238600,12 +240824,16 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981037, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_Name value: PF_KnightStatue objectReference: {fileID: 0} + - target: {fileID: 1030981037, guid: abc00000000002265888782412133682, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_RootOrder value: 52 @@ -238624,15 +240852,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.x - value: 22.051775 + value: -254.83122 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.y - value: 19.19 + value: 8.570001 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.z - value: 275.35715 + value: -150.05585 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalRotation.w @@ -238667,6 +240895,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002265888782412133682, type: 3} +--- !u!4 &1489895178 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981038, guid: abc00000000002265888782412133682, + type: 3} + m_PrefabInstance: {fileID: 1489895177} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1490172212 PrefabInstance: m_ObjectHideFlags: 0 @@ -238879,7 +241113,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975092, guid: abc00000000000888854260776176669, type: 3} propertyPath: m_Name @@ -238907,15 +241141,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975093, guid: abc00000000000888854260776176669, type: 3} propertyPath: m_LocalPosition.x - value: -2742.5 + value: -3019.383 objectReference: {fileID: 0} - target: {fileID: 1030975093, guid: abc00000000000888854260776176669, type: 3} propertyPath: m_LocalPosition.y - value: 108.7 + value: 98.079994 objectReference: {fileID: 0} - target: {fileID: 1030975093, guid: abc00000000000888854260776176669, type: 3} propertyPath: m_LocalPosition.z - value: -2627 + value: -3052.413 objectReference: {fileID: 0} - target: {fileID: 1030975093, guid: abc00000000000888854260776176669, type: 3} propertyPath: m_LocalRotation.w @@ -238974,6 +241208,12 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 68174275} m_SourcePrefab: {fileID: 100100000, guid: abc00000000000888854260776176669, type: 3} +--- !u!4 &1491246004 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975093, guid: abc00000000000888854260776176669, + type: 3} + m_PrefabInstance: {fileID: 1491246003} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1491366612 PrefabInstance: m_ObjectHideFlags: 0 @@ -239079,7 +241319,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} @@ -239089,22 +241329,22 @@ PrefabInstance: - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalPosition.x - value: 333.91 + value: 57.027008 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalPosition.y - value: 7.401 + value: -3.2189999 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalPosition.z - value: 490.94 + value: 65.52701 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalRotation.w - value: 0.92128444 + value: 0.9212845 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} @@ -239114,7 +241354,7 @@ PrefabInstance: - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} propertyPath: m_LocalRotation.y - value: -0.38888934 + value: -0.38888937 objectReference: {fileID: 0} - target: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} @@ -239146,6 +241386,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 1d90a2c7174278e49a492dd768aa76ce, type: 3} +--- !u!4 &1491402281 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7365185069279850047, guid: 1d90a2c7174278e49a492dd768aa76ce, + type: 3} + m_PrefabInstance: {fileID: 1491402280} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1491521952 PrefabInstance: m_ObjectHideFlags: 0 @@ -239474,7 +241720,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} @@ -239484,7 +241730,7 @@ PrefabInstance: - target: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} propertyPath: m_LocalScale.x - value: 2.3583453 + value: 2.3583448 objectReference: {fileID: 0} - target: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} @@ -239499,17 +241745,17 @@ PrefabInstance: - target: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} propertyPath: m_LocalPosition.x - value: 125.85973 + value: -151.02325 objectReference: {fileID: 0} - target: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} propertyPath: m_LocalPosition.y - value: 5.3020973 + value: -5.3179026 objectReference: {fileID: 0} - target: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} propertyPath: m_LocalPosition.z - value: 532.8842 + value: 107.47122 objectReference: {fileID: 0} - target: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} @@ -239551,11 +241797,22 @@ PrefabInstance: propertyPath: m_Name value: PF_DragonSkull objectReference: {fileID: 0} + - target: {fileID: 3454579332353423851, guid: 8a35c7b924bf9d04d9960732782215e2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 8a35c7b924bf9d04d9960732782215e2, type: 3} +--- !u!4 &1494735877 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2646692941437117265, guid: 8a35c7b924bf9d04d9960732782215e2, + type: 3} + m_PrefabInstance: {fileID: 1494735876} + m_PrefabAsset: {fileID: 0} --- !u!1 &1495449697 GameObject: m_ObjectHideFlags: 0 @@ -240294,7 +242551,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -240309,7 +242566,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.x - value: 6.418497 + value: 6.418498 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -240324,17 +242581,17 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 235.68 + value: -41.203003 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 8.74 + value: -1.8800001 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 485.73 + value: 60.317017 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -240376,6 +242633,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1504038067 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1504038066} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1504473418 PrefabInstance: m_ObjectHideFlags: 0 @@ -240673,7 +242936,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -240689,7 +242952,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.4761224 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -240697,19 +242960,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.z - value: 2.3506 + value: 2.3506002 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 450.66 + value: 173.77701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 123.09 + value: -302.323 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -240760,6 +243023,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1505873627 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1505873626} + m_PrefabAsset: {fileID: 0} --- !u!1 &1506558734 GameObject: m_ObjectHideFlags: 0 @@ -241977,7 +244246,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981219, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_Name @@ -241993,15 +244262,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.x - value: 287.963 + value: 11.080017 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.y - value: 5.821 + value: -4.799 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.z - value: 442.519 + value: 17.106018 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalRotation.w @@ -242048,6 +244317,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004335665070315185964, type: 3} +--- !u!4 &1518711832 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981220, guid: abc00000000004335665070315185964, + type: 3} + m_PrefabInstance: {fileID: 1518711831} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1520962334 PrefabInstance: m_ObjectHideFlags: 0 @@ -242707,7 +244982,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -242717,17 +244992,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 289.08 + value: 12.196991 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 5.884 + value: -4.736 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 443.57 + value: 18.157013 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -242774,6 +245049,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &1524663922 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 1524663921} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1525094626 PrefabInstance: m_ObjectHideFlags: 0 @@ -245503,7 +247784,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1541684397144910349, guid: f5fe3223dc7031a4e943e1faf8bb80a5, type: 3} @@ -245513,17 +247794,17 @@ PrefabInstance: - target: {fileID: 1541684397144910349, guid: f5fe3223dc7031a4e943e1faf8bb80a5, type: 3} propertyPath: m_LocalPosition.x - value: 320.69 + value: 43.807007 objectReference: {fileID: 0} - target: {fileID: 1541684397144910349, guid: f5fe3223dc7031a4e943e1faf8bb80a5, type: 3} propertyPath: m_LocalPosition.y - value: 6.9789243 + value: -3.6410756 objectReference: {fileID: 0} - target: {fileID: 1541684397144910349, guid: f5fe3223dc7031a4e943e1faf8bb80a5, type: 3} propertyPath: m_LocalPosition.z - value: 473.929 + value: 48.51599 objectReference: {fileID: 0} - target: {fileID: 1541684397144910349, guid: f5fe3223dc7031a4e943e1faf8bb80a5, type: 3} @@ -245570,6 +247851,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: f5fe3223dc7031a4e943e1faf8bb80a5, type: 3} +--- !u!4 &1538375736 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1541684397144910349, guid: f5fe3223dc7031a4e943e1faf8bb80a5, + type: 3} + m_PrefabInstance: {fileID: 1538375735} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1538967495 PrefabInstance: m_ObjectHideFlags: 0 @@ -246666,7 +248953,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974620, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_Name @@ -246682,15 +248969,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.x - value: 398.04 + value: 121.15701 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.y - value: 2.96 + value: -7.66 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalPosition.z - value: 642.18 + value: 216.767 objectReference: {fileID: 0} - target: {fileID: 1030974621, guid: abc00000000008012362865714032028, type: 3} propertyPath: m_LocalRotation.w @@ -246737,6 +249024,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008012362865714032028, type: 3} +--- !u!4 &1549385080 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974621, guid: abc00000000008012362865714032028, + type: 3} + m_PrefabInstance: {fileID: 1549385079} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1549789678 PrefabInstance: m_ObjectHideFlags: 0 @@ -248313,7 +250606,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -248341,15 +250634,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 466.01 + value: 189.12701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 115.07 + value: -310.343 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -248400,6 +250693,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1558953038 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1558953037} + m_PrefabAsset: {fileID: 0} --- !u!1 &1559093748 GameObject: m_ObjectHideFlags: 0 @@ -248720,7 +251019,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030986519, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_Name @@ -248732,7 +251031,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_LocalScale.y @@ -248740,19 +251039,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_LocalPosition.x - value: 202.42415 + value: -74.45885 objectReference: {fileID: 0} - target: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_LocalPosition.y - value: 41.034817 + value: 30.414818 objectReference: {fileID: 0} - target: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_LocalPosition.z - value: 558.27374 + value: 132.86075 objectReference: {fileID: 0} - target: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} propertyPath: m_LocalRotation.w @@ -248787,6 +251086,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, type: 3} +--- !u!4 &1561985041 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030986520, guid: 1a8b2d4d98a6cf047a8c5588cf7a89ea, + type: 3} + m_PrefabInstance: {fileID: 1561985040} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1562506270 PrefabInstance: m_ObjectHideFlags: 0 @@ -248872,7 +251177,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030972426, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_Name @@ -248888,15 +251193,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.x - value: 452.44 + value: 175.557 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.y - value: 30.03 + value: 19.41 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.z - value: 146.58 + value: -278.833 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalRotation.w @@ -248947,6 +251252,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000003160319123247582383, type: 3} +--- !u!4 &1564396563 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030972427, guid: abc00000000003160319123247582383, + type: 3} + m_PrefabInstance: {fileID: 1564396562} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1564470138 PrefabInstance: m_ObjectHideFlags: 0 @@ -249674,7 +251985,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975927, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_Name @@ -249686,7 +251997,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalScale.y @@ -249694,23 +252005,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.x - value: 203.72891 + value: -73.15408 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.y - value: 30.08481 + value: 19.46481 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.z - value: 570.2012 + value: 144.78818 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.w - value: 0.8609175 + value: 0.86091757 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.x @@ -249718,7 +252029,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.y - value: 0.5087445 + value: 0.50874454 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.z @@ -249741,6 +252052,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} +--- !u!4 &1567238210 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, + type: 3} + m_PrefabInstance: {fileID: 1567238209} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1567349842 PrefabInstance: m_ObjectHideFlags: 0 @@ -250276,7 +252593,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999491, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_Name @@ -250292,7 +252609,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalScale.x - value: 2.75 + value: 2.7500002 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalScale.y @@ -250300,19 +252617,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalScale.z - value: 2.75 + value: 2.7500002 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalPosition.x - value: 263.89587 + value: -12.987122 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalPosition.y - value: 23.683 + value: 13.063001 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalPosition.z - value: 185.80188 + value: -239.61111 objectReference: {fileID: 0} - target: {fileID: 1030999492, guid: abc00000000010228223666518435043, type: 3} propertyPath: m_LocalRotation.w @@ -250363,6 +252680,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000010228223666518435043, type: 3} +--- !u!4 &1574309750 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999492, guid: abc00000000010228223666518435043, + type: 3} + m_PrefabInstance: {fileID: 1574309749} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1574608235 PrefabInstance: m_ObjectHideFlags: 0 @@ -250537,19 +252860,23 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030986295, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_Name value: PF_TowerA_Top_03_No_Interior objectReference: {fileID: 0} + - target: {fileID: 1030986295, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_RootOrder value: 12 objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.5000002 objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_LocalScale.y @@ -250557,19 +252884,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.5000002 objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_LocalPosition.x - value: 197.81612 + value: -79.06688 objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_LocalPosition.y - value: 39.74001 + value: 29.12001 objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_LocalPosition.z - value: 564.6826 + value: 139.26962 objectReference: {fileID: 0} - target: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} propertyPath: m_LocalRotation.w @@ -250604,6 +252931,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 1ea34c90fa50ca247abbac654f0924c8, type: 3} +--- !u!4 &1576214684 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030986296, guid: 1ea34c90fa50ca247abbac654f0924c8, + type: 3} + m_PrefabInstance: {fileID: 1576214683} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1576547703 PrefabInstance: m_ObjectHideFlags: 0 @@ -251515,7 +253848,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030993214, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_Name @@ -251527,7 +253860,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.x - value: 1.25 + value: 1.2500002 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.y @@ -251535,19 +253868,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.z - value: 1.25 + value: 1.2500002 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.x - value: 459.49 + value: 182.607 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.y - value: 33.51 + value: 22.89 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.z - value: 114.91 + value: -310.503 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalRotation.w @@ -251582,6 +253915,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008173990476097054047, type: 3} +--- !u!4 &1582317537 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030993215, guid: abc00000000008173990476097054047, + type: 3} + m_PrefabInstance: {fileID: 1582317536} + m_PrefabAsset: {fileID: 0} --- !u!1 &1583628082 GameObject: m_ObjectHideFlags: 0 @@ -252761,7 +255100,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030972426, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_Name @@ -252777,15 +255116,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.x - value: 471.59933 + value: 194.71634 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.y - value: 30.03 + value: 19.41 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalPosition.z - value: 158.78825 + value: -266.62476 objectReference: {fileID: 0} - target: {fileID: 1030972427, guid: abc00000000003160319123247582383, type: 3} propertyPath: m_LocalRotation.w @@ -252836,6 +255175,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000003160319123247582383, type: 3} +--- !u!4 &1594340267 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030972427, guid: abc00000000003160319123247582383, + type: 3} + m_PrefabInstance: {fileID: 1594340266} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1595481880 PrefabInstance: m_ObjectHideFlags: 0 @@ -253300,19 +255645,23 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975991, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_Name value: PF_TowerC_Top_02_No_Interior objectReference: {fileID: 0} + - target: {fileID: 1030975991, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_RootOrder value: 11 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalScale.y @@ -253320,23 +255669,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.x - value: 191.41 + value: -85.47299 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.y - value: 28.99 + value: 18.369999 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.z - value: 563.43 + value: 138.017 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.w - value: 0.8609175 + value: 0.86091757 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.x @@ -253344,7 +255693,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.y - value: 0.5087445 + value: 0.50874454 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.z @@ -253367,6 +255716,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} +--- !u!4 &1598540465 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, + type: 3} + m_PrefabInstance: {fileID: 1598540464} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1599881866 PrefabInstance: m_ObjectHideFlags: 0 @@ -254448,7 +256803,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2710715812636633452, guid: 775515ddd01716b40ad00327d336ae0b, type: 3} @@ -254458,17 +256813,17 @@ PrefabInstance: - target: {fileID: 2710715812636633452, guid: 775515ddd01716b40ad00327d336ae0b, type: 3} propertyPath: m_LocalPosition.x - value: 247.8 + value: -29.082993 objectReference: {fileID: 0} - target: {fileID: 2710715812636633452, guid: 775515ddd01716b40ad00327d336ae0b, type: 3} propertyPath: m_LocalPosition.y - value: 12.913 + value: 2.2930002 objectReference: {fileID: 0} - target: {fileID: 2710715812636633452, guid: 775515ddd01716b40ad00327d336ae0b, type: 3} propertyPath: m_LocalPosition.z - value: 357.2 + value: -68.21298 objectReference: {fileID: 0} - target: {fileID: 2710715812636633452, guid: 775515ddd01716b40ad00327d336ae0b, type: 3} @@ -254510,11 +256865,22 @@ PrefabInstance: propertyPath: m_Name value: PF_MerchantFlag_Thin objectReference: {fileID: 0} + - target: {fileID: 3374802541506065366, guid: 775515ddd01716b40ad00327d336ae0b, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 775515ddd01716b40ad00327d336ae0b, type: 3} +--- !u!4 &1604608679 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2710715812636633452, guid: 775515ddd01716b40ad00327d336ae0b, + type: 3} + m_PrefabInstance: {fileID: 1604608678} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1604744880 PrefabInstance: m_ObjectHideFlags: 0 @@ -254620,19 +256986,23 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975927, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_Name value: PF_TowerC_Bottom_No_Interior objectReference: {fileID: 0} + - target: {fileID: 1030975927, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_RootOrder value: 10 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalScale.y @@ -254640,23 +257010,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.x - value: 191.41 + value: -85.47299 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.y - value: 22.24 + value: 11.62 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalPosition.z - value: 563.43 + value: 138.017 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.w - value: 0.8609175 + value: 0.86091757 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.x @@ -254664,7 +257034,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.y - value: 0.5087445 + value: 0.50874454 objectReference: {fileID: 0} - target: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} propertyPath: m_LocalRotation.z @@ -254687,6 +257057,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ec6875eb452cb0448a6c39203d2813ba, type: 3} +--- !u!4 &1605722212 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975928, guid: ec6875eb452cb0448a6c39203d2813ba, + type: 3} + m_PrefabInstance: {fileID: 1605722211} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1606256142 PrefabInstance: m_ObjectHideFlags: 0 @@ -255640,13 +258016,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_Name value: PF_Farm_Rock_06 objectReference: {fileID: 0} + - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_RootOrder @@ -255670,17 +258051,17 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 44.064484 + value: -232.81851 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: 24.54 + value: 13.920001 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 338.02246 + value: -87.39053 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -255722,6 +258103,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &1616326772 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 1616326771} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1616714110 PrefabInstance: m_ObjectHideFlags: 0 @@ -256323,7 +258710,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -256351,15 +258738,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 487.29 + value: 210.40701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 130.06 + value: -295.353 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -256410,6 +258797,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1620187759 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1620187758} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1620671784 PrefabInstance: m_ObjectHideFlags: 0 @@ -256692,15 +259085,19 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 1161484236} m_Modifications: - target: {fileID: 1030971927, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_Name value: PF_Portcullis objectReference: {fileID: 0} + - target: {fileID: 1030971927, guid: abc00000000016710921569913924908, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030971928, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_LocalScale.x - value: 1.2361206 + value: 1.2361205 objectReference: {fileID: 0} - target: {fileID: 1030971928, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_LocalScale.y @@ -256708,19 +259105,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030971928, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_LocalScale.z - value: 1.2361206 + value: 1.2361205 objectReference: {fileID: 0} - target: {fileID: 1030971928, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_LocalPosition.x - value: 276.883 + value: 0 objectReference: {fileID: 0} - target: {fileID: 1030971928, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_LocalPosition.y - value: 10.62 + value: 0 objectReference: {fileID: 0} - target: {fileID: 1030971928, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_LocalPosition.z - value: 425.413 + value: 0 objectReference: {fileID: 0} - target: {fileID: 1030971928, guid: abc00000000016710921569913924908, type: 3} propertyPath: m_LocalRotation.w @@ -256755,6 +259152,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000016710921569913924908, type: 3} +--- !u!4 &1623487555 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030971928, guid: abc00000000016710921569913924908, + type: 3} + m_PrefabInstance: {fileID: 1623487554} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1624265682 PrefabInstance: m_ObjectHideFlags: 0 @@ -257682,7 +260085,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974846, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_Name @@ -257694,7 +260097,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.x - value: 2.1875 + value: 2.1875005 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.y @@ -257702,19 +260105,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalScale.z - value: 1.75 + value: 1.7500004 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.x - value: 491.77792 + value: 214.89493 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.y - value: 28.38 + value: 17.759998 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.z - value: 139.01022 + value: -286.40277 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalRotation.w @@ -257749,6 +260152,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012035761949254806564, type: 3} +--- !u!4 &1633750227 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974847, guid: abc00000000012035761949254806564, + type: 3} + m_PrefabInstance: {fileID: 1633750226} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1634137735 PrefabInstance: m_ObjectHideFlags: 0 @@ -261170,7 +263579,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -261190,7 +263599,7 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.y - value: 3.4342983 + value: 3.4342992 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -261200,17 +263609,17 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 379.43 + value: 102.547 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: -0.08 + value: -10.7 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 442.02 + value: 16.606995 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -261252,6 +263661,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &1662653004 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 1662653003} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1663609709 PrefabInstance: m_ObjectHideFlags: 0 @@ -272908,7 +275323,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975128, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_Name @@ -272924,7 +275339,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalScale.x - value: 21.317408 + value: 21.317411 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalScale.y @@ -272932,19 +275347,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalScale.z - value: 21.317408 + value: 21.317411 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalPosition.x - value: 55 + value: -221.883 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalPosition.y - value: 30.4 + value: 19.779999 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalPosition.z - value: -300 + value: -725.41296 objectReference: {fileID: 0} - target: {fileID: 1030975129, guid: abc00000000016310321921250879688, type: 3} propertyPath: m_LocalRotation.w @@ -273003,6 +275418,12 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 871779475} m_SourcePrefab: {fileID: 100100000, guid: abc00000000016310321921250879688, type: 3} +--- !u!4 &1673324099 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975129, guid: abc00000000016310321921250879688, + type: 3} + m_PrefabInstance: {fileID: 1673324098} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1673714385 PrefabInstance: m_ObjectHideFlags: 0 @@ -274913,7 +277334,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030992884, guid: abc00000000010516660825410203265, type: 3} propertyPath: m_Name @@ -274929,15 +277350,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030992885, guid: abc00000000010516660825410203265, type: 3} propertyPath: m_LocalPosition.x - value: 328.973 + value: 52.089996 objectReference: {fileID: 0} - target: {fileID: 1030992885, guid: abc00000000010516660825410203265, type: 3} propertyPath: m_LocalPosition.y - value: 1.431 + value: -9.189 objectReference: {fileID: 0} - target: {fileID: 1030992885, guid: abc00000000010516660825410203265, type: 3} propertyPath: m_LocalPosition.z - value: 329.503 + value: -95.91 objectReference: {fileID: 0} - target: {fileID: 1030992885, guid: abc00000000010516660825410203265, type: 3} propertyPath: m_LocalRotation.w @@ -274984,6 +277405,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000010516660825410203265, type: 3} +--- !u!4 &1685627211 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030992885, guid: abc00000000010516660825410203265, + type: 3} + m_PrefabInstance: {fileID: 1685627210} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1686044791 PrefabInstance: m_ObjectHideFlags: 0 @@ -276107,7 +278534,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} @@ -276117,17 +278544,17 @@ PrefabInstance: - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalPosition.x - value: 280.1 + value: 3.2170105 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalPosition.y - value: 58.47 + value: 47.850002 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalPosition.z - value: 571.6 + value: 146.18698 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} @@ -276142,12 +278569,12 @@ PrefabInstance: - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} @@ -276169,11 +278596,22 @@ PrefabInstance: propertyPath: m_Name value: P_Crows_Random objectReference: {fileID: 0} + - target: {fileID: 5902143773153862722, guid: 9761bf1cc42a4154bb5a956da516f25d, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9761bf1cc42a4154bb5a956da516f25d, type: 3} +--- !u!4 &1689579147 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5902143773153862721, guid: 9761bf1cc42a4154bb5a956da516f25d, + type: 3} + m_PrefabInstance: {fileID: 1689579146} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1689706560 PrefabInstance: m_ObjectHideFlags: 0 @@ -278270,7 +280708,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -278285,32 +280723,32 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.x - value: 2.4355 + value: 2.4355001 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.y - value: 2.4355 + value: 2.4355001 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.z - value: 2.4355 + value: 2.4354997 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 261.849 + value: -15.033997 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: 0.66 + value: -9.96 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 218.60403 + value: -206.80896 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -278352,6 +280790,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &1700626136 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 1700626135} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1701863180 PrefabInstance: m_ObjectHideFlags: 0 @@ -278694,7 +281138,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -278704,7 +281148,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 3.917805 + value: 3.9178052 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -278714,22 +281158,22 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.z - value: 3.917805 + value: 3.9178054 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 328.78802 + value: 51.90503 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 1.3904953 + value: -9.229505 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 356.71466 + value: -68.69833 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -279418,7 +281862,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 5857465815660161278, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} @@ -279438,27 +281882,27 @@ PrefabInstance: - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalScale.y - value: 3.8143 + value: 3.8142996 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalScale.z - value: 3.8143 + value: 3.8143003 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalPosition.x - value: 122.14 + value: -154.743 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalPosition.y - value: 34.607315 + value: 23.987316 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} propertyPath: m_LocalPosition.z - value: 524.25 + value: 98.837006 objectReference: {fileID: 0} - target: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} @@ -279500,6 +281944,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9897c334f3142c04a92f48c0b93d52ea, type: 3} +--- !u!4 &1708383209 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6485806390720508484, guid: 9897c334f3142c04a92f48c0b93d52ea, + type: 3} + m_PrefabInstance: {fileID: 1708383208} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1709382082 PrefabInstance: m_ObjectHideFlags: 0 @@ -280789,7 +283239,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -280799,12 +283249,12 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 4.348285 + value: 4.3482857 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 4.348285 + value: 4.348286 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -280814,17 +283264,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 291.98 + value: 15.097015 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 6.86 + value: -3.7599998 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 464.83 + value: 39.416992 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -280834,7 +283284,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.x - value: -0.017969463 + value: -0.017969467 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -280844,7 +283294,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.z - value: -0.0072087366 + value: -0.0072087375 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -280871,6 +283321,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1714497008 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1714497007} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1714930546 PrefabInstance: m_ObjectHideFlags: 0 @@ -281829,7 +284285,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -281844,27 +284300,27 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 3.2986536 + value: 3.2986546 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.z - value: 3.2986536 + value: 3.2986531 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 356.997 + value: 80.11401 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 2.582 + value: -8.038 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 424.195 + value: -1.2179871 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -281874,7 +284330,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.x - value: -0.0040366505 + value: -0.0040366496 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -281884,7 +284340,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.z - value: -0.068586424 + value: -0.06858641 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -281911,6 +284367,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1718072937 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1718072936} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1718089747 PrefabInstance: m_ObjectHideFlags: 0 @@ -282208,7 +284670,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -282233,17 +284695,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 355.27222 + value: 78.38922 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 2.941527 + value: -7.678473 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 424.1249 + value: -1.2880859 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -282290,6 +284752,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1721618169 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1721618168} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1722119332 PrefabInstance: m_ObjectHideFlags: 0 @@ -282496,7 +284964,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -282526,17 +284994,17 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 266.11115 + value: -10.771851 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 1.73 + value: -8.889999 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 214.22398 + value: -211.18901 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -282578,6 +285046,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &1723685649 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 1723685648} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1723921438 PrefabInstance: m_ObjectHideFlags: 0 @@ -282981,7 +285455,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999163, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_Name @@ -282997,7 +285471,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalScale.y - value: 85.71889 + value: 85.7189 objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalScale.z @@ -283005,15 +285479,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalPosition.x - value: 400 + value: 123.117004 objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalPosition.y - value: -30.518 + value: -41.138 objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalPosition.z - value: -37.8 + value: -463.21298 objectReference: {fileID: 0} - target: {fileID: 1030999164, guid: abc00000000008558523202656726696, type: 3} propertyPath: m_LocalRotation.w @@ -283048,6 +285522,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008558523202656726696, type: 3} +--- !u!4 &1725241600 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999164, guid: abc00000000008558523202656726696, + type: 3} + m_PrefabInstance: {fileID: 1725241599} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1727027965 PrefabInstance: m_ObjectHideFlags: 0 @@ -289342,7 +291822,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -289367,17 +291847,17 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 134.96 + value: -141.92299 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: 13.55 + value: 2.9300003 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 479.97 + value: 54.557007 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -289419,11 +291899,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_07 (2) objectReference: {fileID: 0} + - target: {fileID: 8782862719963060608, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &1750533464 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 1750533463} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1752166799 PrefabInstance: m_ObjectHideFlags: 0 @@ -289713,7 +292204,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 692883938628842170, guid: 1c0101bd04d09a945a97f563ffe98de2, type: 3} @@ -290013,17 +292504,17 @@ PrefabInstance: - target: {fileID: 6393624687488821877, guid: 1c0101bd04d09a945a97f563ffe98de2, type: 3} propertyPath: m_LocalPosition.x - value: 403.83 + value: 126.94699 objectReference: {fileID: 0} - target: {fileID: 6393624687488821877, guid: 1c0101bd04d09a945a97f563ffe98de2, type: 3} propertyPath: m_LocalPosition.y - value: 3.39 + value: -7.2299995 objectReference: {fileID: 0} - target: {fileID: 6393624687488821877, guid: 1c0101bd04d09a945a97f563ffe98de2, type: 3} propertyPath: m_LocalPosition.z - value: 655.94 + value: 230.52701 objectReference: {fileID: 0} - target: {fileID: 6393624687488821877, guid: 1c0101bd04d09a945a97f563ffe98de2, type: 3} @@ -290200,6 +292691,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 1c0101bd04d09a945a97f563ffe98de2, type: 3} +--- !u!4 &1754060881 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6393624687488821877, guid: 1c0101bd04d09a945a97f563ffe98de2, + type: 3} + m_PrefabInstance: {fileID: 1754060880} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1754425684 PrefabInstance: m_ObjectHideFlags: 0 @@ -291234,7 +293731,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} @@ -291244,17 +293741,17 @@ PrefabInstance: - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} propertyPath: m_LocalPosition.x - value: 224.11 + value: -52.772995 objectReference: {fileID: 0} - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} propertyPath: m_LocalPosition.y - value: 22.00427 + value: 11.384271 objectReference: {fileID: 0} - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} propertyPath: m_LocalPosition.z - value: 318.54 + value: -106.872986 objectReference: {fileID: 0} - target: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} @@ -291296,18 +293793,29 @@ PrefabInstance: propertyPath: m_Name value: PF_MerchantFlag_Small objectReference: {fileID: 0} + - target: {fileID: 4264865350912608380, guid: ade54f2bf1adc034ca80fb43e0e495fe, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ade54f2bf1adc034ca80fb43e0e495fe, type: 3} +--- !u!4 &1766231041 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3486921753999233734, guid: ade54f2bf1adc034ca80fb43e0e495fe, + type: 3} + m_PrefabInstance: {fileID: 1766231040} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1766596878 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2460909696993888973, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} @@ -291332,22 +293840,22 @@ PrefabInstance: - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalScale.z - value: 1.99 + value: 1.9900002 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalPosition.x - value: 385.5106 + value: 108.627594 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalPosition.y - value: 2.193 + value: -8.427 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalPosition.z - value: 449.2011 + value: 23.788116 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} @@ -291357,7 +293865,7 @@ PrefabInstance: - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalRotation.x - value: -0.053138845 + value: -0.05313883 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} @@ -291367,7 +293875,7 @@ PrefabInstance: - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalRotation.z - value: -0.064383686 + value: -0.06438367 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} @@ -291389,6 +293897,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} +--- !u!4 &1766596879 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, + type: 3} + m_PrefabInstance: {fileID: 1766596878} + m_PrefabAsset: {fileID: 0} --- !u!1 &1766880042 GameObject: m_ObjectHideFlags: 0 @@ -294292,7 +296806,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -294302,17 +296816,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 370.2 + value: 93.31702 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 7.666 + value: -2.954 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 467.71 + value: 42.296997 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -294359,6 +296873,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1789470968 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1789470967} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1789810301 PrefabInstance: m_ObjectHideFlags: 0 @@ -295349,7 +297869,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -295369,7 +297889,7 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.y - value: 5.6599 + value: 5.659902 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -295379,17 +297899,17 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 368.17 + value: 91.28702 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 2.64 + value: -7.9799995 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 428.69 + value: 3.277008 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -295431,13 +297951,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &1794667949 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 1794667948} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1794672926 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030993214, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_Name @@ -295449,7 +297975,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.x - value: 1.25 + value: 1.2500002 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.y @@ -295457,19 +297983,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalScale.z - value: 1.25 + value: 1.2500002 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.x - value: 456.45 + value: 179.56702 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.y - value: 33.51 + value: 22.89 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalPosition.z - value: 118.07 + value: -307.343 objectReference: {fileID: 0} - target: {fileID: 1030993215, guid: abc00000000008173990476097054047, type: 3} propertyPath: m_LocalRotation.w @@ -295504,6 +298030,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000008173990476097054047, type: 3} +--- !u!4 &1794672927 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030993215, guid: abc00000000008173990476097054047, + type: 3} + m_PrefabInstance: {fileID: 1794672926} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1794760162 PrefabInstance: m_ObjectHideFlags: 0 @@ -295748,7 +298280,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} @@ -295758,17 +298290,17 @@ PrefabInstance: - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} propertyPath: m_LocalPosition.x - value: 262.436 + value: -14.446991 objectReference: {fileID: 0} - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} propertyPath: m_LocalPosition.y - value: 14.599 + value: 3.979 objectReference: {fileID: 0} - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} propertyPath: m_LocalPosition.z - value: 363.165 + value: -62.247986 objectReference: {fileID: 0} - target: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} @@ -295815,19 +298347,30 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b0986f993b17a284d9e7d82f365cba0a, type: 3} +--- !u!4 &1796007251 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6262088801179067340, guid: b0986f993b17a284d9e7d82f365cba0a, + type: 3} + m_PrefabInstance: {fileID: 1796007250} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1797769001 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_Name value: PF_Farm_Rock_04 (1) objectReference: {fileID: 0} + - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_RootOrder @@ -295841,7 +298384,7 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.y - value: 5.6599 + value: 5.659902 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -295851,17 +298394,17 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 349.32 + value: 72.43701 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: -1.31 + value: -11.93 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 315.74 + value: -109.673004 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -295903,6 +298446,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &1797769002 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 1797769001} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1799778328 PrefabInstance: m_ObjectHideFlags: 0 @@ -298397,13 +300946,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 4755303842331735600, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_Name value: Prefab_Tree_Castle_Broadleaf_New_01 (1) objectReference: {fileID: 0} + - target: {fileID: 4755303842331735600, guid: 3ac415a490bde0f499bed40400467f57, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_RootOrder @@ -298422,22 +300976,22 @@ PrefabInstance: - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalScale.z - value: 1.7142 + value: 1.7142003 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalPosition.x - value: 59.4 + value: -217.483 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalPosition.y - value: 44.9 + value: 34.280003 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} propertyPath: m_LocalPosition.z - value: -57.3 + value: -482.71298 objectReference: {fileID: 0} - target: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, type: 3} @@ -298479,6 +301033,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 3ac415a490bde0f499bed40400467f57, type: 3} +--- !u!4 &1811409743 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5383467361993747594, guid: 3ac415a490bde0f499bed40400467f57, + type: 3} + m_PrefabInstance: {fileID: 1811409742} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1812526934 PrefabInstance: m_ObjectHideFlags: 0 @@ -298643,7 +301203,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030986183, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_Name @@ -298667,15 +301227,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalPosition.x - value: 197.81212 + value: -79.07088 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalPosition.y - value: 26.240007 + value: 15.6200075 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalPosition.z - value: 564.68 + value: 139.267 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalRotation.w @@ -298710,6 +301270,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} +--- !u!4 &1813970850 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, + type: 3} + m_PrefabInstance: {fileID: 1813970849} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1814713375 PrefabInstance: m_ObjectHideFlags: 0 @@ -299145,7 +301711,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981219, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_Name @@ -299161,15 +301727,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.x - value: 306.23 + value: 29.347015 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.y - value: 6.334 + value: -4.286 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalPosition.z - value: 466.08 + value: 40.666992 objectReference: {fileID: 0} - target: {fileID: 1030981220, guid: abc00000000004335665070315185964, type: 3} propertyPath: m_LocalRotation.w @@ -299216,6 +301782,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004335665070315185964, type: 3} +--- !u!4 &1815961487 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981220, guid: abc00000000004335665070315185964, + type: 3} + m_PrefabInstance: {fileID: 1815961486} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1816124948 PrefabInstance: m_ObjectHideFlags: 0 @@ -301452,19 +304024,23 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030986183, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_Name value: PF_TowerA_Mid_No_Interior objectReference: {fileID: 0} + - target: {fileID: 1030986183, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_RootOrder value: 14 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999999 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalScale.y @@ -301472,19 +304048,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999999 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalPosition.x - value: 197.81212 + value: -79.07088 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalPosition.y - value: 12.99 + value: 2.37 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalPosition.z - value: 564.68 + value: 139.267 objectReference: {fileID: 0} - target: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} propertyPath: m_LocalRotation.w @@ -301519,6 +304095,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: bb19cca6e1b83a548946b15c7234d40c, type: 3} +--- !u!4 &1827509225 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030986184, guid: bb19cca6e1b83a548946b15c7234d40c, + type: 3} + m_PrefabInstance: {fileID: 1827509224} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1827519195 PrefabInstance: m_ObjectHideFlags: 0 @@ -302567,7 +305149,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030983458, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_Name @@ -302583,15 +305165,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalPosition.x - value: 282.25488 + value: 5.371887 objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalPosition.y - value: 23.7 + value: 13.080001 objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalPosition.z - value: 175.94487 + value: -249.46812 objectReference: {fileID: 0} - target: {fileID: 1030983459, guid: abc00000000005687511059183351798, type: 3} propertyPath: m_LocalRotation.w @@ -302638,13 +305220,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005687511059183351798, type: 3} +--- !u!4 &1835492170 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030983459, guid: abc00000000005687511059183351798, + type: 3} + m_PrefabInstance: {fileID: 1835492169} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1836047208 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999574, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_Name @@ -302656,7 +305244,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalScale.x - value: 1.806875 + value: 1.8068752 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalScale.y @@ -302664,19 +305252,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalScale.z - value: 1.806875 + value: 1.8068752 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalPosition.x - value: 9.700195 + value: -267.1828 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalPosition.y - value: 19.07 + value: 8.45 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalPosition.z - value: 272.02994 + value: -153.38306 objectReference: {fileID: 0} - target: {fileID: 1030999575, guid: abc00000000002520808867098156923, type: 3} propertyPath: m_LocalRotation.w @@ -302711,6 +305299,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002520808867098156923, type: 3} +--- !u!4 &1836047209 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999575, guid: abc00000000002520808867098156923, + type: 3} + m_PrefabInstance: {fileID: 1836047208} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1836094167 PrefabInstance: m_ObjectHideFlags: 0 @@ -303247,7 +305841,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -303272,22 +305866,22 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8667002 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 184.64 + value: -92.243 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 8.162247 + value: -2.4577532 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 457.39 + value: 31.97702 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -303329,6 +305923,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1838998610 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1838998609} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1839099834 PrefabInstance: m_ObjectHideFlags: 0 @@ -303444,7 +306044,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 1161484236} m_Modifications: - target: {fileID: 780589514945628647, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} @@ -303465,17 +306065,17 @@ PrefabInstance: - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} propertyPath: m_LocalPosition.x - value: 82.40375 + value: -194.47925 objectReference: {fileID: 0} - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} propertyPath: m_LocalPosition.y - value: 15.011145 + value: 4.3911448 objectReference: {fileID: 0} - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} propertyPath: m_LocalPosition.z - value: -5.233963 + value: -430.64697 objectReference: {fileID: 0} - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} @@ -303517,6 +306117,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} +--- !u!4 &1840767892 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, + type: 3} + m_PrefabInstance: {fileID: 1840767891} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1840979546 PrefabInstance: m_ObjectHideFlags: 0 @@ -303627,7 +306233,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975110, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_Name @@ -303643,27 +306249,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalScale.x - value: 16.558304 + value: 16.558308 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalScale.y - value: 16.558292 + value: 16.558296 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalScale.z - value: 16.558304 + value: 16.558308 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.x - value: -304.14587 + value: -581.0289 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.y - value: 32.401405 + value: 21.781406 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalPosition.z - value: 1510.2921 + value: 1084.8792 objectReference: {fileID: 0} - target: {fileID: 1030975111, guid: abc00000000007387135349448011318, type: 3} propertyPath: m_LocalRotation.w @@ -303710,6 +306316,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000007387135349448011318, type: 3} +--- !u!4 &1841410168 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975111, guid: abc00000000007387135349448011318, + type: 3} + m_PrefabInstance: {fileID: 1841410167} + m_PrefabAsset: {fileID: 0} --- !u!1 &1842175317 GameObject: m_ObjectHideFlags: 0 @@ -304213,13 +306825,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2460909696993888973, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_Name value: PF_PebblesGroup_02 objectReference: {fileID: 0} + - target: {fileID: 2460909696993888973, guid: 4757466a2a1d0b24a953b5fe393cbdc8, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_RootOrder @@ -304228,32 +306845,32 @@ PrefabInstance: - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalScale.x - value: 1.99 + value: 1.9899998 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalScale.y - value: 1.99 + value: 1.9900005 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalScale.z - value: 1.99 + value: 1.9900002 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalPosition.x - value: 361.76355 + value: 84.880554 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalPosition.y - value: 1.771 + value: -8.849 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} propertyPath: m_LocalPosition.z - value: 421.612 + value: -3.8009949 objectReference: {fileID: 0} - target: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} @@ -304295,6 +306912,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 4757466a2a1d0b24a953b5fe393cbdc8, type: 3} +--- !u!4 &1845841491 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2985104766407987319, guid: 4757466a2a1d0b24a953b5fe393cbdc8, + type: 3} + m_PrefabInstance: {fileID: 1845841490} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1847811729 PrefabInstance: m_ObjectHideFlags: 0 @@ -305360,7 +307983,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999626, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_Name @@ -305388,15 +308011,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.x - value: 286.57086 + value: 9.687866 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.y - value: 23.73 + value: 13.11 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalPosition.z - value: 180.10588 + value: -245.30711 objectReference: {fileID: 0} - target: {fileID: 1030999627, guid: abc00000000017959901563305719393, type: 3} propertyPath: m_LocalRotation.w @@ -305443,6 +308066,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000017959901563305719393, type: 3} +--- !u!4 &1853907914 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999627, guid: abc00000000017959901563305719393, + type: 3} + m_PrefabInstance: {fileID: 1853907913} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1854705438 PrefabInstance: m_ObjectHideFlags: 0 @@ -306219,7 +308848,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -306247,15 +308876,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 455.42 + value: 178.53702 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.06 + value: 18.439999 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 117.39 + value: -308.023 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -306306,6 +308935,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1859638225 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1859638224} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1860929629 PrefabInstance: m_ObjectHideFlags: 0 @@ -306396,7 +309031,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -306412,7 +309047,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.476122 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -306424,19 +309059,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 485.38 + value: 208.49701 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.51 + value: 18.89 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 128.48 + value: -296.93298 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w - value: 0.91228515 + value: 0.9122852 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.x @@ -306444,7 +309079,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.y - value: -0.40955555 + value: -0.40955558 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.z @@ -306483,6 +309118,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1861418101 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1861418100} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1861432987 PrefabInstance: m_ObjectHideFlags: 0 @@ -309022,7 +311663,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -309038,7 +311679,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.x - value: 2.4761221 + value: 2.4761217 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalScale.y @@ -309050,15 +311691,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 483.77 + value: 206.887 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.3 + value: 18.68 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 127.17 + value: -298.24298 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -309109,13 +311750,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &1879437728 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 1879437727} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1880305737 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} @@ -309125,17 +311772,17 @@ PrefabInstance: - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} propertyPath: m_LocalPosition.x - value: 114.9 + value: -161.983 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} propertyPath: m_LocalPosition.y - value: 99.2 + value: 88.579994 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} propertyPath: m_LocalPosition.z - value: 352.97 + value: -72.44299 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} @@ -309150,12 +311797,12 @@ PrefabInstance: - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} propertyPath: m_LocalRotation.y - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} propertyPath: m_LocalRotation.z - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} @@ -309177,11 +311824,22 @@ PrefabInstance: propertyPath: m_Name value: P_Crows_Orbit objectReference: {fileID: 0} + - target: {fileID: 5902143773153862722, guid: 6140aabb4832aa3428194a93a84a20ec, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6140aabb4832aa3428194a93a84a20ec, type: 3} +--- !u!4 &1880305738 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5902143773153862721, guid: 6140aabb4832aa3428194a93a84a20ec, + type: 3} + m_PrefabInstance: {fileID: 1880305737} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1880797272 PrefabInstance: m_ObjectHideFlags: 0 @@ -309676,7 +312334,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 417968349524012222, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -309691,7 +312349,7 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalScale.x - value: 1.2687 + value: 1.2687002 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -309701,22 +312359,22 @@ PrefabInstance: - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalScale.z - value: 1.2687 + value: 1.2687002 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.x - value: 202.92 + value: -73.963 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.y - value: 49.73 + value: 39.11 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} propertyPath: m_LocalPosition.z - value: 44.52 + value: -380.893 objectReference: {fileID: 0} - target: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} @@ -309758,6 +312416,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9ebdb7554885e8e4f92d463b2de0426c, type: 3} +--- !u!4 &1885478763 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1046870667163366916, guid: 9ebdb7554885e8e4f92d463b2de0426c, + type: 3} + m_PrefabInstance: {fileID: 1885478762} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1886256379 PrefabInstance: m_ObjectHideFlags: 0 @@ -311432,7 +314096,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -311447,7 +314111,7 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.x - value: 6.958815 + value: 6.9588137 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -311457,22 +314121,22 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 6.958815 + value: 6.9588156 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 332.71 + value: 55.826996 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 2.96 + value: -7.66 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 377.85 + value: -47.56299 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -311514,6 +314178,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &1899546594 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 1899546593} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1901198586 PrefabInstance: m_ObjectHideFlags: 0 @@ -312996,7 +315666,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981059, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_Name @@ -313012,7 +315682,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalScale.x - value: 44.84131 + value: 44.8413 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalScale.y @@ -313020,19 +315690,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalScale.z - value: 44.84131 + value: 44.8413 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.x - value: 155.4 + value: -121.483 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.y - value: 85.2 + value: 74.579994 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalPosition.z - value: -20.4 + value: -445.813 objectReference: {fileID: 0} - target: {fileID: 1030981060, guid: abc00000000005992521218887334492, type: 3} propertyPath: m_LocalRotation.w @@ -313083,6 +315753,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005992521218887334492, type: 3} +--- !u!4 &1911207393 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981060, guid: abc00000000005992521218887334492, + type: 3} + m_PrefabInstance: {fileID: 1911207392} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1911208672 PrefabInstance: m_ObjectHideFlags: 0 @@ -313607,7 +316283,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -313617,17 +316293,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 343.97543 + value: 67.09244 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 2.54692 + value: -8.07308 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 290.45804 + value: -134.95496 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -313674,6 +316350,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1914147215 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1914147214} + m_PrefabAsset: {fileID: 0} --- !u!43 &1915017318 Mesh: m_ObjectHideFlags: 0 @@ -313845,7 +316527,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -313865,22 +316547,22 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.z - value: 3.3951845 + value: 3.3951852 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 187.32 + value: -89.56299 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 5.998 + value: -4.6219997 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 435.7 + value: 10.287018 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -313890,7 +316572,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.x - value: 0.026430976 + value: 0.026430968 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -313900,7 +316582,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.z - value: -0.0054312334 + value: -0.0054312325 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -313927,6 +316609,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1916241303 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1916241302} + m_PrefabAsset: {fileID: 0} --- !u!1 &1916248003 GameObject: m_ObjectHideFlags: 0 @@ -314038,12 +316726,16 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030998937, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_Name value: PF_LionChest objectReference: {fileID: 0} + - target: {fileID: 1030998937, guid: abc00000000000122685398679938398, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_RootOrder value: 46 @@ -314062,15 +316754,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalPosition.x - value: -19.42 + value: -296.303 objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalPosition.y - value: 43.65 + value: 33.030003 objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalPosition.z - value: 199.02 + value: -226.39299 objectReference: {fileID: 0} - target: {fileID: 1030998938, guid: abc00000000000122685398679938398, type: 3} propertyPath: m_LocalRotation.w @@ -314105,6 +316797,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000000122685398679938398, type: 3} +--- !u!4 &1916369599 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030998938, guid: abc00000000000122685398679938398, + type: 3} + m_PrefabInstance: {fileID: 1916369598} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1917087524 PrefabInstance: m_ObjectHideFlags: 0 @@ -315188,7 +317886,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3507639427994242121, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -315208,27 +317906,27 @@ PrefabInstance: - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.y - value: 2.4355 + value: 2.4355004 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalScale.z - value: 2.4355 + value: 2.4354994 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.x - value: 255.03 + value: -21.852997 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.y - value: 1.95 + value: -8.67 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} propertyPath: m_LocalPosition.z - value: 229.06 + value: -196.353 objectReference: {fileID: 0} - target: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} @@ -315270,6 +317968,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 060eddda13880aa4bbd81b695e7e8199, type: 3} +--- !u!4 &1930393748 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4316264652140975859, guid: 060eddda13880aa4bbd81b695e7e8199, + type: 3} + m_PrefabInstance: {fileID: 1930393747} + m_PrefabAsset: {fileID: 0} --- !u!1 &1931046344 GameObject: m_ObjectHideFlags: 0 @@ -315804,7 +318508,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030983511, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_Name @@ -315816,15 +318520,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.x - value: 235.54 + value: -41.343002 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.y - value: 5 + value: -5.62 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalPosition.z - value: 222.74 + value: -202.67299 objectReference: {fileID: 0} - target: {fileID: 1030983512, guid: abc00000000002233199144111365775, type: 3} propertyPath: m_LocalRotation.w @@ -315859,6 +318563,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002233199144111365775, type: 3} +--- !u!4 &1934991607 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030983512, guid: abc00000000002233199144111365775, + type: 3} + m_PrefabInstance: {fileID: 1934991606} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1935185340 PrefabInstance: m_ObjectHideFlags: 0 @@ -316178,7 +318888,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030981037, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_Name @@ -316190,7 +318900,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalScale.x - value: 2.734375 + value: 2.7343752 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalScale.y @@ -316198,19 +318908,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalScale.z - value: 2.734375 + value: 2.7343752 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.x - value: 18.86 + value: -258.023 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.y - value: 25.331 + value: 14.7109995 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalPosition.z - value: 399.15 + value: -26.263 objectReference: {fileID: 0} - target: {fileID: 1030981038, guid: abc00000000002265888782412133682, type: 3} propertyPath: m_LocalRotation.w @@ -316245,6 +318955,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002265888782412133682, type: 3} +--- !u!4 &1937751177 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030981038, guid: abc00000000002265888782412133682, + type: 3} + m_PrefabInstance: {fileID: 1937751176} + m_PrefabAsset: {fileID: 0} --- !u!1 &1937843086 GameObject: m_ObjectHideFlags: 0 @@ -316470,7 +319186,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -316480,7 +319196,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -316490,22 +319206,22 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.z - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 238.51064 + value: -38.37236 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 5.9 + value: -4.72 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 451.7785 + value: 26.365509 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -316552,6 +319268,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1938436205 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1938436204} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1938788073 PrefabInstance: m_ObjectHideFlags: 0 @@ -316670,13 +319392,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_Name value: PF_Farm_Rock_04 (8) objectReference: {fileID: 0} + - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_RootOrder @@ -316685,7 +319412,7 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.x - value: 4.6982 + value: 4.6981993 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -316695,22 +319422,22 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.z - value: 4.6982 + value: 4.6981997 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 456.32 + value: 179.43701 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 27 + value: 16.380001 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 134.99 + value: -290.42297 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -316752,6 +319479,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &1939676726 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 1939676725} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1940098551 PrefabInstance: m_ObjectHideFlags: 0 @@ -319212,7 +321945,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -319222,17 +321955,17 @@ PrefabInstance: - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.x - value: 295.11218 + value: 18.229187 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.y - value: 5.884 + value: -4.736 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} propertyPath: m_LocalPosition.z - value: 451.28635 + value: 25.873352 objectReference: {fileID: 0} - target: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} @@ -319279,6 +322012,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7113b78a01ebab34fa6deb57b5f14618, type: 3} +--- !u!4 &1955178243 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1693276426836706782, guid: 7113b78a01ebab34fa6deb57b5f14618, + type: 3} + m_PrefabInstance: {fileID: 1955178242} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1956851764 PrefabInstance: m_ObjectHideFlags: 0 @@ -319923,7 +322662,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -319938,7 +322677,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 5.7340837 + value: 5.7340827 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -319948,17 +322687,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 327.01764 + value: 50.134644 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 7.5666966 + value: -3.0533032 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 445.83218 + value: 20.41919 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -320005,6 +322744,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1960276489 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1960276488} + m_PrefabAsset: {fileID: 0} --- !u!1 &1960317774 GameObject: m_ObjectHideFlags: 0 @@ -320937,11 +323682,11 @@ Transform: m_GameObject: {fileID: 1963907732} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -250, y: 0, z: -250} + m_LocalPosition: {x: -526.883, y: -10.62, z: -675.41296} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] - m_Father: {fileID: 0} + m_Father: {fileID: 924913567} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1965912356 PrefabInstance: @@ -321301,7 +324046,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -321311,17 +324056,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 149.078 + value: -127.80499 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 11.181 + value: 0.5609999 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 460.447 + value: 35.033997 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -321368,6 +324113,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &1967553201 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 1967553200} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1968017977 PrefabInstance: m_ObjectHideFlags: 0 @@ -321645,7 +324396,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -321660,17 +324411,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 300.85 + value: 23.96701 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 6.009 + value: -4.611 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 457.49 + value: 32.076996 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -321712,6 +324463,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &1968565420 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 1968565419} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1968717313 PrefabInstance: m_ObjectHideFlags: 0 @@ -322004,7 +324761,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -322014,7 +324771,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.x - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -322024,22 +324781,22 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.z - value: 3.2986536 + value: 3.298654 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 260.64 + value: -16.242981 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 5.956 + value: -4.664 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 430.64 + value: 5.2270203 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -322086,6 +324843,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &1970148702 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 1970148701} + m_PrefabAsset: {fileID: 0} --- !u!1 &1971537192 GameObject: m_ObjectHideFlags: 0 @@ -322551,7 +325314,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030999952, guid: abc00000000010673019102851546360, type: 3} propertyPath: m_Name @@ -322571,19 +325334,19 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030999953, guid: abc00000000010673019102851546360, type: 3} propertyPath: m_LocalScale.z - value: 0.69063 + value: 0.6906301 objectReference: {fileID: 0} - target: {fileID: 1030999953, guid: abc00000000010673019102851546360, type: 3} propertyPath: m_LocalPosition.x - value: 275.58 + value: -1.303009 objectReference: {fileID: 0} - target: {fileID: 1030999953, guid: abc00000000010673019102851546360, type: 3} propertyPath: m_LocalPosition.y - value: 11.73 + value: 1.1099997 objectReference: {fileID: 0} - target: {fileID: 1030999953, guid: abc00000000010673019102851546360, type: 3} propertyPath: m_LocalPosition.z - value: 198.72 + value: -226.693 objectReference: {fileID: 0} - target: {fileID: 1030999953, guid: abc00000000010673019102851546360, type: 3} propertyPath: m_LocalRotation.w @@ -322618,6 +325381,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000010673019102851546360, type: 3} +--- !u!4 &1976818329 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030999953, guid: abc00000000010673019102851546360, + type: 3} + m_PrefabInstance: {fileID: 1976818328} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1978501765 PrefabInstance: m_ObjectHideFlags: 0 @@ -322850,14 +325619,14 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1980329022} serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -276.883, y: -10.62, z: -425.413} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1455935559} - {fileID: 193108213} - m_Father: {fileID: 0} + m_Father: {fileID: 924913567} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1980915220 PrefabInstance: @@ -323952,7 +326721,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -323968,15 +326737,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 393.99002 + value: 117.107025 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.26 + value: -7.3599997 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 658.39606 + value: 232.98306 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -324019,6 +326788,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &1990121974 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 1990121973} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1990593521 PrefabInstance: m_ObjectHideFlags: 0 @@ -324595,7 +327370,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -324610,17 +327385,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 269.16202 + value: -7.720978 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.8979177 + value: -4.722082 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 455.38782 + value: 29.974823 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -324697,7 +327472,7 @@ Transform: m_GameObject: {fileID: 1992667777} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalPosition: {x: -276.883, y: -10.62, z: -425.413} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -324711,7 +327486,7 @@ Transform: - {fileID: 1309884346} - {fileID: 578078410} - {fileID: 225097663} - m_Father: {fileID: 0} + m_Father: {fileID: 924913567} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1994149572 PrefabInstance: @@ -326779,12 +329554,16 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030986237, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_Name value: PF_TowerA_Mid2Window_No_Interior objectReference: {fileID: 0} + - target: {fileID: 1030986237, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_RootOrder value: 13 @@ -326803,15 +329582,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalPosition.x - value: 197.81221 + value: -79.070786 objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalPosition.y - value: 19.74 + value: 9.12 objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalPosition.z - value: 564.68256 + value: 139.26956 objectReference: {fileID: 0} - target: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} propertyPath: m_LocalRotation.w @@ -326846,6 +329625,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: a2b5a266f309bec438edc24f1ac9d991, type: 3} +--- !u!4 &2006293028 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030986238, guid: a2b5a266f309bec438edc24f1ac9d991, + type: 3} + m_PrefabInstance: {fileID: 2006293027} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2006615196 PrefabInstance: m_ObjectHideFlags: 0 @@ -327326,7 +330111,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -327336,7 +330121,7 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.x - value: 3.4041 + value: 3.4040995 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -327351,17 +330136,17 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.x - value: 400.25 + value: 123.367004 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.y - value: 20.38 + value: 9.759999 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.z - value: 190.77 + value: -234.64299 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -327403,11 +330188,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_01 (2) objectReference: {fileID: 0} + - target: {fileID: 8742511295275568211, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} +--- !u!4 &2008569668 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + m_PrefabInstance: {fileID: 2008569667} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2009226807 PrefabInstance: m_ObjectHideFlags: 0 @@ -327753,7 +330549,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -327768,27 +330564,27 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 3.0962856 + value: 3.096285 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.z - value: 3.0962856 + value: 3.096285 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 379.43 + value: 102.547 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: 2.52 + value: -8.1 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 305.6 + value: -119.81299 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -327830,11 +330626,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_07 (4) objectReference: {fileID: 0} + - target: {fileID: 8782862719963060608, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &2010807173 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 2010807172} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2010966875 PrefabInstance: m_ObjectHideFlags: 0 @@ -327945,7 +330752,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7096177191515348560, guid: b0e8a994c72a30044a43619cebcd3201, type: 3} @@ -327985,17 +330792,17 @@ PrefabInstance: - target: {fileID: 7096177191515348561, guid: b0e8a994c72a30044a43619cebcd3201, type: 3} propertyPath: m_LocalPosition.x - value: 164.53 + value: -112.353 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: b0e8a994c72a30044a43619cebcd3201, type: 3} propertyPath: m_LocalPosition.y - value: 8.45 + value: -2.17 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: b0e8a994c72a30044a43619cebcd3201, type: 3} propertyPath: m_LocalPosition.z - value: 498.3 + value: 72.88699 objectReference: {fileID: 0} - target: {fileID: 7096177191515348561, guid: b0e8a994c72a30044a43619cebcd3201, type: 3} @@ -328042,6 +330849,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b0e8a994c72a30044a43619cebcd3201, type: 3} +--- !u!4 &2011136119 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7096177191515348561, guid: b0e8a994c72a30044a43619cebcd3201, + type: 3} + m_PrefabInstance: {fileID: 2011136118} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2011329505 PrefabInstance: m_ObjectHideFlags: 0 @@ -328397,7 +331210,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -328412,17 +331225,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 281.46472 + value: 4.581726 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.8524303 + value: -4.7675695 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 443.78125 + value: 18.368256 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -328464,6 +331277,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &2014555614 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 2014555613} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2015216829 PrefabInstance: m_ObjectHideFlags: 0 @@ -328628,7 +331447,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974846, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_Name @@ -328652,15 +331471,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.x - value: 473.70325 + value: 196.82025 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.y - value: 30.03 + value: 19.41 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.z - value: 183.37369 + value: -242.0393 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalRotation.w @@ -328695,6 +331514,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012035761949254806564, type: 3} +--- !u!4 &2016467336 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974847, guid: abc00000000012035761949254806564, + type: 3} + m_PrefabInstance: {fileID: 2016467335} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2016540703 PrefabInstance: m_ObjectHideFlags: 0 @@ -331807,7 +334632,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -331817,22 +334642,22 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 359.42 + value: 82.53702 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 7.71 + value: -2.9099998 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 453.18 + value: 27.766998 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.w - value: 0.37650165 + value: 0.37650168 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -331842,7 +334667,7 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalRotation.y - value: 0.9264159 + value: 0.926416 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -331874,6 +334699,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &2035490524 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 2035490523} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2035648731 PrefabInstance: m_ObjectHideFlags: 0 @@ -333749,7 +336580,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974846, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_Name @@ -333773,15 +336604,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.x - value: 468.57 + value: 191.68701 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.y - value: 26.92 + value: 16.3 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalPosition.z - value: 187.39 + value: -238.023 objectReference: {fileID: 0} - target: {fileID: 1030974847, guid: abc00000000012035761949254806564, type: 3} propertyPath: m_LocalRotation.w @@ -333816,6 +336647,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000012035761949254806564, type: 3} +--- !u!4 &2050550973 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974847, guid: abc00000000012035761949254806564, + type: 3} + m_PrefabInstance: {fileID: 2050550972} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2050592456 PrefabInstance: m_ObjectHideFlags: 0 @@ -334803,7 +337640,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1167486005058445278, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -334818,7 +337655,7 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalScale.x - value: 5.6599 + value: 5.659901 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -334833,17 +337670,17 @@ PrefabInstance: - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.x - value: 214.27 + value: -62.61299 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.y - value: 2.69 + value: -7.93 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} propertyPath: m_LocalPosition.z - value: 156.47 + value: -268.943 objectReference: {fileID: 0} - target: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} @@ -334885,6 +337722,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 80a85b7bde86be147abcc7a76351d282, type: 3} +--- !u!4 &2054705981 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1979454058818159972, guid: 80a85b7bde86be147abcc7a76351d282, + type: 3} + m_PrefabInstance: {fileID: 2054705980} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2056171199 PrefabInstance: m_ObjectHideFlags: 0 @@ -339046,7 +341889,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7208210850540373309, guid: 576399387db3a094dac0ac5e938971ef, type: 3} @@ -339071,17 +341914,17 @@ PrefabInstance: - target: {fileID: 8017363084888973191, guid: 576399387db3a094dac0ac5e938971ef, type: 3} propertyPath: m_LocalPosition.x - value: 330.31 + value: 53.427002 objectReference: {fileID: 0} - target: {fileID: 8017363084888973191, guid: 576399387db3a094dac0ac5e938971ef, type: 3} propertyPath: m_LocalPosition.y - value: 1.88 + value: -8.74 objectReference: {fileID: 0} - target: {fileID: 8017363084888973191, guid: 576399387db3a094dac0ac5e938971ef, type: 3} propertyPath: m_LocalPosition.z - value: 330.92 + value: -94.49298 objectReference: {fileID: 0} - target: {fileID: 8017363084888973191, guid: 576399387db3a094dac0ac5e938971ef, type: 3} @@ -339123,6 +341966,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 576399387db3a094dac0ac5e938971ef, type: 3} +--- !u!4 &2085353196 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8017363084888973191, guid: 576399387db3a094dac0ac5e938971ef, + type: 3} + m_PrefabInstance: {fileID: 2085353195} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2086433297 PrefabInstance: m_ObjectHideFlags: 0 @@ -339985,7 +342834,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -340000,7 +342849,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalScale.y - value: 5.7340837 + value: 5.7340827 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -340010,17 +342859,17 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.x - value: 352.5225 + value: 75.639496 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.y - value: 7.22 + value: -3.4 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalPosition.z - value: 446.00305 + value: 20.590057 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -340030,7 +342879,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.x - value: -0.054928157 + value: -0.054928165 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -340040,7 +342889,7 @@ PrefabInstance: - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} propertyPath: m_LocalRotation.z - value: -0.09167613 + value: -0.091676146 objectReference: {fileID: 0} - target: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} @@ -340067,6 +342916,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7cb65767d8a11384c89dd84ced09e04c, type: 3} +--- !u!4 &2093588468 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 143733496109208490, guid: 7cb65767d8a11384c89dd84ced09e04c, + type: 3} + m_PrefabInstance: {fileID: 2093588467} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2096983397 PrefabInstance: m_ObjectHideFlags: 0 @@ -340157,7 +343012,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030975991, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_Name @@ -340169,7 +343024,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalScale.x - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalScale.y @@ -340177,23 +343032,23 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalScale.z - value: 1.5 + value: 1.4999998 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.x - value: 203.72891 + value: -73.15408 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.y - value: 36.834812 + value: 26.214813 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalPosition.z - value: 570.2012 + value: 144.78818 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.w - value: 0.8609175 + value: 0.86091757 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.x @@ -340201,7 +343056,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.y - value: 0.5087445 + value: 0.50874454 objectReference: {fileID: 0} - target: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} propertyPath: m_LocalRotation.z @@ -340224,6 +343079,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6bf4ffe514d80474ba980db4ec57d61c, type: 3} +--- !u!4 &2097181720 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030975992, guid: 6bf4ffe514d80474ba980db4ec57d61c, + type: 3} + m_PrefabInstance: {fileID: 2097181719} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2097628969 PrefabInstance: m_ObjectHideFlags: 0 @@ -340940,7 +343801,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -340950,17 +343811,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 342.463 + value: 65.58002 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 2.641 + value: -7.979 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 288.483 + value: -136.93 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -341007,6 +343868,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &2102318831 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 2102318830} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2102627909 PrefabInstance: m_ObjectHideFlags: 0 @@ -341638,7 +344505,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030973594, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_Name @@ -341666,15 +344533,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.x - value: 452.49 + value: 175.607 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.y - value: 29.78 + value: 19.16 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalPosition.z - value: 121.1 + value: -304.313 objectReference: {fileID: 0} - target: {fileID: 1030973595, guid: abc00000000002043443485875583960, type: 3} propertyPath: m_LocalRotation.w @@ -341725,6 +344592,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000002043443485875583960, type: 3} +--- !u!4 &2104601619 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030973595, guid: abc00000000002043443485875583960, + type: 3} + m_PrefabInstance: {fileID: 2104601618} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2104841568 PrefabInstance: m_ObjectHideFlags: 0 @@ -342801,7 +345674,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030979010, guid: abc00000000018077316213304886434, type: 3} propertyPath: m_Name @@ -342817,15 +345690,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030979011, guid: abc00000000018077316213304886434, type: 3} propertyPath: m_LocalPosition.x - value: 225.47 + value: -51.412994 objectReference: {fileID: 0} - target: {fileID: 1030979011, guid: abc00000000018077316213304886434, type: 3} propertyPath: m_LocalPosition.y - value: 29.66 + value: 19.04 objectReference: {fileID: 0} - target: {fileID: 1030979011, guid: abc00000000018077316213304886434, type: 3} propertyPath: m_LocalPosition.z - value: 232.93 + value: -192.483 objectReference: {fileID: 0} - target: {fileID: 1030979011, guid: abc00000000018077316213304886434, type: 3} propertyPath: m_LocalRotation.w @@ -342884,6 +345757,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000018077316213304886434, type: 3} +--- !u!4 &2111198292 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030979011, guid: abc00000000018077316213304886434, + type: 3} + m_PrefabInstance: {fileID: 2111198291} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2112327639 PrefabInstance: m_ObjectHideFlags: 0 @@ -344168,7 +347047,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974638, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_Name @@ -344184,15 +347063,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.x - value: 400.05 + value: 123.16699 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.y - value: 3.57 + value: -7.05 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalPosition.z - value: 632.92 + value: 207.50699 objectReference: {fileID: 0} - target: {fileID: 1030974639, guid: abc00000000005147159390214354407, type: 3} propertyPath: m_LocalRotation.w @@ -344235,13 +347114,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000005147159390214354407, type: 3} +--- !u!4 &2118766773 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974639, guid: abc00000000005147159390214354407, + type: 3} + m_PrefabInstance: {fileID: 2118766772} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2119070335 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -344251,52 +347136,52 @@ PrefabInstance: - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.x - value: 7.402008 + value: 7.402007 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.y - value: 7.402008 + value: 7.4020057 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalScale.z - value: 7.402008 + value: 7.402005 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.x - value: 259.31 + value: -17.572998 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.y - value: 9.39 + value: -1.2299995 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalPosition.z - value: 513.03 + value: 87.617035 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.w - value: -0.118121326 + value: -0.11812133 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.x - value: 0.79948795 + value: 0.799488 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.y - value: -0.073371775 + value: -0.07337178 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} propertyPath: m_LocalRotation.z - value: 0.58436537 + value: 0.5843654 objectReference: {fileID: 0} - target: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} @@ -344323,6 +347208,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, type: 3} +--- !u!4 &2119070336 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8221447669316179689, guid: 9db0cb0a3c845c942ae79dd22c23c2cd, + type: 3} + m_PrefabInstance: {fileID: 2119070335} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2120506581 PrefabInstance: m_ObjectHideFlags: 0 @@ -345209,7 +348100,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -345224,17 +348115,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 303.681 + value: 26.798004 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 5.924 + value: -4.696 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 447.141 + value: 21.727997 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -345244,7 +348135,7 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalRotation.x - value: -0.023453485 + value: -0.023453489 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -345254,7 +348145,7 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalRotation.z - value: 0.017630724 + value: 0.017630728 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -345276,13 +348167,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &2126932520 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 2126932519} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2127423243 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 574122265314155589, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -345307,22 +348204,22 @@ PrefabInstance: - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalScale.z - value: 2.8667 + value: 2.8667002 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.x - value: 208.66 + value: -68.22299 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.y - value: 6.99 + value: -3.63 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} propertyPath: m_LocalPosition.z - value: 455.32 + value: 29.907013 objectReference: {fileID: 0} - target: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} @@ -345364,6 +348261,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: d02cf8341ed587b44a50353a8827dc01, type: 3} +--- !u!4 &2127423244 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 917715643824932607, guid: d02cf8341ed587b44a50353a8827dc01, + type: 3} + m_PrefabInstance: {fileID: 2127423243} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2128648130 PrefabInstance: m_ObjectHideFlags: 0 @@ -346163,12 +349066,16 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1030974488, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_Name value: PF_Watchtower_01 (5) objectReference: {fileID: 0} + - target: {fileID: 1030974488, guid: abc00000000004934315601898454205, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 1030974488, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_StaticEditorFlags value: 2147483647 @@ -346179,15 +349086,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalPosition.x - value: 448.46 + value: 171.577 objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalPosition.y - value: 27.81 + value: 17.189999 objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalPosition.z - value: 156.65 + value: -268.763 objectReference: {fileID: 0} - target: {fileID: 1030974489, guid: abc00000000004934315601898454205, type: 3} propertyPath: m_LocalRotation.w @@ -346238,13 +349145,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: abc00000000004934315601898454205, type: 3} +--- !u!4 &2135965577 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1030974489, guid: abc00000000004934315601898454205, + type: 3} + m_PrefabInstance: {fileID: 2135965576} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2137924501 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 3996047738541072865, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -346259,17 +349172,17 @@ PrefabInstance: - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.x - value: 345.49304 + value: 68.61005 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.y - value: 2.5413725 + value: -8.078628 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} propertyPath: m_LocalPosition.z - value: 292.54602 + value: -132.86697 objectReference: {fileID: 0} - target: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} @@ -346311,13 +349224,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 81c52d98402312741a773c6cc2d57aee, type: 3} +--- !u!4 &2137924502 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4341189199644212059, guid: 81c52d98402312741a773c6cc2d57aee, + type: 3} + m_PrefabInstance: {fileID: 2137924501} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2138051523 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -346327,17 +349246,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 151.48 + value: -125.403 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 11.15 + value: 0.52999973 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 456.99 + value: 31.576996 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -346384,13 +349303,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &2138051524 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 2138051523} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2138094638 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -346400,12 +349325,12 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.x - value: 2.0253 + value: 2.0253003 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalScale.y - value: 2.0253 + value: 2.0253005 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -346415,37 +349340,37 @@ PrefabInstance: - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.x - value: 368.48 + value: 91.597015 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.y - value: -0.78 + value: -11.4 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalPosition.z - value: 357.7 + value: -67.71298 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.w - value: 0.8643186 + value: 0.86431867 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.x - value: 0.094583556 + value: 0.09458356 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.y - value: 0.49146992 + value: 0.49146995 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} propertyPath: m_LocalRotation.z - value: -0.04964426 + value: -0.049644265 objectReference: {fileID: 0} - target: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} @@ -346467,11 +349392,22 @@ PrefabInstance: propertyPath: m_Name value: PF_Farm_Rock_07 (6) objectReference: {fileID: 0} + - target: {fileID: 8782862719963060608, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7efb6c7defe27842b28f616f77800e2, type: 3} +--- !u!4 &2138094639 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8262187427248669498, guid: b7efb6c7defe27842b28f616f77800e2, + type: 3} + m_PrefabInstance: {fileID: 2138094638} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2138902843 PrefabInstance: m_ObjectHideFlags: 0 @@ -346597,7 +349533,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -346607,17 +349543,17 @@ PrefabInstance: - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.x - value: 303.3898 + value: 26.506805 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.y - value: 6.089 + value: -4.5309997 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} propertyPath: m_LocalPosition.z - value: 460.69263 + value: 35.279633 objectReference: {fileID: 0} - target: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} @@ -346664,6 +349600,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fe92e407cc135064184e4631b8a73ab5, type: 3} +--- !u!4 &2139160829 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1317220275936433143, guid: fe92e407cc135064184e4631b8a73ab5, + type: 3} + m_PrefabInstance: {fileID: 2139160828} + m_PrefabAsset: {fileID: 0} --- !u!1001 &2139400428 PrefabInstance: m_ObjectHideFlags: 0 @@ -351018,7 +353960,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2015220337160487582, guid: 261b4b74499d74c479b8cc7f47b43ef8, type: 3} @@ -351054,17 +353996,17 @@ PrefabInstance: - target: {fileID: 3195404736129338683, guid: 261b4b74499d74c479b8cc7f47b43ef8, type: 3} propertyPath: m_LocalPosition.x - value: -7.39 + value: -284.273 objectReference: {fileID: 0} - target: {fileID: 3195404736129338683, guid: 261b4b74499d74c479b8cc7f47b43ef8, type: 3} propertyPath: m_LocalPosition.y - value: 43.8 + value: 33.18 objectReference: {fileID: 0} - target: {fileID: 3195404736129338683, guid: 261b4b74499d74c479b8cc7f47b43ef8, type: 3} propertyPath: m_LocalPosition.z - value: 185.91 + value: -239.50299 objectReference: {fileID: 0} - target: {fileID: 3195404736129338683, guid: 261b4b74499d74c479b8cc7f47b43ef8, type: 3} @@ -351111,13 +354053,19 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 261b4b74499d74c479b8cc7f47b43ef8, type: 3} +--- !u!4 &3157835672567319899 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3195404736129338683, guid: 261b4b74499d74c479b8cc7f47b43ef8, + type: 3} + m_PrefabInstance: {fileID: 3157835672567319898} + m_PrefabAsset: {fileID: 0} --- !u!1001 &3685549447243067346 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 1161484236} m_Modifications: - target: {fileID: 1556353142928659803, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} @@ -351137,7 +354085,12 @@ PrefabInstance: - target: {fileID: 3848820457397729443, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} propertyPath: m_Name - value: Level + value: Lighting + objectReference: {fileID: 0} + - target: {fileID: 3848820457397729443, guid: a12c6e1654f5b1e4582cbb25913f7012, + type: 3} + propertyPath: m_IsActive + value: 1 objectReference: {fileID: 0} - target: {fileID: 5495840958716898377, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} @@ -351147,17 +354100,17 @@ PrefabInstance: - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} propertyPath: m_LocalPosition.x - value: 82.40375 + value: -194.47925 objectReference: {fileID: 0} - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} propertyPath: m_LocalPosition.y - value: 15.011145 + value: 4.3911448 objectReference: {fileID: 0} - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} propertyPath: m_LocalPosition.z - value: -5.233963 + value: -430.64697 objectReference: {fileID: 0} - target: {fileID: 8742665400843222747, guid: a12c6e1654f5b1e4582cbb25913f7012, type: 3} @@ -351280,7 +354233,7 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 4041489401516449705, guid: 1dd899475c64d624391696ae9cc5d12e, type: 3} @@ -351290,17 +354243,17 @@ PrefabInstance: - target: {fileID: 4041489401516449705, guid: 1dd899475c64d624391696ae9cc5d12e, type: 3} propertyPath: m_LocalPosition.x - value: 116.75 + value: -160.133 objectReference: {fileID: 0} - target: {fileID: 4041489401516449705, guid: 1dd899475c64d624391696ae9cc5d12e, type: 3} propertyPath: m_LocalPosition.y - value: 26.453 + value: 15.832999 objectReference: {fileID: 0} - target: {fileID: 4041489401516449705, guid: 1dd899475c64d624391696ae9cc5d12e, type: 3} propertyPath: m_LocalPosition.z - value: 347.36 + value: -78.05301 objectReference: {fileID: 0} - target: {fileID: 4041489401516449705, guid: 1dd899475c64d624391696ae9cc5d12e, type: 3} @@ -351352,6 +354305,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 1dd899475c64d624391696ae9cc5d12e, type: 3} +--- !u!4 &3782493150624190878 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4041489401516449705, guid: 1dd899475c64d624391696ae9cc5d12e, + type: 3} + m_PrefabInstance: {fileID: 3782493150624190877} + m_PrefabAsset: {fileID: 0} --- !u!1001 &3907953292333205534 PrefabInstance: m_ObjectHideFlags: 0 @@ -351419,13 +354378,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 7078697289181863857, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} propertyPath: m_Name value: SM_FlowerGroup_03 objectReference: {fileID: 0} + - target: {fileID: 7078697289181863857, guid: 6de69b77174426e4a85cf6f6149081f3, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} propertyPath: m_RootOrder @@ -351434,17 +354398,17 @@ PrefabInstance: - target: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} propertyPath: m_LocalPosition.x - value: 318.033 + value: 41.149994 objectReference: {fileID: 0} - target: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} propertyPath: m_LocalPosition.y - value: 10.279895 + value: -0.34010506 objectReference: {fileID: 0} - target: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} propertyPath: m_LocalPosition.z - value: 541.352 + value: 115.938995 objectReference: {fileID: 0} - target: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} @@ -351454,7 +354418,7 @@ PrefabInstance: - target: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} @@ -351486,6 +354450,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6de69b77174426e4a85cf6f6149081f3, type: 3} +--- !u!4 &4716615108431153151 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7599618773393655051, guid: 6de69b77174426e4a85cf6f6149081f3, + type: 3} + m_PrefabInstance: {fileID: 4716615108431153150} + m_PrefabAsset: {fileID: 0} --- !u!1001 &5175752150442764491 PrefabInstance: m_ObjectHideFlags: 0 @@ -351553,13 +354523,18 @@ PrefabInstance: serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 63425624331475598, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} propertyPath: m_Name value: SM_FlowerGroup_04 objectReference: {fileID: 0} + - target: {fileID: 63425624331475598, guid: fb3832db8e9ab5248a5357c0ba72cbe0, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} propertyPath: m_RootOrder @@ -351568,17 +354543,17 @@ PrefabInstance: - target: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} propertyPath: m_LocalPosition.x - value: 297.9505 + value: 21.067505 objectReference: {fileID: 0} - target: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} propertyPath: m_LocalPosition.y - value: 6.394106 + value: -4.225894 objectReference: {fileID: 0} - target: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} propertyPath: m_LocalPosition.z - value: 431.77994 + value: 6.3669434 objectReference: {fileID: 0} - target: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} @@ -351588,7 +354563,7 @@ PrefabInstance: - target: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} @@ -351620,19 +354595,30 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fb3832db8e9ab5248a5357c0ba72cbe0, type: 3} +--- !u!4 &5966913739181167879 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 840631513906085940, guid: fb3832db8e9ab5248a5357c0ba72cbe0, + type: 3} + m_PrefabInstance: {fileID: 5966913739181167878} + m_PrefabAsset: {fileID: 0} --- !u!1001 &7662555389460838465 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: serializedVersion: 3 - m_TransformParent: {fileID: 0} + m_TransformParent: {fileID: 924913567} m_Modifications: - target: {fileID: 2386638353898547712, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} propertyPath: m_Name value: SM_FlowerGroup_02 objectReference: {fileID: 0} + - target: {fileID: 2386638353898547712, guid: 62c10a9cb778124448a9ef06fb699a81, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} propertyPath: m_RootOrder @@ -351641,17 +354627,17 @@ PrefabInstance: - target: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} propertyPath: m_LocalPosition.x - value: 286.55075 + value: 9.667755 objectReference: {fileID: 0} - target: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} propertyPath: m_LocalPosition.y - value: 6.4451356 + value: -4.1748643 objectReference: {fileID: 0} - target: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} propertyPath: m_LocalPosition.z - value: 463.5098 + value: 38.0968 objectReference: {fileID: 0} - target: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} @@ -351661,7 +354647,7 @@ PrefabInstance: - target: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} propertyPath: m_LocalRotation.x - value: 0 + value: -0 objectReference: {fileID: 0} - target: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} @@ -351693,6 +354679,12 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 62c10a9cb778124448a9ef06fb699a81, type: 3} +--- !u!4 &7662555389460838466 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3050302938485518522, guid: 62c10a9cb778124448a9ef06fb699a81, + type: 3} + m_PrefabInstance: {fileID: 7662555389460838465} + m_PrefabAsset: {fileID: 0} --- !u!1001 &7670912150009589089 PrefabInstance: m_ObjectHideFlags: 0 @@ -351835,339 +354827,7 @@ PrefabInstance: SceneRoots: m_ObjectHideFlags: 0 m_Roots: - - {fileID: 2008569667} - - {fileID: 1766231040} - - {fileID: 1604608678} - - {fileID: 387082027} - - {fileID: 204678736} - - {fileID: 1880305737} - - {fileID: 1689579146} - - {fileID: 203951060} - - {fileID: 1494735876} - - {fileID: 69909812} - - {fileID: 1605722211} - - {fileID: 1598540464} - - {fileID: 1576214683} - - {fileID: 2006293027} - - {fileID: 1827509224} - - {fileID: 1082673090} - - {fileID: 363821983} - - {fileID: 1016209076} - - {fileID: 1811409742} - - {fileID: 1205354547} - - {fileID: 1458311076} - - {fileID: 48565483} - - {fileID: 270905933} - - {fileID: 425345242} - - {fileID: 1845841490} - - {fileID: 971844113} - - {fileID: 1939676725} - - {fileID: 359142548} - - {fileID: 431217092} - - {fileID: 716907110} - - {fileID: 2138094638} - - {fileID: 1199475164} - - {fileID: 730360041} - - {fileID: 1797769001} - - {fileID: 645458008} - - {fileID: 670545301} - - {fileID: 2010807172} - - {fileID: 777454229} - - {fileID: 716535652} - - {fileID: 1750533463} - - {fileID: 1616326771} - - {fileID: 1008148017} - - {fileID: 500957046} - - {fileID: 180377871} - - {fileID: 674817758} - - {fileID: 852781757} - - {fileID: 295294522} - - {fileID: 1916369598} - - {fileID: 4716615108431153150} - - {fileID: 5966913739181167878} - - {fileID: 7662555389460838465} - - {fileID: 733417967} - - {fileID: 966016315} - - {fileID: 1489895177} - - {fileID: 937677169} - - {fileID: 770980108} - - {fileID: 1428963469} - - {fileID: 3685549447243067346} - - {fileID: 156412889} - - {fileID: 365740550} - - {fileID: 647775582} - - {fileID: 1859638224} - - {fileID: 1308645757} - - {fileID: 304363755} - - {fileID: 1203890268} - - {fileID: 965950617} - - {fileID: 1323451225} - - {fileID: 1538375735} - - {fileID: 2135965576} - - {fileID: 2139160828} - - {fileID: 305196742} - - {fileID: 1911207392} - - {fileID: 1990121973} - - {fileID: 467583068} - - {fileID: 362726631} - - {fileID: 1320757591} - - {fileID: 1574309749} - - {fileID: 1754060880} - - {fileID: 620748927} - - {fileID: 62003657} - - {fileID: 679722369} - - {fileID: 1491246003} - - {fileID: 120855491} - - {fileID: 578888547} - - {fileID: 2104601618} - - {fileID: 1879437727} - - {fileID: 402021580} - - {fileID: 1582317536} - - {fileID: 1231589927} - - {fileID: 1301323761} - - {fileID: 934548337} - - {fileID: 552197118} - - {fileID: 75486258} - - {fileID: 1271166421} - - {fileID: 1378201772} - - {fileID: 1323126270} - - {fileID: 2111198291} - - {fileID: 3157835672567319898} - - {fileID: 975489033} - - {fileID: 1485661881} - - {fileID: 905893348} - - {fileID: 4228251} - - {fileID: 251496159} - - {fileID: 1853907913} - - {fileID: 1075753645} - - {fileID: 972486843} - - {fileID: 1207237923} - - {fileID: 1794672926} - - {fileID: 1861418100} - - {fileID: 2016467335} - - {fileID: 769660970} - - {fileID: 1673324098} - - {fileID: 870622731} - - {fileID: 730841424} - - {fileID: 1725241599} - - {fileID: 213620347} - - {fileID: 1312475451} - - {fileID: 2126932519} - - {fileID: 752409480} - - {fileID: 510366978} - - {fileID: 2118766772} - - {fileID: 983634955} - - {fileID: 1841410167} - - {fileID: 102219931} - - {fileID: 1505873626} - - {fileID: 1102814429} - - {fileID: 995735328} - - {fileID: 246035557} - - {fileID: 253945880} - - {fileID: 859386930} - - {fileID: 912291012} - - {fileID: 1558953037} - - {fileID: 1338928416} - - {fileID: 1225366176} - - {fileID: 1316258470} - - {fileID: 1044754026} - - {fileID: 1815961486} - - {fileID: 409203491} - - {fileID: 1620187758} - - {fileID: 165375525} - - {fileID: 1000891427} - - {fileID: 105774501} - - {fileID: 1564396562} - - {fileID: 1594340266} - - {fileID: 900346571} - - {fileID: 1835492169} - - {fileID: 475275678} - - {fileID: 1178512710} - - {fileID: 253424103} - - {fileID: 920187742} - - {fileID: 1968565419} - - {fileID: 476754146} - - {fileID: 96962445} - - {fileID: 1370640272} - - {fileID: 785969629} - - {fileID: 1277862868} - - {fileID: 154907480} - - {fileID: 1491402280} - - {fileID: 831152983} - - {fileID: 947893614} - - {fileID: 1633750226} - - {fileID: 777319707} - - {fileID: 322221773} - - {fileID: 460232055} - - {fileID: 436911637} - - {fileID: 2050550972} - - {fileID: 369351205} - - {fileID: 1351233022} - - {fileID: 216897521} - - {fileID: 491660074} - - {fileID: 98067176} - - {fileID: 541036690} - - {fileID: 1549385079} - - {fileID: 595029798} - - {fileID: 44367049} - - {fileID: 427605186} - - {fileID: 971556664} - - {fileID: 1685627210} - - {fileID: 172105764} - - {fileID: 623943839} - - {fileID: 1417106530} - - {fileID: 947649504} - - {fileID: 1141527309} - - {fileID: 1168581953} - - {fileID: 714954667} - - {fileID: 1374660094} - - {fileID: 41779357} - - {fileID: 1447405961} - - {fileID: 1102757071} - - {fileID: 483971655} - - {fileID: 1459000275} - - {fileID: 226261319} - - {fileID: 237357165} - - {fileID: 1980329023} - - {fileID: 1992667778} - - {fileID: 827438046} - - {fileID: 443590041} - - {fileID: 640178356} - - {fileID: 1158410899} - - {fileID: 452341654} - - {fileID: 1963907735} - - {fileID: 952817406} - - {fileID: 1261968244} - - {fileID: 1836047208} - - {fileID: 616541203} - - {fileID: 980917904} - - {fileID: 1336020837} - - {fileID: 1955178242} - - {fileID: 1021580853} - - {fileID: 1073264053} - - {fileID: 1524663921} - - {fileID: 238605240} - - {fileID: 264346564} - - {fileID: 2014555613} - - {fileID: 130705622} - - {fileID: 154212661} - - {fileID: 1518711831} - - {fileID: 1937751176} - - {fileID: 1148390885} - - {fileID: 1307491094} - - {fileID: 300924586} - - {fileID: 1085813782} - - {fileID: 840921882} - - {fileID: 1021549976} - - {fileID: 1914147214} - - {fileID: 2102318830} - - {fileID: 2137924501} - - {fileID: 83449964} - - {fileID: 174106327} - - {fileID: 660912350} - - {fileID: 1201119089} - - {fileID: 1379594940} - - {fileID: 1992600882} - - {fileID: 2119070335} - - {fileID: 1229429353} - - {fileID: 1938436204} - - {fileID: 1024649954} - - {fileID: 428197745} - - {fileID: 1294924599} - - {fileID: 1970148701} - - {fileID: 1284100087} - - {fileID: 1714497007} - - {fileID: 274668703} - - {fileID: 571239384} - - {fileID: 389526714} - - {fileID: 1703048008} - - {fileID: 1899546593} - - {fileID: 1718072936} - - {fileID: 1335623458} - - {fileID: 1428553770} - - {fileID: 1721618168} - - {fileID: 1794667948} - - {fileID: 531669758} - - {fileID: 1662653003} - - {fileID: 932675540} - - {fileID: 1766596878} - - {fileID: 701012226} - - {fileID: 1960276488} - - {fileID: 605492296} - - {fileID: 806230348} - - {fileID: 96149303} - - {fileID: 2035490523} - - {fileID: 1789470967} - - {fileID: 995451742} - - {fileID: 763374650} - - {fileID: 257126385} - - {fileID: 2093588467} - - {fileID: 258267130} - - {fileID: 561315620} - - {fileID: 1885478762} - - {fileID: 1022747153} - - {fileID: 1375418540} - - {fileID: 1916241302} - - {fileID: 1423658835} - - {fileID: 1838998609} - - {fileID: 66748383} - - {fileID: 541369376} - - {fileID: 2127423243} - - {fileID: 35127910} - - {fileID: 1504038066} - - {fileID: 1813970849} - - {fileID: 803235118} - - {fileID: 1363022802} - - {fileID: 1561985040} - - {fileID: 518765249} - - {fileID: 2097181719} - - {fileID: 1567238209} - - {fileID: 380281623} - - {fileID: 74303138} - - {fileID: 1148355303} - - {fileID: 1134424492} - - {fileID: 301680959} - - {fileID: 99201215} - - {fileID: 338512123} - - {fileID: 1708383208} - - {fileID: 35098826} - - {fileID: 379207960} - - {fileID: 1245379638} - - {fileID: 525502126} - - {fileID: 1180693453} - - {fileID: 847106097} - - {fileID: 946849372} - - {fileID: 144270177} - - {fileID: 1371096064} - - {fileID: 1159707660} - - {fileID: 341086812} - - {fileID: 2138051523} - - {fileID: 1967553200} - - {fileID: 1341845836} - - {fileID: 1129303024} - - {fileID: 148921216} - - {fileID: 236268186} + - {fileID: 1161484236} - {fileID: 757714195} - - {fileID: 3782493150624190877} - - {fileID: 615549324} - - {fileID: 1976818328} - - {fileID: 1162118390} - - {fileID: 1723685648} - - {fileID: 470455924} - - {fileID: 1700626135} - - {fileID: 1930393747} - - {fileID: 1263936374} - - {fileID: 997739218} - - {fileID: 719819897} - - {fileID: 2054705980} - - {fileID: 1934991606} - - {fileID: 846478735} - - {fileID: 1796007250} - - {fileID: 409101589} - - {fileID: 2085353195} - - {fileID: 1193427798} - - {fileID: 1117209389} - - {fileID: 2011136118} - - {fileID: 628511153} - - {fileID: 1840767891} - - {fileID: 1623487554} + - {fileID: 812152301} + - {fileID: 1282845313} diff --git a/Assets/Resources.meta b/Assets/Resources.meta new file mode 100644 index 00000000..5e943006 --- /dev/null +++ b/Assets/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cd77de571712a0c4abc20d1d4cb1ae05 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/DOTweenSettings.asset b/Assets/Resources/DOTweenSettings.asset new file mode 100644 index 00000000..62ebbaf2 --- /dev/null +++ b/Assets/Resources/DOTweenSettings.asset @@ -0,0 +1,54 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 16995157, guid: a811bde74b26b53498b4f6d872b09b6d, type: 3} + m_Name: DOTweenSettings + m_EditorClassIdentifier: + useSafeMode: 1 + safeModeOptions: + logBehaviour: 2 + nestedTweenFailureBehaviour: 0 + timeScale: 1 + unscaledTimeScale: 1 + useSmoothDeltaTime: 0 + maxSmoothUnscaledTime: 0.15 + rewindCallbackMode: 0 + showUnityEditorReport: 0 + logBehaviour: 0 + drawGizmos: 1 + defaultRecyclable: 0 + defaultAutoPlay: 3 + defaultUpdateType: 0 + defaultTimeScaleIndependent: 0 + defaultEaseType: 6 + defaultEaseOvershootOrAmplitude: 1.70158 + defaultEasePeriod: 0 + defaultAutoKill: 1 + defaultLoopType: 0 + debugMode: 0 + debugStoreTargetId: 1 + showPreviewPanel: 1 + storeSettingsLocation: 0 + modules: + showPanel: 0 + audioEnabled: 1 + physicsEnabled: 1 + physics2DEnabled: 1 + spriteEnabled: 1 + uiEnabled: 1 + textMeshProEnabled: 0 + tk2DEnabled: 0 + deAudioEnabled: 0 + deUnityExtendedEnabled: 0 + epoOutlineEnabled: 0 + createASMDEF: 0 + showPlayingTweens: 0 + showPausedTweens: 0 diff --git a/Assets/Resources/DOTweenSettings.asset.meta b/Assets/Resources/DOTweenSettings.asset.meta new file mode 100644 index 00000000..fadcc80c --- /dev/null +++ b/Assets/Resources/DOTweenSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2027345cdae14e64d9984b51ef5a47af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 00000000..5e66c87b --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17c8021a046c0184ea9abe7fdff3f102 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Resources.meta b/Assets/Scripts/Resources.meta new file mode 100644 index 00000000..b826641c --- /dev/null +++ b/Assets/Scripts/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ae59d059719d8449802a9e13f9f4da0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Resources/HealthManager.cs b/Assets/Scripts/Resources/HealthManager.cs new file mode 100644 index 00000000..89e3e0d0 --- /dev/null +++ b/Assets/Scripts/Resources/HealthManager.cs @@ -0,0 +1,70 @@ +using System.Collections; +using System.Collections.Generic; +using Polyart; +using UnityEngine; + +public class HealthManager : MonoBehaviour +{ + [Header("Health")] + public float maxHealth = 100f; + public float health = 100f; + + [Header("Regen (optional)")] + public bool enableRegen = true; + public float regenPerSecond = 1.5f; + public float regenDelayAfterDamage = 4f; + + bool isDead = false; + float regenResumeTime = 0f; + + void Awake() + { + health = Mathf.Clamp(health, 0, maxHealth); + } + + void Update() + { + if (!enableRegen || isDead) return; + if (Time.time < regenResumeTime) return; + if (health >= maxHealth) return; + + health = Mathf.Min(maxHealth, health + regenPerSecond * Time.deltaTime); + } + + public void TakeDamage(float damage) + { + if (isDead || damage <= 0f) return; + + health = Mathf.Max(0f, health - damage); + regenResumeTime = Time.time + Mathf.Max(0f, regenDelayAfterDamage); + + if (health <= 0f) Die(); + } + + public void Heal(float amount) + { + if (amount <= 0f || isDead) return; + health = Mathf.Min(maxHealth, health + amount); + } + + public bool IsDead() => isDead; + + void Die() + { + if (isDead) return; + isDead = true; + + var anim = GetComponent(); + if (anim) anim.SetTrigger("die"); + + // If you have an ActionScheduler, uncomment: + // var scheduler = GetComponent(); + // if (scheduler) scheduler.CancelCurrentAction(); + + var cc = GetComponent(); + if (cc) cc.enabled = false; + + var fps = GetComponent(); + if (fps) fps.enabled = false; + } +} diff --git a/Assets/Scripts/Resources/HealthManager.cs.meta b/Assets/Scripts/Resources/HealthManager.cs.meta new file mode 100644 index 00000000..20f25c26 --- /dev/null +++ b/Assets/Scripts/Resources/HealthManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7318ee1be010c1e43b9f45dbbe3a8d9d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Resources/ManaManager.cs b/Assets/Scripts/Resources/ManaManager.cs new file mode 100644 index 00000000..0f7780ba --- /dev/null +++ b/Assets/Scripts/Resources/ManaManager.cs @@ -0,0 +1,57 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ManaManager : MonoBehaviour +{ + [Header("Mana")] + public float maxMana = 100f; + public float mana = 100f; + + [Header("Regen")] + public bool enableRegen = true; + public float regenPerSecond = 8f; + public float regenDelayAfterSpend = 1.0f; + + float regenResumeTime = 0f; + + void Awake() + { + mana = Mathf.Clamp(mana, 0, maxMana); + } + + void Update() + { + if (!enableRegen) return; + if (Time.time < regenResumeTime) return; + if (mana >= maxMana) return; + + mana = Mathf.Min(maxMana, mana + regenPerSecond * Time.deltaTime); + } + + public bool Has(float amount) => mana >= amount; + + public bool Spend(float amount) + { + if (amount <= 0f) return true; + if (mana < amount) return false; + + mana -= amount; + regenResumeTime = Time.time + Mathf.Max(0f, regenDelayAfterSpend); + return true; + } + + public void Refill(float amount) + { + if (amount <= 0f) return; + mana = Mathf.Min(maxMana, mana + amount); + } + + public void SetMax(float newMax, bool keepRatio = true) + { + newMax = Mathf.Max(1f, newMax); + float ratio = maxMana > 0 ? mana / maxMana : 1f; + maxMana = newMax; + mana = keepRatio ? Mathf.Clamp01(ratio) * maxMana : Mathf.Min(mana, maxMana); + } +} diff --git a/Assets/Scripts/Resources/ManaManager.cs.meta b/Assets/Scripts/Resources/ManaManager.cs.meta new file mode 100644 index 00000000..6753758b --- /dev/null +++ b/Assets/Scripts/Resources/ManaManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6ae53beee9ce9b24097289adbb0d7d5e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: