text stringlengths 7 35.3M | id stringlengths 11 185 | metadata dict | __index_level_0__ int64 0 2.14k |
|---|---|---|---|
fileFormatVersion: 2
guid: 128e987d567d4e2c824d754223b3f3b0
ShaderImporter:
externalObjects: {}
defaultTextures: []
nonModifiableTextures: []
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta",
"repo_id": "jynew",
"token_count": 82
} | 1,462 |
fileFormatVersion: 2
guid: f7ada0af4f174f0694ca6a487b8f543d
ShaderImporter:
externalObjects: {}
defaultTextures: []
nonModifiableTextures: []
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta",
"repo_id": "jynew",
"token_count": 81
} | 1,463 |
{"frames": [
{
"filename": "1f60a.png",
"frame": {"x":0,"y":0,"w":128,"h":128},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":128,"h":128},
"sourceSize": {"w":128,"h":128},
"pivot": {"x":0.5,"y":0.5}
},
{
"filename": "1f60b.png",
"frame": {"x":128,"y":0,"w":128,"h":128},
"rotated":... | jynew/jyx2/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.json/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.json",
"repo_id": "jynew",
"token_count": 1994
} | 1,464 |
using System;
using System.Collections;
using UnityEngine;
namespace UniRx.Examples
{
public class Sample06_ConvertToCoroutine : MonoBehaviour
{
// convert IObservable to Coroutine
void Start()
{
StartCoroutine(ComplexCoroutineTest());
}
IEnumerator Complex... | jynew/jyx2/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs",
"repo_id": "jynew",
"token_count": 904
} | 1,465 |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!29 &1
SceneSettings:
m_ObjectHideFlags: 0
m_PVSData:
m_PVSObjectsArray: []
m_PVSPortalsArray: []
m_OcclusionBakeSettings:
smallestOccluder: 5
smallestHole: 0.25
backfaceThreshold: 100
--- !u!104 &2
RenderSettings:
m_ObjectHideFlags: 0
serialized... | jynew/jyx2/Assets/Plugins/UniRx/Examples/Sample13Scene.unity/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Examples/Sample13Scene.unity",
"repo_id": "jynew",
"token_count": 16571
} | 1,466 |
namespace UniRx.InternalUtil
{
using System;
internal static class ExceptionExtensions
{
public static void Throw(this Exception exception)
{
#if (NET_4_6 || NET_STANDARD_2_0)
System.Runtime.ExceptionServices.ExceptionDispatchInfo.Capture(exception).Throw();
#endif
throw exception;
}
}
}
| jynew/jyx2/Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs",
"repo_id": "jynew",
"token_count": 116
} | 1,467 |
using System;
using System.Collections.Generic;
namespace UniRx.Operators
{
internal class AmbObservable<T> : OperatorObservableBase<T>
{
readonly IObservable<T> source;
readonly IObservable<T> second;
public AmbObservable(IObservable<T> source, IObservable<T> second)
: ba... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs",
"repo_id": "jynew",
"token_count": 3554
} | 1,468 |
using System;
using System.Collections.Generic;
namespace UniRx.Operators
{
// needs to more improvement
internal class ConcatObservable<T> : OperatorObservableBase<T>
{
readonly IEnumerable<IObservable<T>> sources;
public ConcatObservable(IEnumerable<IObservable<T>> sources)
... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs",
"repo_id": "jynew",
"token_count": 2551
} | 1,469 |
using System;
using System.Collections.Generic;
namespace UniRx.Operators
{
internal class DistinctObservable<T> : OperatorObservableBase<T>
{
readonly IObservable<T> source;
readonly IEqualityComparer<T> comparer;
public DistinctObservable(IObservable<T> source, IEqualityComparer<T> ... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs",
"repo_id": "jynew",
"token_count": 2244
} | 1,470 |
using System;
using System.Collections.Generic;
using UniRx.Operators;
namespace UniRx.Operators
{
internal class GroupedObservable<TKey, TElement> : IGroupedObservable<TKey, TElement>
{
readonly TKey key;
readonly IObservable<TElement> subject;
readonly RefCountDisposable refCount;
... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs",
"repo_id": "jynew",
"token_count": 3584
} | 1,471 |
using System;
namespace UniRx.Operators
{
// implements note : all field must be readonly.
public abstract class OperatorObservableBase<T> : IObservable<T>, IOptimizedObservable<T>
{
readonly bool isRequiredSubscribeOnCurrentThread;
public OperatorObservableBase(bool isRequiredSubscribeOn... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs",
"repo_id": "jynew",
"token_count": 574
} | 1,472 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniRx.Operators
{
internal class SampleObservable<T> : OperatorObservableBase<T>
{
readonly IObservable<T> source;
readonly TimeSpan interval;
readonly IScheduler scheduler;
public ... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs",
"repo_id": "jynew",
"token_count": 4414
} | 1,473 |
using System;
namespace UniRx.Operators
{
internal class SkipWhileObservable<T> : OperatorObservableBase<T>
{
readonly IObservable<T> source;
readonly Func<T, bool> predicate;
readonly Func<T, int, bool> predicateWithIndex;
public SkipWhileObservable(IObservable<T> source, Fun... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs",
"repo_id": "jynew",
"token_count": 2126
} | 1,474 |
using System;
using System.Collections.Generic;
using UniRx.Operators;
namespace UniRx.Operators
{
internal class TakeLastObservable<T> : OperatorObservableBase<T>
{
readonly IObservable<T> source;
// count
readonly int count;
// duration
readonly TimeSpan duration;
... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs",
"repo_id": "jynew",
"token_count": 2225
} | 1,475 |
using System;
namespace UniRx.Operators
{
internal class TimerObservable : OperatorObservableBase<long>
{
readonly DateTimeOffset? dueTimeA;
readonly TimeSpan? dueTimeB;
readonly TimeSpan? period;
readonly IScheduler scheduler;
public TimerObservable(DateTimeOffset due... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs",
"repo_id": "jynew",
"token_count": 2239
} | 1,476 |
using System;
namespace UniRx.Operators
{
// Optimize for .Where().Select()
internal class WhereSelectObservable<T, TR> : OperatorObservableBase<TR>
{
readonly IObservable<T> source;
readonly Func<T, bool> predicate;
readonly Func<T, TR> selector;
public WhereSelectObserv... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs",
"repo_id": "jynew",
"token_count": 1277
} | 1,477 |
using System;
using System.Collections.Generic;
using System.Text;
using UniRx.InternalUtil;
namespace UniRx
{
public sealed class Subject<T> : ISubject<T>, IDisposable, IOptimizedObservable<T>
{
object observerLock = new object();
bool isStopped;
bool isDisposed;
Exception la... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs",
"repo_id": "jynew",
"token_count": 2804
} | 1,478 |
fileFormatVersion: 2
guid: 93ca3de3810199947871ab4a77014fa3
timeCreated: 1475193276
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CoroutineAsyncBridge.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CoroutineAsyncBridge.cs.meta",
"repo_id": "jynew",
"token_count": 97
} | 1,479 |
using System;
using System.Collections.Generic;
using UniRx.InternalUtil;
using UnityEngine;
namespace UniRx
{
/// <summary>
/// Inspectable ReactiveProperty.
/// </summary>
[Serializable]
public class IntReactiveProperty : ReactiveProperty<int>
{
public IntReactiveProperty()
... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectableReactiveProperty.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectableReactiveProperty.cs",
"repo_id": "jynew",
"token_count": 3056
} | 1,480 |
fileFormatVersion: 2
guid: e04c7fc1929a3db458bf7ae31bcd9e55
timeCreated: 1455373901
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SampleFrame.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SampleFrame.cs.meta",
"repo_id": "jynew",
"token_count": 102
} | 1,481 |
#if UNITY_METRO
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
#if NETFX_CORE
using System.Threading.Tasks;
#endif
namespace UniRx
{
public static partial class Scheduler
{
public static readonly IScheduler Thre... | jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/ThreadPoolScheduler_UnityWinRT.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/ThreadPoolScheduler_UnityWinRT.cs",
"repo_id": "jynew",
"token_count": 1396
} | 1,482 |
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
namespace Cysharp.Threading.Tasks.CompilerServices
{
[StructLayout(LayoutKind.Auto... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs",
"repo_id": "jynew",
"token_count": 1887
} | 1,483 |
fileFormatVersion: 2
guid: 9938251206fca494db69f0dd99bd4561
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniTask/Runtime/External/DOTween.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/External/DOTween.meta",
"repo_id": "jynew",
"token_count": 67
} | 1,484 |
fileFormatVersion: 2
guid: fdea97971288a8d4cae50983f166eb06
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniTask/Runtime/Internal.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Internal.meta",
"repo_id": "jynew",
"token_count": 70
} | 1,485 |
fileFormatVersion: 2
guid: 340c6d420bb4f484aa8683415ea92571
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniTask/Runtime/Internal/PlayerLoopRunner.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Internal/PlayerLoopRunner.cs.meta",
"repo_id": "jynew",
"token_count": 92
} | 1,486 |
fileFormatVersion: 2
guid: 6c78563864409714593226af59bcb6f3
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniTask/Runtime/Internal/WeakDictionary.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Internal/WeakDictionary.cs.meta",
"repo_id": "jynew",
"token_count": 93
} | 1,487 |
using Cysharp.Threading.Tasks.Internal;
using System;
using System.Collections.Generic;
using System.Threading;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
public static IUniTaskAsyncEnumerable<IList<TSource>> Buffer<TSource>(this IUniTaskAsyncEnumerab... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs",
"repo_id": "jynew",
"token_count": 6839
} | 1,488 |
using Cysharp.Threading.Tasks.Internal;
using System;
using System.Collections.Generic;
using System.Threading;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
public static IUniTaskAsyncEnumerable<TSource> Distinct<TSource>(this IUniTaskAsyncEnumerable<TS... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/Distinct.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/Distinct.cs",
"repo_id": "jynew",
"token_count": 5228
} | 1,489 |
using Cysharp.Threading.Tasks.Internal;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
// Ix-Async returns IGrouping but it is competely waste, use standard IGroupi... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/GroupBy.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/GroupBy.cs",
"repo_id": "jynew",
"token_count": 20970
} | 1,490 |
using System;
using System.Threading;
using Cysharp.Threading.Tasks.Internal;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
public static UniTask<Int32> MinAsync(this IUniTaskAsyncEnumerable<Int32> source, CancellationToken cancellationToken = default)
... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs",
"repo_id": "jynew",
"token_count": 68275
} | 1,491 |
using Cysharp.Threading.Tasks.Internal;
using System.Threading;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
public static IUniTaskAsyncEnumerable<TElement> Repeat<TElement>(TElement element, int count)
{
if (count < 0) throw Error.A... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs",
"repo_id": "jynew",
"token_count": 913
} | 1,492 |
using Cysharp.Threading.Tasks.Internal;
using System;
using System.Collections.Generic;
using System.Threading;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
public static IUniTaskAsyncEnumerable<TSource> SkipLast<TSource>(this IUniTaskAsyncEnumerable<TS... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/SkipLast.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/SkipLast.cs",
"repo_id": "jynew",
"token_count": 2923
} | 1,493 |
using Cysharp.Threading.Tasks.Internal;
using System;
using System.Threading;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
public static IUniTaskAsyncEnumerable<TSource> TakeUntil<TSource>(this IUniTaskAsyncEnumerable<TSource> source, UniTask other)
... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/TakeUntil.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/TakeUntil.cs",
"repo_id": "jynew",
"token_count": 3558
} | 1,494 |
using Cysharp.Threading.Tasks.Internal;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Cysharp.Threading.Tasks.Linq
{
public static partial class UniTaskAsyncEnumerable
{
public static UniTask<ILookup<TKey, TSource>> ToLoo... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/ToLookup.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/ToLookup.cs",
"repo_id": "jynew",
"token_count": 11865
} | 1,495 |
fileFormatVersion: 2
guid: 382caacde439855418709c641e4d7b04
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/UnityExtensions/Timer.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/Linq/UnityExtensions/Timer.cs.meta",
"repo_id": "jynew",
"token_count": 93
} | 1,496 |
fileFormatVersion: 2
guid: 6347ab34d2db6d744a654e8d62d96b96
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Plugins/UniTask/Runtime/TimeoutController.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/TimeoutController.cs.meta",
"repo_id": "jynew",
"token_count": 96
} | 1,497 |
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System;
using System.Collections;
namespace Cysharp.Threading.Tasks
{
// UnityEngine Bridges.
public partial struct UniTask
{
public static IEnumerator ToCoroutine(Func<UniTask> taskFactory)
{... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/UniTask.Bridge.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/UniTask.Bridge.cs",
"repo_id": "jynew",
"token_count": 147
} | 1,498 |
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System;
using System.Runtime.CompilerServices;
using System.Runtime.ExceptionServices;
using System.Threading;
using Cysharp.Threading.Tasks.Internal;
namespace Cysharp.Threading.Tasks
{
public partial struct UniTask
... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/UniTask.WhenAny.Generated.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/UniTask.WhenAny.Generated.cs",
"repo_id": "jynew",
"token_count": 128988
} | 1,499 |
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System;
using System.Threading;
namespace Cysharp.Threading.Tasks
{
// UniTask has no scheduler like TaskScheduler.
// Only handle unobserved exception.
public static class UniTaskScheduler
{
publ... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/UniTaskScheduler.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/UniTaskScheduler.cs",
"repo_id": "jynew",
"token_count": 1936
} | 1,500 |
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
#if !UNITY_2019_1_OR_NEWER || UNITASK_UGUI_SUPPORT
using System;
using System.Threading;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;
namespace Cysharp.Threading.Tasks
{
public static partial class Unit... | jynew/jyx2/Assets/Plugins/UniTask/Runtime/UnityAsyncExtensions.uGUI.cs/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/UniTask/Runtime/UnityAsyncExtensions.uGUI.cs",
"repo_id": "jynew",
"token_count": 13303
} | 1,501 |
fileFormatVersion: 2
guid: c19bb24659a0b8b4884308bb3d01f568
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Any:
second:
... | jynew/jyx2/Assets/Plugins/WSA/ARM64/xlua.dll.meta/0 | {
"file_path": "jynew/jyx2/Assets/Plugins/WSA/ARM64/xlua.dll.meta",
"repo_id": "jynew",
"token_count": 258
} | 1,502 |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &594760580999783256
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2072858356719337063}
- component: {fileID: 6629... | jynew/jyx2/Assets/Prefabs/DebugPanel.prefab/0 | {
"file_path": "jynew/jyx2/Assets/Prefabs/DebugPanel.prefab",
"repo_id": "jynew",
"token_count": 59436
} | 1,503 |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &7433823944138341193
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2712810957973546671}
- component: {fileID: 394... | jynew/jyx2/Assets/Prefabs/Jyx2/AttackInfoText.prefab/0 | {
"file_path": "jynew/jyx2/Assets/Prefabs/Jyx2/AttackInfoText.prefab",
"repo_id": "jynew",
"token_count": 1562
} | 1,504 |
fileFormatVersion: 2
guid: 125447eeb71693a4193ad819368e0e34
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Prefabs/Jyx2UI/BattleActionOrderPanel.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Prefabs/Jyx2UI/BattleActionOrderPanel.prefab.meta",
"repo_id": "jynew",
"token_count": 64
} | 1,505 |
fileFormatVersion: 2
guid: c68aef8c0d76ea14cb8de26a964404b1
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Prefabs/Jyx2UI/EventSystem.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Prefabs/Jyx2UI/EventSystem.prefab.meta",
"repo_id": "jynew",
"token_count": 67
} | 1,506 |
fileFormatVersion: 2
guid: df21ea61e950d6e42bed2fdc9acdf2f8
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Prefabs/Jyx2UI/MessageBox.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Prefabs/Jyx2UI/MessageBox.prefab.meta",
"repo_id": "jynew",
"token_count": 66
} | 1,507 |
fileFormatVersion: 2
guid: 082e3223b718408419537322a8dfd67d
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Prefabs/Jyx2UI/SkillUIItem.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Prefabs/Jyx2UI/SkillUIItem.prefab.meta",
"repo_id": "jynew",
"token_count": 64
} | 1,508 |
fileFormatVersion: 2
guid: 3636ef8b5b376b04d9c3fe9e40b43a3a
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Prefabs/LoadingPanelCanvas.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Prefabs/LoadingPanelCanvas.prefab.meta",
"repo_id": "jynew",
"token_count": 69
} | 1,509 |
fileFormatVersion: 2
guid: 97301b5139455f74cb4065a3176edaf8
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/ABMD5.txt.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/ABMD5.txt.meta",
"repo_id": "jynew",
"token_count": 64
} | 1,510 |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b7f59e54f2bfd184b9dd451a678d089b, type: 3}
m_Na... | jynew/jyx2/Assets/Resources/CinemachineNoise/Handheld_tele_mild.asset/0 | {
"file_path": "jynew/jyx2/Assets/Resources/CinemachineNoise/Handheld_tele_mild.asset",
"repo_id": "jynew",
"token_count": 424
} | 1,511 |
fileFormatVersion: 2
guid: 2460ae2e897b1b848a8ef8d42855abff
TextureImporter:
internalIDToNameTable:
- first:
213: -6533666036242646450
second: Xbox_Control_0
- first:
213: -2566413014836674041
second: Xbox_Control_2
- first:
213: 7767923568541400380
second: Xbox_Control_3
- first... | jynew/jyx2/Assets/Resources/Controller/Xbox_Control.png.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/Controller/Xbox_Control.png.meta",
"repo_id": "jynew",
"token_count": 8957
} | 1,512 |
fileFormatVersion: 2
guid: ffcd3eafdbda21d4889a1f70d806ca56
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/MainCanvas.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/MainCanvas.prefab.meta",
"repo_id": "jynew",
"token_count": 65
} | 1,513 |
[InternetShortcut]
URL=http://u3dshop.vip/
| jynew/jyx2/Assets/Resources/TileWorldCreator/U3D资源基地 - 更多资源.url/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/U3D资源基地 - 更多资源.url",
"repo_id": "jynew",
"token_count": 19
} | 1,514 |
fileFormatVersion: 2
guid: 78d965b7a77e76241bd701f63343495a
folderAsset: yes
timeCreated: 1509723010
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/2DIsland/_mesh.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/2DIsland/_mesh.meta",
"repo_id": "jynew",
"token_count": 75
} | 1,515 |
fileFormatVersion: 2
guid: 3e4ec3b468b85c04293544d356df5b4c
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/CliffIsland/_prefabs/layer0/01_cliffIsland_edgeTile.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/CliffIsland/_prefabs/layer0/01_cliffIsland_edgeTile.prefab.meta",
"repo_id": "jynew",
"token_count": 60
} | 1,516 |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &130236
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 430236}
- component: {fileID: 3330236}
- component: {fileID: 2330236}
- component: ... | jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/CliffIsland/_prefabs/layer1/01_cliffIsland_edgeTile_var2.prefab/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/CliffIsland/_prefabs/layer1/01_cliffIsland_edgeTile_var2.prefab",
"repo_id": "jynew",
"token_count": 1197
} | 1,517 |
fileFormatVersion: 2
guid: 547ac7aaa0f3ad34fb34bd81aed884a1
timeCreated: 1454079120
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/CliffIsland/test_1.asset.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/CliffIsland/test_1.asset.meta",
"repo_id": "jynew",
"token_count": 70
} | 1,518 |
fileFormatVersion: 2
guid: 2d36f0cd2a108464eb99bc9ea6a1c0ca
timeCreated: 1457017050
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Dungeon/_materials/mat_Dungeon_dirt.mat.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Dungeon/_materials/mat_Dungeon_dirt.mat.meta",
"repo_id": "jynew",
"token_count": 75
} | 1,519 |
fileFormatVersion: 2
guid: 40a06593a104acb4d8072109c21ac1e2
timeCreated: 1457017784
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Dungeon/_prefabs/02_dungeon_cornerTile.prefab.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Dungeon/_prefabs/02_dungeon_cornerTile.prefab.meta",
"repo_id": "jynew",
"token_count": 73
} | 1,520 |
fileFormatVersion: 2
guid: 3829c6d26efd80b49a0aa0ca1a40197c
folderAsset: yes
timeCreated: 1509723009
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Prototype.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Prototype.meta",
"repo_id": "jynew",
"token_count": 77
} | 1,521 |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_Name: mat_preset00_stones
m_Shader: {fileID: 12, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_Lightma... | jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Prototype/_materials/mat_preset00_stones.mat/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/Prototype/_materials/mat_preset00_stones.mat",
"repo_id": "jynew",
"token_count": 550
} | 1,522 |
fileFormatVersion: 2
guid: 9d1038b2f9447294bb98e9392040e546
folderAsset: yes
timeCreated: 1509723010
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_materials.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_materials.meta",
"repo_id": "jynew",
"token_count": 75
} | 1,523 |
fileFormatVersion: 2
guid: ac1d2caf9cc06424b9c4d5e273d2cfa0
folderAsset: yes
timeCreated: 1509723010
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_meshes/tileC_wall.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_meshes/tileC_wall.meta",
"repo_id": "jynew",
"token_count": 80
} | 1,524 |
fileFormatVersion: 2
guid: a2b92d276d111fd449a5107676be54f9
folderAsset: yes
timeCreated: 1509723010
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_prefabs/layer1.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_prefabs/layer1.meta",
"repo_id": "jynew",
"token_count": 74
} | 1,525 |
fileFormatVersion: 2
guid: 4cd7c2f601711ce4dae1a6734613f23e
folderAsset: yes
timeCreated: 1509723010
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_textures/tileI_base.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Art/_Presets/SciFi/_textures/tileI_base.meta",
"repo_id": "jynew",
"token_count": 77
} | 1,526 |
fileFormatVersion: 2
guid: 3d882318011ea114fba4255853053c52
folderAsset: yes
timeCreated: 1509723009
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Core/Editor.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Core/Editor.meta",
"repo_id": "jynew",
"token_count": 72
} | 1,527 |
fileFormatVersion: 2
guid: e91b597b196003e44832a0f79d049c98
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Core/Editor/TileWorldCreatorRTEeditor.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Core/Editor/TileWorldCreatorRTEeditor.cs.meta",
"repo_id": "jynew",
"token_count": 71
} | 1,528 |
/* TILE WORLD CREATOR
* Copyright (c) 2015 doorfortyfour OG
*
* Create awesome tile worlds in seconds.
*
*
* Documentation: http://tileworldcreator.doofortyfour.com
* Like us on Facebook: http://www.facebook.com/doorfortyfour2013
* Web: http://www.doorfortyfour.com
* Contact: mail@doorfortyfour.com Contact u... | jynew/jyx2/Assets/Resources/TileWorldCreator/_Core/Utility/TileWorldNeighbourCounter.cs/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Core/Utility/TileWorldNeighbourCounter.cs",
"repo_id": "jynew",
"token_count": 5704
} | 1,529 |
fileFormatVersion: 2
guid: c09615a0a91cdd24ba907cc01cd46aab
timeCreated: 1467194754
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Demoscenes/02_cliffisland/mat_sky_cliffIslandDemo.mat.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Demoscenes/02_cliffisland/mat_sky_cliffIslandDemo.mat.meta",
"repo_id": "jynew",
"token_count": 71
} | 1,530 |
fileFormatVersion: 2
guid: a7c2c77ae1d71a04fb73b0b933c439ac
timeCreated: 1467187956
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Demoscenes/10_dungeon/10_dungeon.unity.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Demoscenes/10_dungeon/10_dungeon.unity.meta",
"repo_id": "jynew",
"token_count": 74
} | 1,531 |
fileFormatVersion: 2
guid: 97b928d6f46eb754a82a3c6b9ddeb279
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/_Demoscenes/Materials/mat_start.mat.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/_Demoscenes/Materials/mat_start.mat.meta",
"repo_id": "jynew",
"token_count": 60
} | 1,532 |
fileFormatVersion: 2
guid: cdd5685893d3bd64faf455bf491968d0
timeCreated: 1427805757
licenseType: Store
TextScriptImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Resources/TileWorldCreator/changelog.txt.meta/0 | {
"file_path": "jynew/jyx2/Assets/Resources/TileWorldCreator/changelog.txt.meta",
"repo_id": "jynew",
"token_count": 69
} | 1,533 |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public partial class UIDataTemplate
{
#property
public void InitTrans()
{
#findtrans
}
}
| jynew/jyx2/Assets/Scripts/Editor/UIDataTemplate.lua/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/Editor/UIDataTemplate.lua",
"repo_id": "jynew",
"token_count": 63
} | 1,534 |
/*
* 金庸群侠传3D重制版
* https://github.com/jynew/jynew
*
* 这是本开源项目文件头,所有代码均使用MIT协议。
* 但游戏内资源和第三方插件、dll等请仔细阅读LICENSE相关授权协议文档。
*
* 金庸老先生千古!
*/
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.EventSystems;
using UnityEngine.UI;
using System;
public enum BattleBlockStatu... | jynew/jyx2/Assets/Scripts/GameBattle/BattleBlock.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameBattle/BattleBlock.cs",
"repo_id": "jynew",
"token_count": 2301
} | 1,535 |
/*
* 金庸群侠传3D重制版
* https://github.com/jynew/jynew
*
* 这是本开源项目文件头,所有代码均使用MIT协议。
* 但游戏内资源和第三方插件、dll等请仔细阅读LICENSE相关授权协议文档。
*
* 金庸老先生千古!
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Cinemachine;
using Cysharp.Threading.Tasks;
using DG.Tweening;
using i18n.Tra... | jynew/jyx2/Assets/Scripts/GameBattle/BattleManager.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameBattle/BattleManager.cs",
"repo_id": "jynew",
"token_count": 10672
} | 1,536 |
/*
* 金庸群侠传3D重制版
* https://github.com/jynew/jynew
*
* 这是本开源项目文件头,所有代码均使用MIT协议。
* 但游戏内资源和第三方插件、dll等请仔细阅读LICENSE相关授权协议文档。
*
* 金庸老先生千古!
*/
using Jyx2;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
//输入管理 主要是输入的一些共有方法
public class InputManager
{
p... | jynew/jyx2/Assets/Scripts/GameBattle/InputManager.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameBattle/InputManager.cs",
"repo_id": "jynew",
"token_count": 1743
} | 1,537 |
fileFormatVersion: 2
guid: 0543da9fd99515543a2ebfd70d8ded26
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/GameCore/GameStart.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameCore/GameStart.cs.meta",
"repo_id": "jynew",
"token_count": 92
} | 1,538 |
fileFormatVersion: 2
guid: 8b45326e40d0f904d9f9c1ea7d6469f8
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/GameCore/InputLogics/Core/Context/InputContextManager.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameCore/InputLogics/Core/Context/InputContextManager.cs.meta",
"repo_id": "jynew",
"token_count": 99
} | 1,539 |
using Sirenix.OdinInspector;
using UnityEngine;
namespace Jyx2.InputCore.UI
{
[AddComponentMenu("")]
[DisallowMultipleComponent]
public class Jyx2Input_UIContext: Jyx2InputContextBase
{
[SerializeField]
private GameObject m_FirstSelect;
[SerializeField]
private GameObj... | jynew/jyx2/Assets/Scripts/GameCore/InputLogics/Core/Context/UI/Jyx2Input_UIContext.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameCore/InputLogics/Core/Context/UI/Jyx2Input_UIContext.cs",
"repo_id": "jynew",
"token_count": 1209
} | 1,540 |
using UnityEngine;
namespace Jyx2.InputCore
{
//MonoSingleton 有销毁生命周期的问题,这里还是用个proxy来初始化Instance
internal class Jyx2InputBehaviour:MonoBehaviour
{
private void Awake()
{
InputContextManager.Instance.Init();
}
private void OnDestroy()
{
Input... | jynew/jyx2/Assets/Scripts/GameCore/InputLogics/Core/Jyx2InputBehaviour.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameCore/InputLogics/Core/Jyx2InputBehaviour.cs",
"repo_id": "jynew",
"token_count": 522
} | 1,541 |
fileFormatVersion: 2
guid: 1028cdd760bb85144b6e9475852ba968
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/GameMaps/CameraControls/CinemachineTriggerActionHelper.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameMaps/CameraControls/CinemachineTriggerActionHelper.cs.meta",
"repo_id": "jynew",
"token_count": 91
} | 1,542 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
using UnityEngine.AI;
namespace Jyx2
{
[DisallowMultipleComponent]
public class Jyx2_PlayerAutoWalk:MonoBehaviour
{
private NavMeshAgent m_NavmeshAgent;
p... | jynew/jyx2/Assets/Scripts/GameMaps/PlayerControl/Jyx2_PlayerAutoWalk.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/GameMaps/PlayerControl/Jyx2_PlayerAutoWalk.cs",
"repo_id": "jynew",
"token_count": 1241
} | 1,543 |
fileFormatVersion: 2
guid: 6bb8dc0318dc683489da97e5dca4f57d
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/LuaCore/Loom.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/LuaCore/Loom.cs.meta",
"repo_id": "jynew",
"token_count": 95
} | 1,544 |
fileFormatVersion: 2
guid: 7401fe231c1745deb2bd50417ee73f39
timeCreated: 1670081669 | jynew/jyx2/Assets/Scripts/MOD/ModV2/UI/AddModPanelTemp.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/MOD/ModV2/UI/AddModPanelTemp.cs.meta",
"repo_id": "jynew",
"token_count": 37
} | 1,545 |
fileFormatVersion: 2
guid: fbe52c6dbfe9c704d9f9f1cbce409f29
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/UI/BattleActionOrderPanel.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/UI/BattleActionOrderPanel.cs.meta",
"repo_id": "jynew",
"token_count": 96
} | 1,546 |
fileFormatVersion: 2
guid: 95fb9be5d73ef1d4eab10b243e00e1c1
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/UI/CommonTipsUIPanel.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/UI/CommonTipsUIPanel.cs.meta",
"repo_id": "jynew",
"token_count": 97
} | 1,547 |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public partial class GameInfoPanel:Jyx2_UIBase
{
public override UILayer Layer => UILayer.Top;
public override bool AlwaysDisplay => true;
protected override void OnCreate()
{
InitTrans();
}
protected overrid... | jynew/jyx2/Assets/Scripts/UI/GameInfoPanel.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/UI/GameInfoPanel.cs",
"repo_id": "jynew",
"token_count": 147
} | 1,548 |
/*
* 金庸群侠传3D重制版
* https://github.com/jynew/jynew
*
* 这是本开源项目文件头,所有代码均使用MIT协议。
* 但游戏内资源和第三方插件、dll等请仔细阅读LICENSE相关授权协议文档。
*
* 金庸老先生千古!
*/
using DG.Tweening;
using UnityEngine;
using UnityEngine.UI;
public class HPBar : MonoBehaviour
{
[HideInInspector]
public Image fillImage;
Image secondFillImage;
... | jynew/jyx2/Assets/Scripts/UI/HPBar.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/UI/HPBar.cs",
"repo_id": "jynew",
"token_count": 808
} | 1,549 |
using i18n.TranslatorDef;
using Rewired;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TMPro;
using UnityEngine;
namespace Jyx2.InputCore
{
public class ControllerButtonNotice:MonoBehaviour
{
[SerializeField]
private J... | jynew/jyx2/Assets/Scripts/UI/UIComponents/ControllerButtonNotice.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/UI/UIComponents/ControllerButtonNotice.cs",
"repo_id": "jynew",
"token_count": 781
} | 1,550 |
fileFormatVersion: 2
guid: 95e0b083da7a29a42aa507f36ddf1f48
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/UI/UIData/BattleActionOrderPanel_UIData.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/UI/UIData/BattleActionOrderPanel_UIData.cs.meta",
"repo_id": "jynew",
"token_count": 95
} | 1,551 |
fileFormatVersion: 2
guid: f4e7014b9bc8a5f4385efa4b0053d4c0
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/UI/UIData/XiakeUIPanel_UIData.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/UI/UIData/XiakeUIPanel_UIData.cs.meta",
"repo_id": "jynew",
"token_count": 99
} | 1,552 |
fileFormatVersion: 2
guid: 35a60d8fa97ac294e9b6a2161751f125
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/Utils/Helpers.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/Utils/Helpers.meta",
"repo_id": "jynew",
"token_count": 69
} | 1,553 |
/*
* 金庸群侠传3D重制版
* https://github.com/jynew/jynew
*
* 这是本开源项目文件头,所有代码均使用MIT协议。
* 但游戏内资源和第三方插件、dll等请仔细阅读LICENSE相关授权协议文档。
*
* 金庸老先生千古!
*/
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
using Random = UnityEngine.Random;
namespace Jyx2
{
... | jynew/jyx2/Assets/Scripts/Utils/Helpers/ta/DissolveByCamera.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/Utils/Helpers/ta/DissolveByCamera.cs",
"repo_id": "jynew",
"token_count": 556
} | 1,554 |
using System;
namespace Jyx2.Util
{
public class Singleton<T> where T : class, new()
{
private static bool _HasInstanced = false;
private static T _instance;
public static T Instance
{
get
{
if (!_HasInstanced)
{
... | jynew/jyx2/Assets/Scripts/Utils/Singleton.cs/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/Utils/Singleton.cs",
"repo_id": "jynew",
"token_count": 398
} | 1,555 |
fileFormatVersion: 2
guid: a4745021cf3f7ff4693f20f1c4bb1074
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/Scripts/Utils/UnityTools.cs.meta/0 | {
"file_path": "jynew/jyx2/Assets/Scripts/Utils/UnityTools.cs.meta",
"repo_id": "jynew",
"token_count": 95
} | 1,556 |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Terrain2Mesh
m_Shader: {fileID: 4800000, guid: 499d4667d8f7d0b47ae6c5f4f804e31e, type: 3... | jynew/jyx2/Assets/Terrain2Mesh/Terrain2Mesh.mat/0 | {
"file_path": "jynew/jyx2/Assets/Terrain2Mesh/Terrain2Mesh.mat",
"repo_id": "jynew",
"token_count": 1261
} | 1,557 |
fileFormatVersion: 2
guid: 494a481f06e1c0b40ae0ef2a8176523e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/VFX/EffectsPackage.meta/0 | {
"file_path": "jynew/jyx2/Assets/VFX/EffectsPackage.meta",
"repo_id": "jynew",
"token_count": 72
} | 1,558 |
fileFormatVersion: 2
guid: 45d3af9e5355dd648b682b605a08c03e
timeCreated: 1511851137
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/VFX/EffectsPackage/EffectPackage/ArtData/Effects/Animation_new/E3D-Ground-Blast-Blue4.controller.meta/0 | {
"file_path": "jynew/jyx2/Assets/VFX/EffectsPackage/EffectPackage/ArtData/Effects/Animation_new/E3D-Ground-Blast-Blue4.controller.meta",
"repo_id": "jynew",
"token_count": 72
} | 1,559 |
fileFormatVersion: 2
guid: 52e63adbb8ec76d4781445151913a906
timeCreated: 1510107961
licenseType: Pro
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/VFX/EffectsPackage/EffectPackage/ArtData/Effects/Animation_new/E3D-Ground-Spread-Glod1.controller.meta/0 | {
"file_path": "jynew/jyx2/Assets/VFX/EffectsPackage/EffectPackage/ArtData/Effects/Animation_new/E3D-Ground-Spread-Glod1.controller.meta",
"repo_id": "jynew",
"token_count": 71
} | 1,560 |
fileFormatVersion: 2
guid: 5edc1cb88c3d6af4bb56dc14d9312e9f
timeCreated: 1511257358
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| jynew/jyx2/Assets/VFX/EffectsPackage/EffectPackage/ArtData/Effects/Animation_new/E3D-Ground-Spread-Glod5.controller.meta/0 | {
"file_path": "jynew/jyx2/Assets/VFX/EffectsPackage/EffectPackage/ArtData/Effects/Animation_new/E3D-Ground-Spread-Glod5.controller.meta",
"repo_id": "jynew",
"token_count": 74
} | 1,561 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.