- Joined
- Jul 11, 2020
- Messages
- 0
- Reaction score
- 26
- Points
- 0
Code:
public void drawParticles() {
for (Particle p : this.particles) {
GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
GL11.glBegin(GL11.GL_LINE);
GL11.glLineWidth(1.0f);
GL11.glVertex3d(p.x, p.y, 0);
GL11.glVertex3d(Mouse.getX(), Mouse.getY(), 0);
GL11.glEnd();
p.draw();
}
}
Tell me pls, will doch nur zum test ne Linie von Punkten zu meiner Maus lol