Started on spawning a player actor

This commit is contained in:
AeonLucid
2022-01-13 02:00:36 +01:00
parent a7399a1960
commit 6cd03d9ff7
9 changed files with 173 additions and 20 deletions
+31 -2
View File
@@ -1,6 +1,35 @@
namespace Prospect.Unreal.Net.Actors;
using Prospect.Unreal.Core;
namespace Prospect.Unreal.Net.Actors;
public class AActor
{
/// <summary>
/// Sets the value of Role without causing other side effects to this instance.
/// </summary>
public void SetRole(ENetRole inRole)
{
// TODO: Implement
throw new NotImplementedException();
}
/// <summary>
/// Set whether this actor replicates to network clients. When this actor is spawned on the server it will be sent to clients as well.
/// Properties flagged for replication will update on clients if they change on the server.
/// Internally changes the RemoteRole property and handles the cases where the actor needs to be added to the network actor list.
/// </summary>
public void SetReplicates(bool bInReplicates)
{
// TODO: Implement
throw new NotImplementedException();
}
/// <summary>
/// Sets whether or not this Actor is an autonomous proxy, which is an actor on a network client that is controlled by a user on that client.
/// </summary>
public void SetAutonomousProxy(bool bInAutonomousProxy, bool bAllowForcePropertyCompare = true)
{
// TODO: Implement
throw new NotImplementedException();
}
}