更新了网络服务接口定义

This commit is contained in:
CortexCore
2023-06-07 02:02:14 +08:00
parent 08b05f8a74
commit b2444fd909
2727 changed files with 20455 additions and 4448 deletions

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 38cc9d14a87ac7d44a174a011663463d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -139,6 +139,7 @@ namespace BITKit
private async void Start()
{
var fileName = this.fileName;
await UniTask.SwitchToThreadPool();
if (File.Exists(fileName))
{

View File

@@ -2,7 +2,7 @@
// <auto-generated>
// This code was auto-generated by com.unity.inputsystem:InputActionCodeGenerator
// version 1.5.1
// from Assets/BITKits/Configs/Input/BITController.inputactions
// from Assets/BITKit/Configs/Input/BITController.inputactions
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.

View File

@@ -17,6 +17,11 @@ namespace BITKit
List<InputAction> actions = new();
public InputActionGroup RegisterCallback(InputActionReference reference, Action<InputAction.CallbackContext> callback)
{
if (reference is null)
{
Debug.LogWarning($"未知的引用");
return this;
}
EnsureConfiguration();
var action = reference.action.Clone();

View File

@@ -1,5 +1,5 @@
{
"name": "BITKits.MarkSystem",
"name": "BITKit.MarkSystem",
"rootNamespace": "",
"references": [
"GUID:a209c53514018594f9f482516f2a6781",

View File

@@ -1,5 +1,5 @@
{
"name": "BITKits.UX.Components",
"name": "BITKit.UX.Components",
"rootNamespace": "",
"references": [
"GUID:a209c53514018594f9f482516f2a6781",

View File

@@ -12,7 +12,7 @@ namespace BITKit
public string path;
public Location location;
}
[CreateOnStart(BITAppForUnity.Path.Services,nameof(VFXService))]
//[CreateOnStart(BITAppForUnity.Path.Services,nameof(VFXService))]
public class VFXService : MonoBehaviour, IObjectMatcher<string, Transform>
{
static VFXService sinleton;