Added Fusion 1.0.0 to the project
8
Assets/Photon.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cb56c3824ef5c8e40acfc607e00aded4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 985f71308df30494eab1c01a553f6450
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Assemblies.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6b498a0317a268b4f95f38e8863f3e53
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Common.dll
Normal file
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Common.dll.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dfe46f6ff6fe58c47aa967992595b12e
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
33
Assets/Photon/Fusion/Assemblies/Fusion.Common.dll.meta
Normal file
@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a4d1b22b416816f4a830209a6058fe35
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Common.pdb.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 64771868c228aac4caec4e19fea3aa53
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
156
Assets/Photon/Fusion/Assemblies/Fusion.Common.xml
Normal file
@ -0,0 +1,156 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Fusion.Common</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Fusion.Async.TaskFactoryManager">
|
||||
<summary>
|
||||
Task Factory is used to create new Tasks and Schedule long running Tasks
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Fusion.Async.TaskFactoryManager.TaskFactory">
|
||||
<summary>
|
||||
Stores a Task Factory ready made to be used with Unity
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Fusion.Async.TaskFactoryManager.TaskScheduler">
|
||||
<summary>
|
||||
Task Scheduler based on the TaskFactory currently set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.Async.TaskFactoryManager.SetupForUnity">
|
||||
<summary>
|
||||
Setup a new TaskFactory tailored to work with Unity
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.Async.TaskFactoryManager.CreateUnityTaskFactory">
|
||||
<summary>
|
||||
Create a new TaskFactory reference with settings to work wiht Unity
|
||||
</summary>
|
||||
<returns>TaskFactory ref with the right arguments set</returns>
|
||||
</member>
|
||||
<member name="T:Fusion.Collections.SynchronizedQueue`1">
|
||||
<summary>
|
||||
Queue that usese Sync locks for each operations
|
||||
</summary>
|
||||
<typeparam name="T">Type used by the internal Queue</typeparam>
|
||||
</member>
|
||||
<member name="M:Fusion.CompressionUtils.Compress(System.Byte[])">
|
||||
<summary>
|
||||
Compress the byte array uisng GZip
|
||||
</summary>
|
||||
<param name="data">Original byte array</param>
|
||||
<returns>Compressed byte array</returns>
|
||||
</member>
|
||||
<member name="M:Fusion.CompressionUtils.Decompress(System.Byte[])">
|
||||
<summary>
|
||||
Decompress the byte array using GZip
|
||||
</summary>
|
||||
<param name="data">Compressed byte array</param>
|
||||
<returns>Decompressed byte array</returns>
|
||||
</member>
|
||||
<member name="P:Fusion.Protocol.ICommunicator.CommunicatorID">
|
||||
<summary>
|
||||
Represents the current ID of the communicator.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.Protocol.ICommunicator.SendPackage(System.Byte,System.Int32,System.Boolean,System.Byte*,System.Int32)">
|
||||
<summary>
|
||||
Sends a package data using the communication system
|
||||
</summary>
|
||||
<param name="code">Event Code used to send the Package</param>
|
||||
<param name="targetActor">Target Actor of the Package</param>
|
||||
<param name="reliable">Flag if this Package should be sent reliably</param>
|
||||
<param name="buffer">Data Buffer</param>
|
||||
<param name="bufferLength">Buffer Length</param>
|
||||
</member>
|
||||
<member name="M:Fusion.Protocol.ICommunicator.ReceivePackage(System.Int32@,System.Byte*,System.Int32)">
|
||||
<summary>
|
||||
Retrieve a Data Package
|
||||
</summary>
|
||||
<param name="senderActor">Data Package Sender</param>
|
||||
<param name="buffer">Buffer to be filled with the Data</param>
|
||||
<param name="bufferLength">Buffer length</param>
|
||||
<returns>Total number of bytes written to buffer</returns>
|
||||
</member>
|
||||
<member name="M:Fusion.Protocol.ICommunicator.Poll">
|
||||
<summary>
|
||||
Check if there are data package to be retrieved
|
||||
</summary>
|
||||
<returns>True if the internal buffer has pendind data</returns>
|
||||
</member>
|
||||
<member name="M:Fusion.Protocol.ICommunicator.PushPackage(System.Int32,System.Int32,System.Object)">
|
||||
<summary>
|
||||
Push a new Package into the communicator queues
|
||||
</summary>
|
||||
<param name="senderActor">Data Sender Actor</param>
|
||||
<param name="eventCode">Event Code of the Package</param>
|
||||
<param name="data">Package</param>
|
||||
</member>
|
||||
<member name="M:Fusion.Protocol.ICommunicator.RegisterPackageCallback``1(System.Action{System.Int32,``0})">
|
||||
<summary>
|
||||
Register a callback for a specific Message Type
|
||||
</summary>
|
||||
<typeparam name="K"></typeparam>
|
||||
<param name="callback"></param>
|
||||
</member>
|
||||
<member name="M:Fusion.Protocol.ICommunicator.SendMessage(System.Int32,Fusion.Protocol.IMessage)">
|
||||
<summary>
|
||||
Send a Protocol Message using the communicator system
|
||||
</summary>
|
||||
<param name="targetActor">Target Actor of the Protocol Message</param>
|
||||
<param name="message">Protocol Message to be sent</param>
|
||||
</member>
|
||||
<member name="M:Fusion.Protocol.ICommunicator.Service">
|
||||
<summary>
|
||||
Step the Communicator internals
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Fusion.Protocol.IMessage">
|
||||
<summary>
|
||||
Represents a Protocol Message
|
||||
|
||||
Used to tag the Messages in <see cref="T:Fusion.Protocol.ICommunicator"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Fusion.JsonUtils">
|
||||
<summary>
|
||||
Collection of simple JSON Utility methods
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.JsonUtils.RemoveExtraReferences(System.String)">
|
||||
<summary>
|
||||
Removes from a JSON serialized by Unity Serializer the "referenes" field.
|
||||
This aims to reduce the JSON size when sending accross the network
|
||||
</summary>
|
||||
<param name="baseJson">JSON output of "JsonUtility.ToJson" call</param>
|
||||
<returns>Same JSON but without the "referenes" object</returns>
|
||||
</member>
|
||||
<member name="M:Fusion.Profiling.FusionSamplers.IncrementFrame">
|
||||
<summary>
|
||||
Instructs all sub-Samplers to register a frame change. The next Add will go to the next frame section.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.Profiling.FusionSamplers.GetSampler(System.Int32,System.String)">
|
||||
<summary>
|
||||
Get Sampler from the connection specific collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.Profiling.FusionSamplers.GetSampler(System.String)">
|
||||
<summary>
|
||||
Get Sampler from the common samplers (non-connection specific) collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.Radix.Sort(Fusion.Radix.SortTarget*,Fusion.Radix.SortTarget*,System.Int32,System.Int32*,System.Int32*)">
|
||||
<summary>
|
||||
Sort 4 byte integers
|
||||
</summary>
|
||||
<param name="a">array to sort</param>
|
||||
<param name="t">temp array that is >= aLength</param>
|
||||
<param name="aLength">length of array</param>
|
||||
<param name="p">integer array with size (1 << RADIX)</param>
|
||||
<param name="c">integer array with size (1 << RADIX) * 4</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
7
Assets/Photon/Fusion/Assemblies/Fusion.Common.xml.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d1aa52c25b7410d409a610b7ae0e2be5
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Realtime.dll
Normal file
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Realtime.dll.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3b0bcfb09765a4a4ebf152ab4db50ef4
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
33
Assets/Photon/Fusion/Assemblies/Fusion.Realtime.dll.meta
Normal file
@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7de3b8b9e1263ad479e2d0c4261b7646
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Realtime.pdb.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2522e117b83964644bbf25885af7bea2
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
4507
Assets/Photon/Fusion/Assemblies/Fusion.Realtime.xml
Normal file
7
Assets/Photon/Fusion/Assemblies/Fusion.Realtime.xml.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 346cdb2392b5bce4b8b2756ef4e32cdb
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Runtime.dll
Normal file
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Runtime.dll.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fb8184b1b08ca0f408b87eb72e85e2bd
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
34
Assets/Photon/Fusion/Assemblies/Fusion.Runtime.dll.meta
Normal file
@ -0,0 +1,34 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e725a070cec140c4caffb81624c8c787
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder:
|
||||
Fusion.NetworkObject: 500
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Runtime.pdb.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7135dc2f84a2d814eb8ed3c3e41b0772
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8335
Assets/Photon/Fusion/Assemblies/Fusion.Runtime.xml
Normal file
7
Assets/Photon/Fusion/Assemblies/Fusion.Runtime.xml.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d461b7cc07b37504f94b4a901b69e494
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Sockets.dll
Normal file
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Sockets.dll.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02ee5c5911f692e44a0cec1e51da1507
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
33
Assets/Photon/Fusion/Assemblies/Fusion.Sockets.dll.meta
Normal file
@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 850f5b8096bb4c64abfef35065cde6b1
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Assemblies/Fusion.Sockets.pdb.debug
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4da11c4b9bd14f146984f58dd9a83d27
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
1202
Assets/Photon/Fusion/Assemblies/Fusion.Sockets.xml
Normal file
7
Assets/Photon/Fusion/Assemblies/Fusion.Sockets.xml.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 43a4edfa145535c4d80df040678f3746
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Editor.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 16e8492301418144dac7bf2bafdaa982
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Editor/Resources.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: db14742ab878fc64f817a77ca9d3a69d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
647
Assets/Photon/Fusion/Editor/Resources/Assembly-CSharp.xml
Normal file
@ -0,0 +1,647 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Assembly-CSharp</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:PlayerSpawnerPrototype">
|
||||
<summary>
|
||||
Prototyping component for spawning Player avatars.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionGraphBase._statSourceType">
|
||||
<summary>
|
||||
Which section of the Fusion engine is being monitored. In combination with StatId, this selects the stat being monitored.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionGraphBase._statId">
|
||||
<summary>
|
||||
The specific stat being monitored.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SpawnerPrototype`1.StateAuthority">
|
||||
<summary>
|
||||
Available if AllowClientObjects is enabled in the NetworkProjectConfig, this allows players to be spawned with client StateAuthority.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:TelemetryElement.AspectRatio">
|
||||
<summary>
|
||||
The aspect ratio this element should maintain. 2 = twice as wide as tall.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Fusion.FusionUnityLogger.UseGlobalPrefix">
|
||||
<summary>
|
||||
If true, all messages will be prefixed with [Fusion] tag
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Fusion.FusionUnityLogger.UseColorTags">
|
||||
<summary>
|
||||
If true, some parts of messages will be enclosed with <color> tags.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Fusion.FusionUnityLogger.GlobalPrefixColor">
|
||||
<summary>
|
||||
Color of the global prefix (see <see cref="F:Fusion.FusionUnityLogger.UseGlobalPrefix"/>).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Fusion.FusionUnityLogger.MinRandomColor">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Fusion.FusionUnityLogger.MaxRandomColor">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Fusion.FusionUnityLogger.GetColor">
|
||||
<summary>
|
||||
Converts object to a color <see cref="F:Fusion.FusionUnityLogger.UseColorTags"/>. By default works only for <see cref="T:Fusion.NetworkRunner"/> and uses <see cref="F:Fusion.FusionUnityLogger.MinRandomColor"/> and <see cref="F:Fusion.FusionUnityLogger.MaxRandomColor"/> fields.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Fusion.Editor.BoundsTools.CollectMyBounds(UnityEngine.GameObject,Fusion.Editor.BoundsTools.BoundsType,System.Int32@,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Collect the bounds of the indicated types (MeshRenderer and/or Collider) on the object and all of its children, and returns bounds that are a sum of all of those.
|
||||
</summary>
|
||||
<param name="go">GameObject to start search from.</param>
|
||||
<param name="factorIn">The types of bounds to factor in.</param>
|
||||
<param name="includeChildren">Whether to search all children for bounds.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:NetworkCharacterControllerPrototype.DefaultTeleportInterpolationVelocity">
|
||||
<summary>
|
||||
Sets the default teleport interpolation velocity to be the CC's current velocity.
|
||||
For more details on how this field is used, see <see cref="M:Fusion.NetworkTransform.TeleportToPosition(UnityEngine.Vector3,System.Nullable{UnityEngine.Vector3},System.Boolean)"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NetworkCharacterControllerPrototype.DefaultTeleportInterpolationAngularVelocity">
|
||||
<summary>
|
||||
Sets the default teleport interpolation angular velocity to be the CC's rotation speed on the Z axis.
|
||||
For more details on how this field is used, see <see cref="M:Fusion.NetworkTransform.TeleportToRotation(UnityEngine.Quaternion,System.Nullable{UnityEngine.Vector3},System.Boolean)"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkCharacterControllerPrototype.Jump(System.Boolean,System.Nullable{System.Single})">
|
||||
<summary>
|
||||
Basic implementation of a jump impulse (immediately integrates a vertical component to Velocity).
|
||||
<param name="ignoreGrounded">Jump even if not in a grounded state.</param>
|
||||
<param name="overrideImpulse">Optional field to override the jump impulse. If null, <see cref="F:NetworkCharacterControllerPrototype.jumpImpulse"/> is used.</param>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkCharacterControllerPrototype.Move(UnityEngine.Vector3)">
|
||||
<summary>
|
||||
Basic implementation of a character controller's movement function based on an intended direction.
|
||||
<param name="direction">Intended movement direction, subject to movement query, acceleration and max speed values.</param>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:FusionStatsBillboard">
|
||||
<summary>
|
||||
Companion component for <see cref="T:FusionStats"/>, which automatically faces this GameObject toward the supplied Camera. If Camera == null, will face towards Camera.main.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStatsBillboard.Camera">
|
||||
<summary>
|
||||
Force a particular camera to billboard this object toward. Leave null to use Camera.main.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ISpawnPointPrototype">
|
||||
<summary>
|
||||
Flag interface to identify GameObjects that should be used as markers for spawn points.
|
||||
Used by <see cref="!:ISpawnPointManagerPrototype"/> to locate spawn points in a scene.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStatsMeterBar.MeterMax">
|
||||
<summary>
|
||||
Values greater than 0 will limit the meter to a range of 0 to MeterMax.
|
||||
Value of 0 will adjust the max to the largest value occurance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStatsMeterBar._showUITargets">
|
||||
<summary>
|
||||
Exposes the UI labels and controls of <see cref="T:FusionGraph"/>, so they may be modified if customizing this graph.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:InputBehaviourPrototype">
|
||||
<summary>
|
||||
A simple example of Fusion input collection. This component should be on the same GameObject as the <see cref="T:Fusion.NetworkRunner"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:NetworkInputPrototype">
|
||||
<summary>
|
||||
Example definition of an INetworkStruct.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SpawnPointManagerPrototype`1">
|
||||
<summary>
|
||||
Derive from this class for different <see cref="T:ISpawnPointPrototype"/> types.
|
||||
Derived manager will only find that spawn point type, allowing for separate handling of player spawn points from other spawn-able items such as AI.
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="F:SpawnPointManagerPrototype`1.Sequence">
|
||||
<summary>
|
||||
How spawn points will be selected from the <see cref="F:SpawnPointManagerPrototype`1._spawnPoints"/> collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SpawnPointManagerPrototype`1.BlockingLayers">
|
||||
<summary>
|
||||
LayerMask for which physics layers should be used for blocked spawn point checks.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SpawnPointManagerPrototype`1.BlockedCheckRadius">
|
||||
<summary>
|
||||
The search radius used for detecting if a spawn point is blocked by an object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SpawnPointManagerPrototype`1._spawnPoints">
|
||||
<summary>
|
||||
Serialized collection of all <see cref="T:ISpawnPointPrototype"/> of the type T found in the same scene as this component.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SpawnPointManagerPrototype`1.CollectSpawnPoints(Fusion.NetworkRunner)">
|
||||
<summary>
|
||||
Find all <see cref="T:ISpawnPointPrototype"/> instances in the same scene as this spawner.
|
||||
This should only be done at development time if using the Photon relay for any spawn logic.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SpawnPointManagerPrototype`1.GetNextSpawnPoint(Fusion.NetworkRunner,Fusion.PlayerRef,System.Boolean)">
|
||||
<summary>
|
||||
Select the next spawn point using the defined <see cref="F:SpawnPointManagerPrototype`1.Sequence"/>. Override this method to expand on this, such as detecting if a spawn point is blocked.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SpawnPointManagerPrototype`1.AllSpawnPointsBlockedFallback">
|
||||
<summary>
|
||||
Handling for if all spawn points are blocked.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SpawnPointManagerPrototype`1.GetNextUnblocked(System.Int32)">
|
||||
<summary>
|
||||
Cycles through all remaining spawn points searching for unblocked. Will return null if all points return <see cref="!:IsBlocked(Transform)"/> == true.
|
||||
</summary>
|
||||
<param name="failedIndex">The index of the first tried SpawnPoints[] element, which was blocked.</param>
|
||||
<returns>(<see cref="F:SpawnPointManagerPrototype`1._spawnPoints"/> index, <see cref="T:ISpawnPointPrototype"/>)</returns>
|
||||
</member>
|
||||
<member name="M:SpawnPointManagerPrototype`1.IsBlocked(UnityEngine.Component)">
|
||||
<summary>
|
||||
Override this method with any logic for checking if a spawn point is blocked.
|
||||
</summary>
|
||||
<param name="spawnPoint"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:ISpawnPointManagerPrototype`1">
|
||||
<summary>
|
||||
Interface for <see cref="T:SpawnPointManagerPrototype`1"/> behaviours.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:PlayerSpawnPointPrototype">
|
||||
<summary>
|
||||
Flag component to identify GameObjects that should be used as markers for spawn points.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:PlayerAOIPrototype">
|
||||
<summary>
|
||||
Prototyping component for Fusion. Updates the Player's AOI every tick to be a radius around this object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:PlayerAOIPrototype.Radius">
|
||||
<summary>
|
||||
Radius around this GameObject that defines the Area Of Interest for the InputAuthority of the object.
|
||||
The InputAuthority player of this <see cref="T:Fusion.NetworkObject"/>,
|
||||
will receive updates for any other <see cref="T:Fusion.NetworkObject"/> within this radius.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:FusionStats">
|
||||
<summary>
|
||||
Creates and controls a Canvas with one or multiple telemetry graphs. Can be created as a scene object or prefab,
|
||||
or be created at runtime using the <see cref="M:FusionStats.Create(UnityEngine.Transform,Fusion.NetworkRunner,System.Nullable{FusionStats.DefaultLayouts},System.Nullable{FusionStats.DefaultLayouts},System.Nullable{Fusion.Simulation.Statistics.NetStatFlags},System.Nullable{Fusion.Simulation.Statistics.SimStatFlags})"/> methods. If created as the child of a <see cref="T:Fusion.NetworkObject"/>
|
||||
then <see cref="P:FusionStats.EnableObjectStats"/> will automatically be set to true.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:FusionStats.StatCanvasTypes">
|
||||
<summary>
|
||||
Options for displaying stats as screen overlays or world GameObjects.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:FusionStats.DefaultLayouts">
|
||||
<summary>
|
||||
Predefined layout default options.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:FusionStats.Create(UnityEngine.Transform,Fusion.NetworkRunner,System.Nullable{FusionStats.DefaultLayouts},System.Nullable{FusionStats.DefaultLayouts},System.Nullable{Fusion.Simulation.Statistics.NetStatFlags},System.Nullable{Fusion.Simulation.Statistics.SimStatFlags})">
|
||||
<summary>
|
||||
Creates a new GameObject with a <see cref="T:FusionStats"/> component, attaches it to any supplied parent, and generates Canvas/Graphs.
|
||||
</summary>
|
||||
<param name="runner"></param>
|
||||
<param name="parent">Generated FusionStats component and GameObject will be added as a child of this transform.</param>
|
||||
<param name="objectLayout">Uses a predefined position.</param>
|
||||
<param name="netStatsMask">The network stats to be enabled. If left null, default statistics will be used.</param>
|
||||
<param name="simStatsMask">The simulation stats to be enabled. If left null, default statistics will be used.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="F:FusionStats.DefaultSimStatsMask">
|
||||
<summary>
|
||||
The gets the default SimStats. Some are only intended for Fusion internal development and aren't useful to users.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.RedrawInterval">
|
||||
<summary>
|
||||
Interval (in seconds) between Graph redraws. Higher values (longer intervals) reduce CPU overhead, draw calls and garbage collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._canvasType">
|
||||
<summary>
|
||||
Selects between displaying Canvas as screen overlay, or a world GameObject.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:FusionStats.CanvasType">
|
||||
<summary>
|
||||
Selects between displaying Canvas as screen overlay, or a world GameObject.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._showButtonLabels">
|
||||
<summary>
|
||||
Enables text labels for the control buttons.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:FusionStats.ShowButtonLabels">
|
||||
<summary>
|
||||
Enables text labels for the control buttons.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._maxHeaderHeight">
|
||||
<summary>
|
||||
Height of button region at top of the stats panel. Values less than or equal to 0 hide the buttons, and reduce the header size.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:FusionStats.MaxHeaderHeight">
|
||||
<summary>
|
||||
Height of button region at top of the stats panel. Values less than or equal to 0 hide the buttons, and reduce the header size.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.CanvasScale">
|
||||
<summary>
|
||||
The size of the canvas when <see cref="P:FusionStats.CanvasType"/> is set to <see cref="F:FusionStats.StatCanvasTypes.GameObject"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.CanvasDistance">
|
||||
<summary>
|
||||
The distance on the Z axis the canvas will be positioned. Allows moving the canvas in front of or behind the parent GameObject.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._gameObjectRect">
|
||||
<summary>
|
||||
The Rect which defines the position of the stats canvas on a GameObject. Sizes are normalized percentages.(ranges of 0f-1f).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._overlayRect">
|
||||
<summary>
|
||||
The Rect which defines the position of the stats canvas overlay on the screen. Sizes are normalized percentages.(ranges of 0f-1f).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._defaultLayout">
|
||||
<summary>
|
||||
<see cref="T:FusionGraph.Layouts"/> value which all child <see cref="T:FusionGraph"/> components will use if their <see cref="T:FusionGraph.Layouts"/> value is set to Auto.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._noTextOverlap">
|
||||
<summary>
|
||||
UI Text on FusionGraphs can only overlay the bar graph if the canvas is perfectly facing the camera.
|
||||
Any other angles will result in ZBuffer fighting between the text and the graph bar shader.
|
||||
For uses where perfect camera billboarding is not possible (such as VR), this toggle prevents FusionGraph layouts being used where text and graphs overlap.
|
||||
Normally leave this unchecked, unless you are experiencing corrupted text rendering.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._noGraphShader">
|
||||
<summary>
|
||||
Disables the bar graph in <see cref="T:FusionGraph"/>, and uses a text only layout.
|
||||
Enable this if <see cref="T:FusionGraph"/> is not rendering correctly in VR.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.GraphColumnCount">
|
||||
<summary>
|
||||
Force graphs layout to use X number of columns.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._graphMaxWidth">
|
||||
<summary>
|
||||
If <see cref="F:FusionStats.GraphColumnCount"/> is set to zero, then columns will automatically be added as needed to limit graphs to this width or less.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:FusionStats.GraphMaxWidth">
|
||||
<summary>
|
||||
If <see cref="F:FusionStats.GraphColumnCount"/> is set to zero, then columns will automatically be added as needed to limit graphs to this width or less.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._enableObjectStats">
|
||||
<summary>
|
||||
Enables/Disables all NetworkObject related elements.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._object">
|
||||
<summary>
|
||||
The <see cref="T:Fusion.NetworkObject"/> source for any <see cref="T:Fusion.Simulation.Statistics.ObjStats"/> specific telemetry.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._objectTitleHeight">
|
||||
<summary>
|
||||
Height of Object title region at top of the stats panel.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._objectIdsHeight">
|
||||
<summary>
|
||||
Height of Object info region at top of the stats panel.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._objectMetersHeight">
|
||||
<summary>
|
||||
Height of Object info region at top of the stats panel.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._runner">
|
||||
<summary>
|
||||
The <see cref="T:Fusion.NetworkRunner"/> currently associated with this <see cref="T:FusionStats"/> component and graphs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.InitializeAllGraphs">
|
||||
<summary>
|
||||
Initializes a <see cref="T:FusionGraph"/> for all available stats, even if not initially included.
|
||||
If disabled, graphs added after initialization will be added to the bottom of the interface stack.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.ConnectTo">
|
||||
<summary>
|
||||
When <see cref="F:FusionStats._runner"/> is null and no <see cref="T:Fusion.NetworkRunner"/> exists in the current scene, FusionStats will continuously attempt to find and connect to an active <see cref="T:Fusion.NetworkRunner"/> which matches these indicated modes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._includedObjStats">
|
||||
<summary>
|
||||
Selects which NetworkObject stats should be displayed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._includedNetStats">
|
||||
<summary>
|
||||
Selects which NetConnection stats should be displayed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._includedSimStats">
|
||||
<summary>
|
||||
Selects which Simulation stats should be displayed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.AutoDestroy">
|
||||
<summary>
|
||||
Automatically destroys this <see cref="T:FusionStats"/> GameObject if the associated runner is null or inactive.
|
||||
Otherwise attempts will continuously be made to find an new active runner which is running in <see cref="T:Fusion.SimulationModes"/> specified by <see cref="F:FusionStats.ConnectTo"/>, and connect to that.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.EnforceSingle">
|
||||
<summary>
|
||||
Only one instance with the <see cref="F:FusionStats.Guid"/> can exist. Will destroy any clones on Awake.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats.Guid">
|
||||
<summary>
|
||||
Identifier used to enforce single instances of <see cref="T:FusionStats"/> when running in Multi-Peer mode.
|
||||
When <see cref="F:FusionStats.EnforceSingle"/> is enabled, only one instance of <see cref="T:FusionStats"/> with this GUID will be active at any time,
|
||||
regardless of the total number of peers running.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._graphColorGood">
|
||||
<summary>
|
||||
The color used for the telemetry graph data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._graphColorWarn">
|
||||
<summary>
|
||||
The color used for the telemetry graph data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._graphColorBad">
|
||||
<summary>
|
||||
The color used for the telemetry graph data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionStats._graphColorFlag">
|
||||
<summary>
|
||||
The color used for the telemetry graph data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:NetworkDebugStartGUI">
|
||||
<summary>
|
||||
Companion component for <see cref="T:NetworkDebugStart"/>. Automatically added as needed for rendering in-game networking IMGUI.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStartGUI.EnableHotkeys">
|
||||
<summary>
|
||||
When enabled, the in-game user interface buttons can be activated with the keys H (Host), S (Server) and C (Client).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStartGUI.BaseSkin">
|
||||
<summary>
|
||||
The GUISkin to use as the base for the scalable in-game UI.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:NetworkDebugStart">
|
||||
<summary>
|
||||
A Fusion prototyping class for starting up basic networking. Add this component to your startup scene, and supply a <see cref="F:NetworkDebugStart.RunnerPrefab"/>.
|
||||
Can be set to automatically startup the network, display an in-game menu, or allow simplified start calls like <see cref="M:NetworkDebugStart.StartHost"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:NetworkDebugStart.StartModes">
|
||||
<summary>
|
||||
Selection for how <see cref="T:NetworkDebugStart"/> will behave at startup.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:NetworkDebugStart.Stage">
|
||||
<summary>
|
||||
The current stage of connection or shutdown.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.RunnerPrefab">
|
||||
<summary>
|
||||
Supply a Prefab or a scene object which has the <see cref="T:Fusion.NetworkRunner"/> component on it,
|
||||
as well as any runner dependent components which implement <see cref="T:Fusion.INetworkRunnerCallbacks"/>,
|
||||
such as <see cref="T:Fusion.NetworkEvents"/> or your own custom INetworkInput implementations.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.StartMode">
|
||||
<summary>
|
||||
Select how network startup will be triggered. Automatically, by in-game menu selection, or exclusively by script.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.AutoStartAs">
|
||||
<summary>
|
||||
When <see cref="F:NetworkDebugStart.StartMode"/> is set to <see cref="F:NetworkDebugStart.StartModes.Automatic"/>, this option selects if the <see cref="T:Fusion.NetworkRunner"/>
|
||||
will be started as a dedicated server, or as a host (which is a server with a local player).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.AutoHideGUI">
|
||||
<summary>
|
||||
<see cref="T:NetworkDebugStartGUI"/> will not render GUI elements while <see cref="P:NetworkDebugStart.CurrentStage"/> == <see cref="F:NetworkDebugStart.Stage.AllConnected"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.AutoClients">
|
||||
<summary>
|
||||
The number of client <see cref="T:Fusion.NetworkRunner"/> instances that will be created if running in Mulit-Peer Mode.
|
||||
When using the Select start mode, this number will be the default value for the additional clients option box.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.ServerPort">
|
||||
<summary>
|
||||
The port that server/host <see cref="T:Fusion.NetworkRunner"/> will use.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.DefaultRoomName">
|
||||
<summary>
|
||||
The default room name to use when connecting to photon cloud.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.AlwaysShowStats">
|
||||
<summary>
|
||||
Will automatically enable <see cref="T:FusionStats"/> once peers have finished connecting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:NetworkDebugStart.InitialScenePath">
|
||||
<summary>
|
||||
The Scene that will be loaded after network shutdown completes (all peers have disconnected).
|
||||
If this field is null or invalid, will be set to the current scene when <see cref="T:NetworkDebugStart"/> runs Awake().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NetworkDebugStart.CurrentStage">
|
||||
<summary>
|
||||
Indicates which step of the startup process <see cref="T:NetworkDebugStart"/> is currently in.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NetworkDebugStart.LastCreatedClientIndex">
|
||||
<summary>
|
||||
The index number used for the last created peer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NetworkDebugStart.CurrentServerMode">
|
||||
<summary>
|
||||
The server mode that was used for initial startup. Used to inform UI which client modes should be available.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartSinglePlayer">
|
||||
<summary>
|
||||
Start a single player instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartServer">
|
||||
<summary>
|
||||
Start a server instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartHost">
|
||||
<summary>
|
||||
Start a host instance. This is a server instance, with a local player.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartClient">
|
||||
<summary>
|
||||
Start a client instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartServerPlusClients">
|
||||
<summary>
|
||||
Start a Fusion server instance, and the number of client instances indicated by <see cref="F:NetworkDebugStart.AutoClients"/>.
|
||||
InstanceMode must be set to Multi-Peer mode, as this requires multiple <see cref="T:Fusion.NetworkRunner"/> instances.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartHostPlusClients">
|
||||
<summary>
|
||||
Start a Fusion host instance, and the number of client instances indicated by <see cref="F:NetworkDebugStart.AutoClients"/>.
|
||||
InstanceMode must be set to Multi-Peer mode, as this requires multiple <see cref="T:Fusion.NetworkRunner"/> instances.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartServerPlusClients(System.Int32)">
|
||||
<summary>
|
||||
Start a Fusion server instance, and the indicated number of client instances.
|
||||
InstanceMode must be set to Multi-Peer mode, as this requires multiple <see cref="T:Fusion.NetworkRunner"/> instances.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartHostPlusClients(System.Int32)">
|
||||
<summary>
|
||||
Start a Fusion host instance (server with local player), and the indicated number of additional client instances.
|
||||
InstanceMode must be set to Multi-Peer mode, as this requires multiple <see cref="T:Fusion.NetworkRunner"/> instances.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartMultipleClients(System.Int32)">
|
||||
<summary>
|
||||
Start a Fusion host instance (server with local player), and the indicated number of additional client instances.
|
||||
InstanceMode must be set to Multi-Peer mode, as this requires multiple <see cref="T:Fusion.NetworkRunner"/> instances.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NetworkDebugStart.StartMultipleSharedClients(System.Int32)">
|
||||
<summary>
|
||||
Start as Room on the Photon cloud, and connects as one or more clients.
|
||||
</summary>
|
||||
<param name="clientCount"></param>
|
||||
</member>
|
||||
<member name="T:FusionScalableIMGUI">
|
||||
<summary>
|
||||
In-Game IMGUI style used for the <see cref="T:NetworkDebugStartGUI"/> interface.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:FusionScalableIMGUI.GetScaledSkin(UnityEngine.GUISkin,System.Single@,System.Single@,System.Int32@,System.Int32@,System.Single@)">
|
||||
<summary>
|
||||
Get the custom scalable skin, already resized to the current screen. Provides the height, width, padding and margin used.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:FusionScalableIMGUI.ScaleGuiSkinToScreenHeight">
|
||||
<summary>
|
||||
Modifies a skin to make it scale with screen height.
|
||||
</summary>
|
||||
<param name="skin"></param>
|
||||
<returns>Returns (height, width, padding, top-margin, left-box-margin) values applied to the GuiSkin</returns>
|
||||
</member>
|
||||
<member name="T:FusionGraph">
|
||||
<summary>
|
||||
Individual graph components generated and used by <see cref="T:FusionStats"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionGraph._layout">
|
||||
<summary>
|
||||
Select between automatic formating (based on size and aspect ratio of the graph) and manual selection of the various graph layouts available.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionGraph._showGraph">
|
||||
<summary>
|
||||
Controls if the graph shader will render. Currently the graph shader only works in Overlay mode, so if forced to show Always here, it will not render correctly in 3d space.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionGraph.Padding">
|
||||
<summary>
|
||||
Padding added to text and other layout objects.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionGraph._alwaysExpandGraph">
|
||||
<summary>
|
||||
The graph shaded area (which is only visible in Overlay mode) will expand to the full extends of the <see cref="T:FusionGraph"/> component when this is enabled, regardless of size.
|
||||
When false, the graph will automatically expand only as needed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:FusionGraph._showUITargets">
|
||||
<summary>
|
||||
Exposes the UI labels and controls of <see cref="T:FusionGraph"/>, so they may be modified if customizing this graph.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:FusionGraph.Refresh">
|
||||
<summary>
|
||||
Returns true if the graph rendered. False if the size was too small and the graph was hidden.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:FusionGraph.Create(FusionStats,Fusion.Simulation.Statistics.StatSourceTypes,System.Int32,UnityEngine.RectTransform)">
|
||||
<summary>
|
||||
Creates a new GameObject with <see cref="T:FusionGraph"/> and attaches it to the specified parent.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:FusionGraph.Generate(Fusion.Simulation.Statistics.StatSourceTypes,System.Int32,UnityEngine.RectTransform)">
|
||||
<summary>
|
||||
Generates the Graph UI for this <see cref="T:FusionGraph"/>.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 98ca5aa6754ce124689e0c452916e9d4
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1dca4e484cd4200468b640fdf0fe98df
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5ccd8b3061f54ad4fba6f9abc1a63ec6
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,93 @@
|
||||
Copyright 2016 The Oswald Project Authors (https://github.com/googlefonts/OswaldFont)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9ab706fba9f8d8a4e8ecbd1b18087710
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bc4170141f0283e4c80ff0f668490e67
|
||||
TrueTypeFontImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 4
|
||||
fontSize: 17
|
||||
forceTextureCase: -2
|
||||
characterSpacing: 0
|
||||
characterPadding: 1
|
||||
includeFontData: 1
|
||||
fontNames:
|
||||
- Oswald
|
||||
fallbackFontReferences:
|
||||
- {fileID: 12800000, guid: a30f933bed2f6504bae572c0ef6aaeb7, type: 3}
|
||||
customCharacters:
|
||||
fontRenderingMode: 0
|
||||
ascentCalculationMode: 1
|
||||
useLegacyBoundsCalculation: 0
|
||||
shouldRoundAdvanceValue: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Editor/Resources/icons.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: caefff3f1d2f12f4d9356c622cdafb29
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Editor/Resources/icons/correct-icon.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8958b450dee843f41a091a734ed43ccd
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
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:
|
||||
|
After Width: | Height: | Size: 990 B |
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9c44338dd0d7004459e02469c0074de2
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
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:
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a71cb696f8dd5042bc4c110df660dea
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 2
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
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:
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9d1a679741319604a85979784032907e
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
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:
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d09bc19b7d97b4b43a1e646890703e08
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
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:
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 536acaec6131e754883bd7ffae7dc885
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
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:
|
||||
8
Assets/Photon/Fusion/Editor/Resources/icons_welcome.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 453785a293d1a574fa05852324ed5ac7
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1 @@
|
||||
Icons by Fat Cow Hosting (http://www.fatcow.com/free-icons). Licensed under a Creative Commons Attribution 3.0 License.
|
||||
@ -0,0 +1,4 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 28883dc040320bb4ea69a449132b35d7
|
||||
TextScriptImporter:
|
||||
userData:
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,84 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1d949f6bc5812234bb28b6bd51e902f5
|
||||
timeCreated: 1500450410
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 0
|
||||
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: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Android
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 770 B |
@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ca583a4b5a2b2452c80aa11e55f19346
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
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: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Android
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,86 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 06632fbfd33334c72a288bdbdf2922ea
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
||||
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
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 740 B |
@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e12890dcb5a25439e8a36389cf70fce1
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
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: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Android
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Editor/Resources/icons_welcome/comments.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,76 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0d548c93fd2fd490db38298610780b39
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 4
|
||||
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
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 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
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,84 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fd7da1b41e02e2546a5b59597cbbedfd
|
||||
timeCreated: 1500450532
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 0
|
||||
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: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Android
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,84 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7d6ce7da11bf9aa4f98abcc9eb237a08
|
||||
timeCreated: 1500450305
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 0
|
||||
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: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Android
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fe64035b49c4e4a078ee42b857ae1519
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
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: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Android
|
||||
maxTextureSize: 32
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Editor/Resources/icons_welcome/samples.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,84 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d2b478a89610eb748a4b0b8040f43a01
|
||||
timeCreated: 1500450669
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 0
|
||||
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: 0
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 2
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Android
|
||||
maxTextureSize: 32
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Plugins.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 88a369d26c2621f4b857e1099c7e4364
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Plugins/NanoSockets.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7c0f804fc175b194a84166c696747f0b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Plugins/NanoSockets/Android.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9007c321666fb65448aaf7502001c2b1
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f3c69e69a588ff64294d4352f80d4762
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,80 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fd330aee9172d2c4087e7baffb8d9f5d
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
: Any
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
Exclude Android: 0
|
||||
Exclude Editor: 1
|
||||
Exclude Linux64: 1
|
||||
Exclude OSXUniversal: 1
|
||||
Exclude Win: 1
|
||||
Exclude Win64: 1
|
||||
Exclude iOS: 1
|
||||
- first:
|
||||
Android: Android
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: ARM64
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
DefaultValueInitialized: true
|
||||
OS: AnyOS
|
||||
- first:
|
||||
Standalone: Linux64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: OSXUniversal
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
AddToEmbeddedBinaries: false
|
||||
CPU: AnyCPU
|
||||
CompileFlags:
|
||||
FrameworkDependencies:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e49e89c8db6eb8346b3b480b38d620ce
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,80 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 34d5b82ebfd43f840915715f4a3a133d
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
: Any
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
Exclude Android: 0
|
||||
Exclude Editor: 1
|
||||
Exclude Linux64: 1
|
||||
Exclude OSXUniversal: 1
|
||||
Exclude Win: 1
|
||||
Exclude Win64: 1
|
||||
Exclude iOS: 1
|
||||
- first:
|
||||
Android: Android
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: ARMv7
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
DefaultValueInitialized: true
|
||||
OS: AnyOS
|
||||
- first:
|
||||
Standalone: Linux64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: OSXUniversal
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
AddToEmbeddedBinaries: false
|
||||
CPU: AnyCPU
|
||||
CompileFlags:
|
||||
FrameworkDependencies:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f2538901e4f33b94a83d1cf785b14a5d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,80 @@
|
||||
fileFormatVersion: 2
|
||||
guid: abb420497d9a79343b4647172f1fa2ec
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
: Any
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
Exclude Android: 0
|
||||
Exclude Editor: 1
|
||||
Exclude Linux64: 1
|
||||
Exclude OSXUniversal: 1
|
||||
Exclude Win: 1
|
||||
Exclude Win64: 1
|
||||
Exclude iOS: 1
|
||||
- first:
|
||||
Android: Android
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: x86
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
DefaultValueInitialized: true
|
||||
OS: AnyOS
|
||||
- first:
|
||||
Standalone: Linux64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: OSXUniversal
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
AddToEmbeddedBinaries: false
|
||||
CPU: AnyCPU
|
||||
CompileFlags:
|
||||
FrameworkDependencies:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/Photon/Fusion/Plugins/NanoSockets/Linux.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b4128901ef174a1489d784676ce0a5aa
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Photon/Fusion/Plugins/NanoSockets/Linux/libnanosockets.so
Normal file
@ -0,0 +1,80 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1353bd98fd16b304f82bc4cb8ff7d03f
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
: Any
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
Exclude Android: 1
|
||||
Exclude Editor: 0
|
||||
Exclude Linux64: 0
|
||||
Exclude OSXUniversal: 1
|
||||
Exclude Win: 0
|
||||
Exclude Win64: 0
|
||||
Exclude iOS: 1
|
||||
- first:
|
||||
Android: Android
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: ARMv7
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
DefaultValueInitialized: true
|
||||
OS: Linux
|
||||
- first:
|
||||
Standalone: Linux64
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
- first:
|
||||
Standalone: OSXUniversal
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: x86
|
||||
- first:
|
||||
Standalone: Win64
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: x86_64
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
AddToEmbeddedBinaries: false
|
||||
CPU: AnyCPU
|
||||
CompileFlags:
|
||||
FrameworkDependencies:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 497a010bd4e8f2c4ea10903a5b29aa7d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8fc02f7d3703ecc409b5446020e1dc8f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,89 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 97dbb2b4c5d67894381958ef748f2a74
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
: Any
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
Exclude Android: 0
|
||||
Exclude Editor: 0
|
||||
Exclude Linux64: 0
|
||||
Exclude OSXUniversal: 0
|
||||
Exclude PS4: 1
|
||||
Exclude PS5: 1
|
||||
Exclude Switch: 1
|
||||
Exclude Win: 0
|
||||
Exclude Win64: 0
|
||||
Exclude iOS: 1
|
||||
- first:
|
||||
Android: Android
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: ARMv7
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
DefaultValueInitialized: true
|
||||
OS: AnyOS
|
||||
- first:
|
||||
Standalone: Linux64
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
- first:
|
||||
Standalone: OSXUniversal
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
- first:
|
||||
Standalone: Win
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: x86
|
||||
- first:
|
||||
Standalone: Win64
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: x86_64
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
AddToEmbeddedBinaries: false
|
||||
CPU: AnyCPU
|
||||
CompileFlags:
|
||||
FrameworkDependencies:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 380f693c255fff44981fcfbdffdbac8a
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||