User:Cabra/Sandbox: Difference between revisions

From TestWiki
Content added Content deleted
mNo edit summary
mNo edit summary
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
__TOC__
__TOC__
</div>
</div>
This is my sandbox.<ref name="me">Me</ref> And it will be actively updated.<ref name="me" />
This 1 2 3 4 6 7.
<br>EEEEEh

== First header ==
First one.


== Code example ==
== Code example ==
Line 14: Line 10:
int main()
int main()
{
{
int x{0};
int x{0};
while (x != 8)
while (x != 8)
{
{
std::cout << "Ehh\n";
std::cout << "Ehh\n";
x += 1;
x += 1;
std::cout << "x = " << x << '\n';
std::cout << "x = " << x << '\n';
}
}
return 0;
return 0;
}
}
</syntaxhighlight>
</syntaxhighlight>
Line 27: Line 23:
Not likely to use it outside this sandbox, though. Don't see how.
Not likely to use it outside this sandbox, though. Don't see how.


<syntaxhighlight lang="gdscript" line="3">
== Trird header ==
extends Area2D
Third one.


const MAX_SPEED = 250
=== First lesser header ===

Fourth one.
func _process(delta):
<!-- Do you see? -->
var speed = Vector2.ZERO
if Input.is_action_pressed("move_right"): speed.x += 1
else: speed.x -= 1
## I don't know, test
speed *= MAX_SPEED
position += speed * delta
</syntaxhighlight>


== Fourth header ==
== References ==
<references />
Fifth one.
{{DISPLAYTITLE:user:cabra/Sandbox}}
{{DISPLAYTITLE:user:cabra/Sandbox}}

Latest revision as of 17:33, 9 September 2022

This is my sandbox.[1] And it will be actively updated.[1]

Code example

#include <iostream>

int main()
{
	int x{0};
	while (x != 8)
	{
		std::cout << "Ehh\n";
		x += 1;
		std::cout << "x = " << x << '\n';
	}
	return 0;
}

Why is this thing even here? lol
Not likely to use it outside this sandbox, though. Don't see how.

extends Area2D

const MAX_SPEED = 250

func _process(delta):
	var speed = Vector2.ZERO
	if Input.is_action_pressed("move_right"): speed.x += 1
	else: speed.x -= 1
	## I don't know, test
	speed *= MAX_SPEED
	position += speed * delta

References

  1. 1.0 1.1 Me