本文整理了Java中com.jme3.system.AppSettings.getIcons()
方法的一些代码示例,展示了AppSettings.getIcons()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AppSettings.getIcons()
方法的具体详情如下:
包路径:com.jme3.system.AppSettings
类名称:AppSettings
方法名:getIcons
[英]Get the icon array
[中]获取图标数组
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
if (source.getIcons() != null) {
safeSetIconImages( (List<BufferedImage>) Arrays.asList((BufferedImage[]) source.getIcons()) );
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
/**
* Set custom icons to the window of this application.
*/
protected void setWindowIcon(final AppSettings settings) {
final Object[] icons = settings.getIcons();
if (icons == null) return;
final GLFWImage[] images = imagesToGLFWImages(icons);
try (final GLFWImage.Buffer iconSet = GLFWImage.malloc(images.length)) {
for (int i = images.length - 1; i >= 0; i--) {
final GLFWImage image = images[i];
iconSet.put(i, image);
}
glfwSetWindowIcon(window, iconSet);
}
}
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
if (settings.getIcons() != null) {
Display.setIcon(imagesToByteBuffers(settings.getIcons()));
代码示例来源:origin: us.ihmc.thirdparty.jme/jme3-desktop
if (source.getIcons() != null) {
safeSetIconImages( (List<BufferedImage>) Arrays.asList((BufferedImage[]) source.getIcons()) );
代码示例来源:origin: info.projectkyoto/mms-engine
if (source.getIcons() != null) {
safeSetIconImages( (List<BufferedImage>) Arrays.asList((BufferedImage[]) source.getIcons()) );
代码示例来源:origin: org.jmonkeyengine/jme3-lwjgl3
/**
* Set custom icons to the window of this application.
*/
protected void setWindowIcon(final AppSettings settings) {
final Object[] icons = settings.getIcons();
if (icons == null) return;
final GLFWImage[] images = imagesToGLFWImages(icons);
try (final GLFWImage.Buffer iconSet = GLFWImage.malloc(images.length)) {
for (int i = images.length - 1; i >= 0; i--) {
final GLFWImage image = images[i];
iconSet.put(i, image);
}
glfwSetWindowIcon(window, iconSet);
}
}
代码示例来源:origin: us.ihmc.thirdparty.jme/jme3-lwjgl
if (settings.getIcons() != null) {
Display.setIcon(imagesToByteBuffers(settings.getIcons()));
内容来源于网络,如有侵权,请联系作者删除!