Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete duplicate example on keyIsPressed reference page #658

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions src/content/reference/en/p5/keyIsPressed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,34 +46,6 @@ example:
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

describe(
'A gray square with a white square at its center. The white square turns black when the user presses a key.'
);
}

function draw() {
background(200);

// Style the square.
if (keyIsPressed) {
fill(0);
} else {
fill(255);
}

// Draw the square.
square(25, 25, 50);
}
</code>
</div>

<div>
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

Expand Down
28 changes: 0 additions & 28 deletions src/content/reference/es/p5/keyIsPressed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,34 +46,6 @@ example:
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

describe(
'A gray square with a white square at its center. The white square turns black when the user presses a key.'
);
}

function draw() {
background(200);

// Style the square.
if (keyIsPressed) {
fill(0);
} else {
fill(255);
}

// Draw the square.
square(25, 25, 50);
}
</code>
</div>

<div>
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

Expand Down
28 changes: 0 additions & 28 deletions src/content/reference/hi/p5/keyIsPressed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,34 +46,6 @@ example:
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

describe(
'A gray square with a white square at its center. The white square turns black when the user presses a key.'
);
}

function draw() {
background(200);

// Style the square.
if (keyIsPressed) {
fill(0);
} else {
fill(255);
}

// Draw the square.
square(25, 25, 50);
}
</code>
</div>

<div>
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

Expand Down
30 changes: 1 addition & 29 deletions src/content/reference/ko/p5/keyIsPressed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,7 @@ example:
}
</code>
</div>

<div>
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

describe(
'A gray square with a white square at its center. The white square turns black when the user presses a key.'
);
}

function draw() {
background(200);

// Style the square.
if (keyIsPressed) {
fill(0);
} else {
fill(255);
}

// Draw the square.
square(25, 25, 50);
}
</code>
</div>


<div>
<code>
// Click on the canvas to begin detecting key presses.
Expand Down
30 changes: 1 addition & 29 deletions src/content/reference/zh-Hans/p5/keyIsPressed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,7 @@ example:
}
</code>
</div>

<div>
<code>
// Click on the canvas to begin detecting key presses.

function setup() {
createCanvas(100, 100);

describe(
'A gray square with a white square at its center. The white square turns black when the user presses a key.'
);
}

function draw() {
background(200);

// Style the square.
if (keyIsPressed) {
fill(0);
} else {
fill(255);
}

// Draw the square.
square(25, 25, 50);
}
</code>
</div>


<div>
<code>
// Click on the canvas to begin detecting key presses.
Expand Down
Loading