我是靠谱客的博主 失眠黑夜,这篇文章主要介绍PhotonServer新增应用的配置,现在分享给大家,希望可以做个参考。

一,如下代码配置

 <MyGameInstance
        MaxMessageSize="512000"
        MaxQueuedDataPerPeer="512000"
        PerPeerMaxReliableDataInTransit="51200"
        PerPeerTransmitRateLimitKBSec="256"
        PerPeerTransmitRatePeriodMilliseconds="200"
        MinimumTimeout="5000"
        MaximumTimeout="30000"
        DisplayName="MyGame"    
        >
    <!-- OverrideApplication表示加载下面定义的Applications的名字如下MyGame1, -->
    <UDPListeners>
      <UDPListener
                IPAddress="0.0.0.0"
                Port="5055"
                OverrideApplication="MyGame1">
      </UDPListener>
    </UDPListeners>
    <TCPListeners>
      <TCPListener
                IPAddress="0.0.0.0"
                Port="4530"
                PolicyFile="Policyassetssocket-policy.xml"
                InactivityTimeout="10000"
                OverrideApplication="MyGame1"
                >
      </TCPListener>
    </TCPListeners>
    <Runtime
            Assembly="PhotonHostRuntime, Culture=neutral"
            Type="PhotonHostRuntime.PhotonDomainManager"
            UnhandledExceptionPolicy="Ignore">
    </Runtime>

    <!-- Default表示默认加载的应用 如加载下面Application的MyGame1-->
    <Applications Default="MyGame1">
      
    <!--BaseDirectory文件夹。Assembly程序集。Type那个类为起始类-->
      <Application
                Name="MyGame1"
                BaseDirectory="MyGameServer"
                Assembly="MyGameServer"
                Type="MyGameServer.MyGameServer"
                ForceAutoRestart="true"
                WatchFiles="dll;config"
                ExcludeFiles="log4net.config">
      </Application>

    </Applications>
  </MyGameInstance>

 二,log4net的配置,选择为始终复制,这样才会生成到输出目录

 

转载于:https://www.cnblogs.com/May-day/p/9487612.html

最后

以上就是失眠黑夜最近收集整理的关于PhotonServer新增应用的配置的全部内容,更多相关PhotonServer新增应用内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部