gpt4 book ai didi

java - 如何单独设置文本字母的颜色?

转载 作者:行者123 更新时间:2023-12-01 18:53:06 25 4
gpt4 key购买 nike

如何制作文本,以便在 andengine GLES 2 中每个字母都是随机颜色?对于随机颜色我可以去

int red = (int) (Math.random() * 254) + 1;
int green = (int) (Math.random() * 254) + 1;
int blue = (int) (Math.random() * 254) + 1;
Color pColor = new Color(red, green, blue);

但是我如何单独将其设置为每个字母?

最佳答案

每个字母都必须是它自己的文本,并随机设置每个字母的颜色 - 就这样做

当您创建文本时,在创建时将颜色设置为白色,然后将其更改为随机颜色

顺便说一句,(据我所知)没有办法在单个文本中做到这一点

关于java - 如何单独设置文本字母的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15149881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com