removed unneeded load() calls

This commit is contained in:
walterhiggins 2013-02-10 17:51:27 +00:00
parent 04e1b27e51
commit f3e17b4181
13 changed files with 73 additions and 74 deletions

View file

@ -1,5 +1,26 @@
load(__folder + "drone.js");
/************************************************************************
Drone.blocktype() method
========================
Creates the text out of blocks. Useful for large-scale in-game signs.
Parameters
----------
* message - The message to create - (use `\n` for newlines)
* foregroundBlock (default: black wool) - The block to use for the foreground
* backgroundBlock (default: none) - The block to use for the background
Example
-------
To create a 2-line high message using glowstone...
blocktype("Hello\nWorld",blocks.glowstone);
![blocktype example][imgbt1]
[imgbt1]: img/blocktype1.png
***/
(function(){
var bitmaps = {
@ -296,29 +317,6 @@ load(__folder + "drone.js");
}
}
}
/************************************************************************
Drone.blocktype() method
========================
Creates the text out of blocks. Useful for large-scale in-game signs.
Parameters
----------
* message - The message to create - (use `\n` for newlines)
* foregroundBlock (default: black wool) - The block to use for the foreground
* backgroundBlock (default: none) - The block to use for the background
Example
-------
To create a 2-line high message using glowstone...
blocktype("Hello\nWorld",blocks.glowstone);
![blocktype example][imgbt1]
[imgbt1]: img/blocktype1.png
***/
//

View file

@ -1,4 +1,3 @@
load(__folder + "drone.js");
//
// a castle is just a big wide fort with 4 taller forts at each corner
//

View file

@ -7,8 +7,6 @@
* width - width of the chessboard
* height - height of the chessboard
*/
load(__folder + "drone.js");
Drone.extend("chessboard", function(whiteBlock, blackBlock, width, depth) {
this.chkpt('chessboard-start');
width = width || 8;

View file

@ -1,4 +1,3 @@
load(__folder + "drone.js");
//
// need to use the drone module to create buildings easily
// it can be done using calls to putBlock(), putSign(), getPlayerPos() and getMousePos()

View file

@ -1,4 +1,3 @@
load(__folder + "drone.js")
//
// Create a floor of colored tiles some of which emit light.
// The tiles change color every second creating a strobe-lit dance-floor.

View file

@ -1,4 +1,3 @@
load(__folder + "drone.js");
//
// constructs a medieval fort
//

View file

@ -1,7 +1,22 @@
load(__folder + "drone.js");
/*
Creates a Rainbow
*/
/************************************************************************
Drone.rainbox() method
======================
Creates a Rainbow.
Parameters
----------
* radius (optional - default:18) - The radius of the rainbow
Example
-------
var d = new Drone();
d.rainbow(30);
![rainbow example](img/rainbowex1.png)
***/
Drone.extend('rainbow', function(radius){
if (typeof radius == "undefined")
radius = 18;

View file

@ -9,7 +9,6 @@
* height - (Optional) height of the region, defaults to width
* depth - (Optional) depth of the cube, defaults to width
*/
load(__folder + "drone.js");
Drone.extend("rboxcall", function(callback, probability, width, height, depth) {
this.chkpt('rboxcall-start');

View file

@ -1,4 +1,3 @@
load(__folder + "drone.js");
/************************************************************************
Drone.sphere() method
=====================

View file

@ -1,4 +1,3 @@
load(__folder + "drone.js");
/************************************************************************
Drone.spiral_stairs() method
============================

View file

@ -6,8 +6,6 @@
* dir - "up", "down", "left", "right", "fwd", "back
* maxIterations - (Optional) maximum number of cubes to generate, defaults to 1000
*/
load(__folder + "drone.js");
Drone.extend("streamer", function(block, dir, maxIterations) {
for(var i = 0; i < maxIterations||1000; ++i) {
this.box(block);

View file

@ -1,4 +1,3 @@
load(__folder + "drone.js")
//
// constructs a mayan temple
//

View file

@ -1,5 +1,3 @@
load (__folder + "drone.js");
Drone.prototype.testHorizontalStrokeWidth = function(){
this.arc({
blockType: 42,