LibGDX: Particle scale(LibGDX:粒子尺度)
问题描述
在我的游戏中我使用
static final float FRUSTUM_WIDTH = 10;
static final float FRUSTUM_HEIGHT = 15;
所以当我绘制粒子时,它们占据了整个屏幕并且非常大!那么如何缩小它们以满足我的需求呢?
So when I draw the particles they take the whole screen and are huge! So how do I scale them down to fit my needs?
//皮尤实验室
推荐答案
要么你使用粒子编辑器(老实说我不认为调整粒子大小是一个好主意,因为你提到粒子不会得到太小(对于其他我真的推荐它))或者你只是打开粒子效果文件.它应该由编辑器生成,或者您可以从示例中复制它.在此文件中搜索以下字段:
Either you use the particle editor (to be honest I don't think it's a good idea for sizing the particles, as you mentioned the particles won't get too small (for anything else I really recommend it)) or you just open the particle effect file. It should be generated by the editor or you can copy it from the examples. In this file search the fields below:
- Scale -
lowMin: 0.0
lowMax: 0.0
highMin: 0.6
highMax: 0.6
relative: false
scalingCount: 1
scaling0: 1.0
timelineCount: 1
timeline0: 0.0
根据需要调整 highMin
和 highMax
.
Adjust the highMin
and highMax
as needed.
这篇关于LibGDX:粒子尺度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:LibGDX:粒子尺度
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01