Java Help

Status
This thread has been locked.

FoundYourFlow

FoundYourFlow#4760
Banned
Feedback score
25
Posts
1,166
Reactions
537
Resources
0
Im trying to make a spaceship its basic and I just need the WINGS part, help me out ill pay you like a dollar xxx

package spaceship;

import processing.core.PApplet;

public class Spaceship extends PApplet {

public static void main(String[] args) {
PApplet.main("spaceship.Spaceship");
}

public void settings() {
size (700, 800);
}

public void setup() {
background(255,255,255);
}

public void draw() {
face(100, 300);
}

public void face(float xPos, float yPos){
fill(0,149,185);
rect(xPos, yPos, 500, 300);
leftEar(xPos - 25, yPos + 100);

}

public void leftEar(float earX, float earY){
fill(244, 121, 0);
rect(earX, earY, 25, 100);
}

public void front (float frontX, float frontY) {
fill(200, 200, 200);
ellipse(frontX, frontY, 100, 100);
ellipse(frontX + 300, frontY, 25, 25);
}
public void wings (float wingsX, float wingsY){

}

}
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

FL4W

Feedback score
5
Posts
151
Reactions
63
Resources
0
No one can help you with this because you provided no API.
 

Killstreak702

Premium
Feedback score
1
Posts
227
Reactions
105
Resources
0
I highly doubt anyone will help you here because literally every dev on this forum has their knowledge restricted to Minecraft-related development. I recommend going over to Stack Overflow instead.
 

taydev

Feedback score
1
Posts
8
Reactions
1
Resources
0
I highly doubt anyone will help you here because literally every dev on this forum has their knowledge restricted to Minecraft-related development. I recommend going over to Stack Overflow instead.

tfw every other development post is advertising development in something other than mc
 
Status
This thread has been locked.
Top