Java LibGDX BitmapFont setScale 方法不起作用

Java LibGDX BitmapFont setScale method not working(Java LibGDX BitmapFont setScale 方法不起作用)
本文介绍了Java LibGDX BitmapFont setScale 方法不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我目前正在尝试缩放字体,但收到错误消息方法 setScale(float, float) 未定义 BitmapFont 类型"这是我收到错误的代码部分,特别是在第 2 行和第 4 行.

I am currently trying to scale a font but I am receiving the error "the method setScale(float, float) is undefined for the type BitmapFont" This is the code section where I am getting the error, specifically in lines 2 and 4.

    font = new BitmapFont(Gdx.files.internal("text.fnt"));
    font.setScale (.25f, -.25f);
    shadow = new BitmapFont(Gdx.files.internal("shadow.fnt"));
    shadow.setScale (.25f -.25f);

我在这里创建了变量

  public static  BitmapFont font;
public  static BitmapFont shadow;

当我检查使用 setScale 函数的其他示例时,这似乎是使用的格式.关于为什么会发生这种情况的任何想法?

When I check other examples of using the setScale function, this seems to be the format used. Any ideas as to why this is occurring?

推荐答案

这个方法在 BitmapFont 类.

LibGDX 1.5.6(发布于2015 年 4 月),如 libgdx 团队博客文章中所述.您遵循的教程现在可能已经过时了.

An API change for the Bitmap* classes has been introduced with LibGDX 1.5.6 (released in April 2015) as explained in this libgdx team blog post. The tutorial you followed is probably now outdated.

长话短说,使用最新的 libgdx 版本,您应该可以做到:

Long story short, with the latest libgdx version, you should be able to do :

font.getData().setScale(.25f,.25f);

这篇关于Java LibGDX BitmapFont setScale 方法不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)