xn333 发表于 2024-3-14 16:00

请教下如何自制队徽

这个队徽是自己球队朋友们一起设计的,想用这个队徽在游戏里自创一个俱乐部玩,请教一下自制队徽都需要什么软件和步骤

yxinyue 发表于 2024-3-14 21:40

没啥扣个图,改个尺寸就好了

yxinyue 发表于 2024-3-14 21:41

graphics里创建个文件夹,文件夹里套两个文件夹normal和small
normal里放队徽logo 180x180的然后创建个config.xml文件里面写
<record>
      <!-- resource manager options -->

      <!-- don't preload anything in this folder -->
      <boolean id="preload" value="false"/>

      <!-- turn off auto mapping -->
      <boolean id="amap" value="false"/>

      <!-- picture mappings -->
      <!-- the following XML maps pictures inside this folder into other positions
                in the resource system, which allows this folder to be dropped into any
                place in the graphics folder and still have the game pick up the graphics
                files from the correct places
      -->

      <list id="maps">
                <record from="图片名称" to="graphics/pictures/club/俱乐部id/logo"/>
      </list>
</record>
在small放缩小版的队徽icons 25x18的 创建config.xml在里面写
<record>
      <!-- resource manager options -->

      <!-- don't preload anything in this folder -->
      <boolean id="preload" value="false"/>

      <!-- turn off auto mapping -->
      <boolean id="amap" value="false"/>

      <!-- picture mappings -->
      <!-- the following XML maps pictures inside this folder into other positions
                in the resource system, which allows this folder to be dropped into any
                place in the graphics folder and still have the game pick up the graphics
                files from the correct places
      -->

      <list id="maps">
                <record from="图片名称" to="graphics/pictures/club/俱乐部id/icon"/>
      </list>
</record>
最后刷新一下皮肤就ok了

xn333 发表于 2024-3-15 10:57

yxinyue 发表于 2024-3-14 21:41
graphics里创建个文件夹,文件夹里套两个文件夹normal和small
normal里放队徽logo 180x180的然后创建个con ...

研究明白了 感谢{:16_780:}
页: [1]
查看完整版本: 请教下如何自制队徽