NetworkTestPlayerComponent.AutoComponent.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0"?>
  2. <Component
  3. Name="NetworkTestPlayerComponent"
  4. Namespace="AutomatedTesting"
  5. OverrideComponent="false"
  6. OverrideController="false"
  7. OverrideInclude=""
  8. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  9. <ComponentRelation Constraint="Required" HasController="true" Name="NetworkTransformComponent" Namespace="Multiplayer" Include="Multiplayer/Components/NetworkTransformComponent.h" />
  10. <NetworkInput Type="float" Name="FwdBack" Init="0.0f" ExposeToScript="true"/>
  11. <NetworkInput Type="float" Name="LeftRight" Init="0.0f" ExposeToScript="true"/>
  12. <RemoteProcedure Name="AutonomousToAuthority" InvokeFrom="Autonomous" HandleOn="Authority" IsPublic="false" IsReliable="false" GenerateEventBindings="true" Description="" >
  13. <Param Type="float" Name="SomeFloat" />
  14. </RemoteProcedure>
  15. <RemoteProcedure Name="AutonomousToAuthorityNoParams" InvokeFrom="Autonomous" HandleOn="Authority" IsPublic="false" IsReliable="false" GenerateEventBindings="true" Description="" />
  16. <RemoteProcedure Name="AuthorityToAutonomous_PlayerNumber" InvokeFrom="Authority" HandleOn="Autonomous" IsPublic="false" IsReliable="true" GenerateEventBindings="true" Description="" >
  17. <Param Type="int" Name="player_number" />
  18. </RemoteProcedure>
  19. <RemoteProcedure Name="AuthorityToAutonomousNoParams" InvokeFrom="Authority" HandleOn="Autonomous" IsPublic="false" IsReliable="false" GenerateEventBindings="true" Description="" />
  20. <RemoteProcedure Name="AuthorityToClient" InvokeFrom="Authority" HandleOn="Client" IsPublic="false" IsReliable="false" GenerateEventBindings="true" Description="" >
  21. <Param Type="float" Name="SomeFloat" />
  22. </RemoteProcedure>
  23. <RemoteProcedure Name="ServerToAuthority_DealDamage" InvokeFrom="Server" HandleOn="Authority" IsPublic="false" IsReliable="true" GenerateEventBindings="true" Description="" >
  24. <Param Type="float" Name="damage" />
  25. </RemoteProcedure>
  26. <RemoteProcedure Name="ServerToAuthorityNoParam" InvokeFrom="Server" HandleOn="Authority" IsPublic="false" IsReliable="false" GenerateEventBindings="true" Description="" />
  27. </Component>