Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

96
Views
P5.play.js keyDown instruction dosen't work

does anybody know why this piece of code doesn't work? I am using p5 libraries like p5.play,p5.js.p5.sound,p5dominm or smth like that. Heres the piece of code :

class Player{
constructor(){
    this.x,
    this.y,
    this.width,
    this.height
}



if(keyPressed(d)) {
    player.x=player.x+6;
    distance=distance+0.5
}

}

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

After creating a class you need to create an instance of the class. Try this way:

class Player{
constructor(){
    this.x,
    this.y,
    this.width,
    this.height
}

const player = new Player();

if(keyPressed(d)) {
    player.x=player.x+6;
    distance=distance+0.5
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!