简体   繁体   中英

need to get the pixel screen height

在此处输入图像描述

I need to get the image position print string it's position and y+= _speed moves the image up the screen I need to descend the image if it reaches the screen height position

public void update()
{
    // put your code here
    double ypos;
    y += _speed;
    if (ypos = true) y -= _speed;
    else                   System.out.println(x + " is not positive");

}

I want to detect the screen edge with image

 public SeaHorse()
{
    // initialise instance variables
    super("models/billboard/billboard.obj", "textures/javaFish/Seahorse.png", 0.4);
    setPosition(1.0,1.0,1.0);
    setOrientation(90,0,0);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM