no message

This commit is contained in:
PC-20230316NUNE\Administrator
2024-02-20 18:39:12 +08:00
parent 97b3671979
commit 2b467e56ad
1876 changed files with 440340 additions and 35266 deletions

View File

@@ -0,0 +1,37 @@
using System.Collections;
using System.Collections.Generic;
using Game.Plugins.App.Game.RVO;
using Game.Plugins.JNGame.Sync.Frame.AstarPath.RVO;
using Script.battle;
using UnityEngine;
public class RVODemoMode : GBaseMode<Object>
{
//初始化避障
public JNRVOSimulator Simulator => GetComponent<JNGRVOManager>().Simulator;
//随机间隔
private int time = 0;
public override void OnSyncUpdate(int dt, JNFrameInfo frame, Object input)
{
base.OnSyncUpdate(dt, frame, input);
//随机目标点
time -= dt;
if (time <= 0)
{
time = 5000;
//随机
foreach (var child in this.GetComponentsInChildren<JNGRVOAgent>())
{
child.SetTarget(new Vector2(GetSync().nRandomFloat(-30,30),GetSync().nRandomFloat(-30,30)));
}
}
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: e4fcb4b90eedbcc4a879eeab339b5b24
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: