Working on the german translation for YoungPersonsGuideToProgrammingMinecraft-de.md
This commit is contained in:
parent
db265cc425
commit
1e80235a01
1 changed files with 10 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
||||||
# The Young Person's Guide to Programming in Minecraft
|
# The Young Person's Guide to Programming in Minecraft
|
||||||
## 2013/01/08 17:26
|
## 4. August 2013 08:35 Uhr
|
||||||
|
|
||||||
### Introduction
|
### Einführung
|
||||||
|
|
||||||
Minecraft is an open-ended 3D game where you can build and craft
|
Minecraft is an open-ended 3D game where you can build and craft
|
||||||
anything you like. Minecraft can be extended and enhanced using 'Mods'
|
anything you like. Minecraft can be extended and enhanced using 'Mods'
|
||||||
|
@ -53,7 +53,7 @@ Minecraft your way using Javascript. Javascript is easier to learn than
|
||||||
Java but it's also more flexible and powerful and is used for creating
|
Java but it's also more flexible and powerful and is used for creating
|
||||||
interactive web sites and many other applications.
|
interactive web sites and many other applications.
|
||||||
|
|
||||||
### Learning Javascript
|
### Lerne Javascript
|
||||||
|
|
||||||
To begin creating cool stuff in Minecraft using ScriptCraft, you don't
|
To begin creating cool stuff in Minecraft using ScriptCraft, you don't
|
||||||
*have* to know much JavaScript. ScriptCraft comes with lots of functions
|
*have* to know much JavaScript. ScriptCraft comes with lots of functions
|
||||||
|
@ -65,7 +65,7 @@ your friends. If you want to get started learning JavaScript, check out
|
||||||
this [fun Javascript Tutorial][ce]. If you want to dive right in to
|
this [fun Javascript Tutorial][ce]. If you want to dive right in to
|
||||||
ScriptCraft, read on...
|
ScriptCraft, read on...
|
||||||
|
|
||||||
### First Steps
|
### Erste Schritte
|
||||||
|
|
||||||
If you don't already know Javascript, don't worry, you'll learn a little
|
If you don't already know Javascript, don't worry, you'll learn a little
|
||||||
about Programming and Javascript along the way. You've set up a
|
about Programming and Javascript along the way. You've set up a
|
||||||
|
@ -293,18 +293,13 @@ away you want something to extend.
|
||||||
|
|
||||||
![Width, Height and Depth][img_whd]
|
![Width, Height and Depth][img_whd]
|
||||||
|
|
||||||
### More shapes
|
### Weitere Formen
|
||||||
|
|
||||||
* `box0( block, width, height, depth )` - creates an empty box (with the
|
* `box0( Block, Breite, Höhe, Tiefe )` - erstellt eine leere Box, also innen hohl – perfekt für Häuser. Decke und Boden werden dabei genauso entfernt.
|
||||||
insides hollowed out - perfect for dwellings. `box0` will remove both
|
* `cylinder( Block, Radius, Höhe )` - erstellt Zylinder, z.B. sehr gut geeignet für Kamine
|
||||||
the floor and ceiling too.
|
* `cylinder0( Block, Radius, Höhe )` - ergibt einen ausgehöhlten Zylinder ohne Decke und Boden – kann sehr gut für Türme verwendet werden.
|
||||||
* `cylinder( block, radius, height )` - creates cylinders, perfect for
|
* `prism( Block, Breite, Tiefe )` - erstellt dir eine dreieckige Form, die du z.B. für ein typisches Dach verwenden kannst.
|
||||||
Chimneys.
|
* `prism0( Block, Breite, Tiefe )` - damit kannst du ein ausgehöhltes Dreieck erstellen.
|
||||||
* `cylinder0( block, radius, height )` - creates empty cylinders -
|
|
||||||
perfect for Towers. `cylinder0` will remove both the floor and
|
|
||||||
ceiling too.
|
|
||||||
* `prism( block, width, depth )` - creates a Prism - good for roofs.
|
|
||||||
* `prism0( block, width, depth )` - creates an empty prism.
|
|
||||||
|
|
||||||
### The Drone Object
|
### The Drone Object
|
||||||
|
|
||||||
|
|
Reference in a new issue