Tidying up.

This commit is contained in:
photonstorm 2014-11-25 00:23:17 +00:00
parent 54e79f5b25
commit c9996f41b0
211 changed files with 0 additions and 3110 deletions

View file

@ -1,76 +0,0 @@
<?php
if (isset($_GET['src']))
{
$src = $_GET['src'];
}
require 'src/Block.php';
require 'src/ClassDesc.php';
require 'src/Constant.php';
require 'src/Method.php';
require 'src/Parameter.php';
require 'src/Property.php';
require 'src/ReturnType.php';
require 'src/Processor.php';
require 'src/PhaserDocGen.php';
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Phaser Documentation Generator</title>
<style type="text/css">
body {
font-family: Arial;
font-size: 14px;
background-color: #fff;
color: #000;
}
textarea {
width: 100%;
height: 1000px;
}
</style>
</head>
<body>
<pre>
<?php
$gen = new PhaserDocGen();
echo "Starting ...\n";
$gen->start();
echo "Extending ...\n";
$gen->extend();
echo "Exporting ...\n";
$gen->export('output/');
// $obj = $gen->get('Phaser.Animation');
// print_r($obj->getArray());
// echo $obj;
// ksort($gen->uniqueTypes);
// echo "There are " . count($gen->uniqueTypes) . " unique data types \n\n";
// print_r($gen->uniqueTypes);
// $gen->extend('Phaser.Sprite');
// $sprite = $gen->get('Phaser.Sprite');
// $sprite->export('output/');
// echo $sprite;
?>
</pre>
</body>
</html>

View file

@ -1,108 +0,0 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Phaser Documentation Viewer</title>
<style type="text/css">
body {
font-family: Arial;
font-size: 14px;
background-color: #fff;
color: #000;
}
textarea {
width: 100%;
height: 1000px;
}
</style>
</head>
<body>
<a href="export.php">Export</a>
<?php
// http://uk1.php.net/manual/en/class.splfileinfo.php
function dirToArray($dir) {
global $src;
$ignore = array('.', '..');
$fileIgnore = array('p2.js');
$result = array();
$root = scandir($dir);
$dirs = array_diff($root, $ignore);
foreach ($dirs as $key => $value)
{
$path = realpath($dir . DIRECTORY_SEPARATOR . $value);
if (is_dir($path))
{
$result[$value] = dirToArray($path);
}
else
{
if (substr($value, -3) == '.js')
{
if (!in_array($value, $fileIgnore))
{
$index = str_replace($src, "", $path);
$index = substr($index, 1);
$result[substr($value, 0, -3)] = $index;
}
}
}
}
return $result;
}
function displaySection($title, $files) {
if ($title === "")
{
echo "<h1>Phaser v2.1.1</h1>";
}
else
{
echo "<h2>$title</h2>";
}
echo "<ul>";
foreach ($files as $name => $file)
{
if (is_array($file))
{
displaySection($name, $file);
}
else
{
echo "<li><a href=\"view.php?src=$file\">$name</a>";
// echo " &nbsp;&nbsp; [ <a href=\"export.php?src=$file\">json</a> ]</li>";
echo " &nbsp;&nbsp; [ <a href=\"json.php?src=$file\">json</a> ]</li>";
}
}
echo "</ul>";
}
$src = realpath('../src');
$files = dirToArray($src);
displaySection("", $files);
// echo "<pre>";
// var_dump($src);
// print_r($files);
// echo "</pre>";
?>
</body>
</html>

View file

@ -1,26 +0,0 @@
<?php
if (isset($_GET['src']))
{
$src = $_GET['src'];
}
require 'src/Block.php';
require 'src/ClassDesc.php';
require 'src/Constant.php';
require 'src/Method.php';
require 'src/Parameter.php';
require 'src/Property.php';
require 'src/ReturnType.php';
require 'src/Processor.php';
require 'src/PhaserDocGen.php';
header('Content-Type: application/json');
$gen = new PhaserDocGen();
$gen->start();
$obj = $gen->get($src);
$obj->extend();
echo $obj->getJSON();
?>

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.AbstractFilter","extends":"","static":false,"constructor":true,"parameters":[{"name":"fragmentSrc","type":["array"],"help":"The fragment source in an array of strings.","optional":false,"default":null},{"name":"uniforms","type":["object"],"help":"An object containing the uniforms for this filter.","optional":false,"default":null}],"help":"This is the base class for creating a PIXI filter. Currently only webGL supports filters.\\nIf you want to make a custom filter this should be your base class."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[{"name":"fragmentSrc","type":["array"],"help":"","inlineHelp":"","line":55,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"passes","type":["array"],"help":"An array of passes - some filters contain a few steps this array simply stores the steps in a liniear fashion.\\nFor example the blur filter has two passes blurX and blurY.","inlineHelp":"","line":22,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"shaders","type":["array"],"help":"","inlineHelp":"","line":29,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"uniforms","type":["object"],"help":"","inlineHelp":"","line":48,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.AjaxRequest","extends":"","static":false,"constructor":true,"parameters":[],"help":"A wrapper for ajax requests to be handled cross browser"},"consts":[],"methods":{"public":[{"name":"bind","static":false,"returns":null,"help":"A polyfill for Function.prototype.bind","line":79,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"canUseNewCanvasBlendModes","static":false,"returns":{"types":["boolean"],"help":"whether they are supported"},"help":"Checks whether the Canvas BlendModes are supported by the current browser","line":174,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"cancelAnimationFrame","static":false,"returns":null,"help":"A polyfill for cancelAnimationFrame","line":25,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"getNextPowerOfTwo","static":false,"returns":{"types":["number"],"help":"the closest number that is a power of two"},"help":"Given a number, this function returns the closest number that is a power of two\\nthis function is taken from Starling Framework as its pretty neat ;)","line":197,"public":true,"protected":false,"private":false,"parameters":[{"name":"number","type":["number"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"hex2rgb","static":false,"returns":null,"help":"Converts a hex color number to an [R, G, B] array","line":60,"public":true,"protected":false,"private":false,"parameters":[{"name":"hex","type":["number"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"requestAnimationFrame","static":false,"returns":null,"help":"A polyfill for requestAnimationFrame\\nYou can actually use both requestAnimationFrame and requestAnimFrame,\\nyou will still benefit from the polyfill","line":19,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"rgb2hex","static":false,"returns":null,"help":"Converts a color as an [R, G, B] array to a hex number","line":70,"public":true,"protected":false,"private":false,"parameters":[{"name":"rgb","type":["array"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.AlphaMaskFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[{"name":"texture","type":["PIXI.Texture"],"help":"The texture used for the displacement map * must be power of 2 texture at the moment","optional":false,"default":null}],"help":"The AlphaMaskFilter class uses the pixel values from the specified texture (called the displacement map) to perform a displacement of an object.\\nYou can use this filter to apply all manor of crazy warping effects\\nCurrently the r property of the texture is used to offset the x and the g property of the texture is used to offset the y."},"consts":[],"methods":{"public":[{"name":"onTextureLoaded","static":false,"returns":null,"help":"Sets the map dimensions uniforms when the texture becomes available.","line":76,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"map","type":["PIXI.Texture"],"help":"The texture used for the displacement map. Must be power of 2 sized texture.","inlineHelp":"","line":90,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.AsciiFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"An ASCII filter."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"size","type":["number"],"help":"The pixel size used by the filter.","inlineHelp":"","line":79,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.AssetLoader","extends":"","static":false,"constructor":true,"parameters":[{"name":"assetURLs","type":["array string"],"help":"An array of image\/sprite sheet urls that you would like loaded","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"Whether requests should be treated as crossorigin","optional":false,"default":null}],"help":"A Class that loads a bunch of images \/ sprite sheet \/ bitmap font files. Once the\\nassets have been loaded they are added to the PIXI Texture cache and can be accessed\\neasily through PIXI.Texture.fromImage() and PIXI.Sprite.fromImage()\\nWhen all items have been loaded this class will dispatch a 'onLoaded' event\\nAs each individual item is loaded this class will dispatch a 'onProgress' event\\n\\nsupported. Supported image formats include 'jpeg', 'jpg', 'png', 'gif'. Supported\\nsprite sheet data formats only include 'JSON' at this time. Supported bitmap font\\ndata formats include 'xml' and 'fnt'."},"consts":[],"methods":{"public":[{"name":"_getDataType","static":false,"returns":null,"help":"Given a filename, returns its extension.","line":80,"public":true,"protected":false,"private":false,"parameters":[{"name":"str","type":["string"],"help":"the name of the asset","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"load","static":false,"returns":null,"help":"Starts loading the assets sequentially","line":112,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"onAssetLoaded","static":false,"returns":null,"help":"Invoked after each file is loaded","line":149,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[{"name":"assetURLs","type":["array string"],"help":"The array of asset URLs that are going to be loaded","inlineHelp":"","line":29,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"crossorigin","type":["boolean"],"help":"Whether the requests should be treated as cross origin","inlineHelp":"","line":37,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"loadersByType","type":["object"],"help":"Maps file extension to loader types","inlineHelp":"","line":45,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.AtlasLoader","extends":"","static":false,"constructor":true,"parameters":[{"name":"url","type":["string"],"help":"The url of the JSON file","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"Whether requests should be treated as crossorigin","optional":false,"default":null}],"help":"The atlas file loader is used to load in Texture Atlas data and parse it. When loaded this class will dispatch a 'loaded' event. If loading fails this class will dispatch an 'error' event.\\n\\nTo generate the data you can use http:\/\/www.codeandweb.com\/texturepacker and publish in the 'JSON' format.\\n\\nIt is highly recommended to use texture atlases (also know as 'sprite sheets') as it allowed sprites to be batched and drawn together for highly increased rendering speed.\\nOnce the data has been loaded the frames are stored in the PIXI texture cache and can be accessed though PIXI.Texture.fromFrameId() and PIXI.Sprite.fromFrameId()"},"consts":[],"methods":{"public":[{"name":"load","static":false,"returns":null,"help":"Starts loading the JSON file","line":37,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"onAtlasLoaded","static":false,"returns":null,"help":"Invoked when the Atlas has fully loaded. Parses the JSON and builds the texture frames.","line":52,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"onError","static":false,"returns":null,"help":"Invoked when an error occurs.","line":188,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"onLoaded","static":false,"returns":null,"help":"Invoked when json file has loaded.","line":172,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.BaseTexture","extends":"","static":false,"constructor":true,"parameters":[{"name":"source","type":["string"],"help":"the source object (image or canvas)","optional":false,"default":null},{"name":"scaleMode","type":["number"],"help":"Should be one of the PIXI.scaleMode consts","optional":false,"default":null}],"help":"A texture stores the information that represents an image. All textures have a base texture."},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys this base texture","line":156,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"dirty","static":false,"returns":null,"help":"Sets all glTextures to be dirty.","line":204,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"fromCanvas","static":true,"returns":{"types":[],"help":[]},"help":"Helper function that creates a base texture from the given canvas element.","line":263,"public":true,"protected":false,"private":false,"parameters":[{"name":"canvas","type":["PIXI.Canvas"],"help":"The canvas element source of the texture","optional":false,"default":null},{"name":"scaleMode","type":["number"],"help":"Should be one of the PIXI.scaleMode consts","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"fromImage","static":true,"returns":{"types":[],"help":[]},"help":"Helper function that creates a base texture from the given image url.\\nIf the image is not in the base texture cache it will be created and loaded.","line":223,"public":true,"protected":false,"private":false,"parameters":[{"name":"imageUrl","type":["string"],"help":"The image url of the texture","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"","optional":false,"default":null},{"name":"scaleMode","type":["number"],"help":"Should be one of the PIXI.scaleMode consts","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"updateSourceImage","static":false,"returns":null,"help":"Changes the source image of the texture","line":192,"public":true,"protected":false,"private":false,"parameters":[{"name":"newSrc","type":["string"],"help":"the path of the image","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"hasLoaded","type":["boolean"],"help":"[read-only] Set to true once the base texture has loaded","inlineHelp":"","line":62,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"height","type":["number"],"help":"[read-only] The height of the base texture set when the image has loaded","inlineHelp":"","line":44,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"imageUrl","type":["string"],"help":"","inlineHelp":"","line":136,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"premultipliedAlpha","type":["boolean"],"help":"Controls if RGB channels should be pre-multiplied by Alpha (WebGL only)","inlineHelp":"","line":81,"default":"true","public":true,"protected":false,"private":false,"readOnly":false},{"name":"resolution","type":["number"],"help":"The Resolution of the texture.","inlineHelp":"","line":26,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"scaleMode","type":["PIXI.scaleModes"],"help":"The scale mode to apply when scaling this texture","inlineHelp":"","line":53,"default":"PIXI.scaleModes.LINEAR","public":true,"protected":false,"private":false,"readOnly":false},{"name":"source","type":["Image"],"help":"The image source that is used to create the texture.","inlineHelp":"","line":70,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"width","type":["number"],"help":"[read-only] The width of the base texture set when the image has loaded","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":true}],"protected":[],"private":[{"name":"_dirty","type":["array"],"help":"","inlineHelp":"","line":100,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"_glTextures","type":["array"],"help":"","inlineHelp":"","line":90,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"_powerOf2","type":["boolean"],"help":"","inlineHelp":"","line":143,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.BitmapFontLoader","extends":"","static":false,"constructor":true,"parameters":[{"name":"url","type":["string"],"help":"The url of the sprite sheet JSON file","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"Whether requests should be treated as crossorigin","optional":false,"default":null}],"help":"The xml loader is used to load in XML bitmap font data ('xml' or 'fnt')\\nTo generate the data you can use http:\/\/www.angelcode.com\/products\/bmfont\/\\nThis loader will also load the image file as the data.\\nWhen loaded this class will dispatch a 'loaded' event"},"consts":[],"methods":{"public":[{"name":"load","static":false,"returns":null,"help":"Loads the XML font data","line":62,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"onLoaded","static":false,"returns":null,"help":"Invoked when all files are loaded (xml\/fnt and texture)","line":158,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"onXMLLoaded","static":false,"returns":null,"help":"Invoked when the XML file is loaded, parses the data.","line":78,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[{"name":"baseUrl","type":["string"],"help":"[read-only] The base url of the bitmap font data","inlineHelp":"","line":42,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"crossorigin","type":["boolean"],"help":"Whether the requests should be treated as cross origin","inlineHelp":"","line":33,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"texture","type":["PIXI.Texture"],"help":"[read-only] The texture of the bitmap font","inlineHelp":"","line":50,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"url","type":["string"],"help":"The url of the bitmap font data","inlineHelp":"","line":25,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.BlurFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"The BlurFilter applies a Gaussian blur to an object.\\nThe strength of the blur can be set for x- and y-axis separately (always relative to the stage)."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"Sets the strength of both the blurX and blurY properties simultaneously","inlineHelp":"","line":31,"default":"2","public":true,"protected":false,"private":false,"readOnly":false},{"name":"blurX","type":["number"],"help":"Sets the strength of the blurX property","inlineHelp":"","line":47,"default":"2","public":true,"protected":false,"private":false,"readOnly":false},{"name":"blurY","type":["number"],"help":"Sets the strength of the blurY property","inlineHelp":"","line":63,"default":"2","public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.BlurXFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"The BlurXFilter applies a horizontal Gaussian blur to an object."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"Sets the strength of both the blur.","inlineHelp":"","line":58,"default":"2","public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.BlurYFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"The BlurYFilter applies a vertical Gaussian blur to an object."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"Sets the strength of both the blur.","inlineHelp":"","line":58,"default":"2","public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.CanvasBuffer","extends":"","static":false,"constructor":true,"parameters":[{"name":"width","type":["number"],"help":"the width for the newly created canvas","optional":false,"default":null},{"name":"height","type":["number"],"help":"the height for the newly created canvas","optional":false,"default":null}],"help":"Creates a Canvas element of the given size."},"consts":[],"methods":{"public":[{"name":"resize","static":false,"returns":null,"help":"Resizes the canvas to the specified width and height.","line":71,"public":true,"protected":false,"private":false,"parameters":[{"name":"width","type":["number"],"help":"the new width of the canvas","optional":false,"default":null},{"name":"height","type":["number"],"help":"the new height of the canvas","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"clear","static":false,"returns":null,"help":"Clears the canvas that was created by the CanvasBuffer class.","line":59,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[{"name":"canvas","type":["HTMLCanvasElement"],"help":"The Canvas object that belongs to this CanvasBuffer.","inlineHelp":"","line":37,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"context","type":["CanvasRenderingContext2D"],"help":"A CanvasRenderingContext2D object representing a two-dimensional rendering context.","inlineHelp":"","line":45,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"height","type":["number"],"help":"The height of the Canvas in pixels.","inlineHelp":"","line":29,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"width","type":["number"],"help":"The width of the Canvas in pixels.","inlineHelp":"","line":21,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.CanvasGraphics","extends":"","static":true,"constructor":false,"parameters":[],"help":"A set of functions used by the canvas renderer to draw the primitive graphics data."},"consts":[],"methods":{"public":[],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.CanvasMaskManager","extends":"","static":false,"constructor":true,"parameters":[],"help":"A set of functions used to handle masking."},"consts":[],"methods":{"public":[{"name":"popMask","static":false,"returns":null,"help":"Restores the current drawing context to the state it was before the mask was applied.","line":55,"public":true,"protected":false,"private":false,"parameters":[{"name":"renderSession","type":["object"],"help":"The renderSession whose context will be used for this mask manager.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"pushMask","static":false,"returns":null,"help":"This method adds it to the current stack of masks.","line":24,"public":true,"protected":false,"private":false,"parameters":[{"name":"maskData","type":["object"],"help":"the maskData that will be pushed","optional":false,"default":null},{"name":"renderSession","type":["object"],"help":"The renderSession whose context will be used for this mask manager.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.CanvasTinter","extends":"","static":false,"constructor":true,"parameters":[],"help":""},"consts":[],"methods":{"public":[{"name":"getTintedTexture","static":false,"returns":{"types":["HTMLCanvasElement"],"help":"The tinted canvas"},"help":"Basically this method just needs a sprite and a color and tints the sprite with the given color.","line":22,"public":true,"protected":false,"private":false,"parameters":[{"name":"sprite","type":["PIXI.Sprite"],"help":"the sprite to tint","optional":false,"default":null},{"name":"color","type":["number"],"help":"the color to use to tint the sprite with","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"roundColor","static":false,"returns":null,"help":"Rounds the specified color according to the PIXI.CanvasTinter.cacheStepsPerColorChannel.","line":190,"public":true,"protected":false,"private":false,"parameters":[{"name":"color","type":["number"],"help":"the color to round, should be a hex color","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"tintMethod","static":false,"returns":null,"help":"The tinting method that will be used.","line":232,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"tintPerPixel","static":false,"returns":null,"help":"Tint a texture pixel per pixel.","line":147,"public":true,"protected":false,"private":false,"parameters":[{"name":"texture","type":["PIXI.Texture"],"help":"the texture to tint","optional":false,"default":null},{"name":"color","type":["number"],"help":"the color to use to tint the sprite with","optional":false,"default":null},{"name":"canvas","type":["HTMLCanvasElement"],"help":"the current canvas","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"tintWithMultiply","static":false,"returns":null,"help":"Tint a texture using the \"multiply\" operation.","line":66,"public":true,"protected":false,"private":false,"parameters":[{"name":"texture","type":["PIXI.Texture"],"help":"the texture to tint","optional":false,"default":null},{"name":"color","type":["number"],"help":"the color to use to tint the sprite with","optional":false,"default":null},{"name":"canvas","type":["HTMLCanvasElement"],"help":"the current canvas","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"tintWithOverlay","static":false,"returns":null,"help":"Tint a texture using the \"overlay\" operation.","line":112,"public":true,"protected":false,"private":false,"parameters":[{"name":"texture","type":["PIXI.Texture"],"help":"the texture to tint","optional":false,"default":null},{"name":"color","type":["number"],"help":"the color to use to tint the sprite with","optional":false,"default":null},{"name":"canvas","type":["HTMLCanvasElement"],"help":"the current canvas","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"cacheStepsPerColorChannel","type":["number"],"help":"Number of steps which will be used as a cap when rounding colors.","inlineHelp":"","line":209,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"canUseMultiply","type":["boolean"],"help":"Whether or not the Canvas BlendModes are supported, consequently the ability to tint using the multiply method.","inlineHelp":"","line":225,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"convertTintToImage","type":["boolean"],"help":"Tint cache boolean flag.","inlineHelp":"","line":217,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.Circle","extends":"","static":false,"constructor":true,"parameters":[{"name":"x","type":["number"],"help":"The X coordinate of the center of this circle","optional":false,"default":null},{"name":"y","type":["number"],"help":"The Y coordinate of the center of this circle","optional":false,"default":null},{"name":"radius","type":["number"],"help":"The radius of the circle","optional":false,"default":null}],"help":"The Circle object can be used to specify a hit area for displayObjects"},"consts":[],"methods":{"public":[{"name":"clone","static":false,"returns":{"types":["Phaser.Circle"],"help":"a copy of the Circle"},"help":"Creates a clone of this Circle instance","line":44,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"contains","static":false,"returns":{"types":["boolean"],"help":"Whether the x\/y coordinates are within this Circle"},"help":"Checks whether the x and y coordinates given are contained within this circle","line":57,"public":true,"protected":false,"private":false,"parameters":[{"name":"x","type":["number"],"help":"The X coordinate of the point to test","optional":false,"default":null},{"name":"y","type":["number"],"help":"The Y coordinate of the point to test","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"getBounds","static":false,"returns":{"types":["Phaser.Rectangle"],"help":"the framing rectangle"},"help":"Returns the framing rectangle of the circle as a PIXI.Rectangle object","line":78,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"radius","type":["number"],"help":"","inlineHelp":"","line":35,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"x","type":["number"],"help":"","inlineHelp":"","line":21,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"y","type":["number"],"help":"","inlineHelp":"","line":28,"default":"0","public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.ColorMatrixFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"The ColorMatrixFilter class lets you apply a 4x4 matrix transformation on the RGBA\\ncolor and alpha values of every pixel on your displayObject to produce a result\\nwith a new set of RGBA color and alpha values. It's pretty powerful!"},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"matrix","type":["array"],"help":"Sets the matrix of the color matrix filter","inlineHelp":"","line":53,"default":"[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]","public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.ColorStepFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"This lowers the color depth of your image by the given amount, producing an image with a smaller palette."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"step","type":["number"],"help":"The number of steps to reduce the palette by.","inlineHelp":"","line":47,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.ComplexPrimitiveShader","extends":"","static":false,"constructor":true,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys the shader.","line":114,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"init","static":false,"returns":null,"help":"Initialises the shader.","line":84,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"fragmentSrc","type":["array"],"help":"The fragment shader.","inlineHelp":"","line":37,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gl","type":["PIXI.WebGLContext"],"help":"","inlineHelp":"","line":23,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"program","type":["any"],"help":"The WebGL program.","inlineHelp":"","line":30,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"vertexSrc","type":["array"],"help":"The vertex shader.","inlineHelp":"","line":53,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[{"name":"_UID","type":["number"],"help":"","inlineHelp":"","line":17,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.ConvolutionFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[{"name":"matrix","type":["array"],"help":"An array of values used for matrix transformation. Specified as a 9 point Array.","optional":false,"default":null},{"name":"width","type":["number"],"help":"Width of the object you are transforming","optional":false,"default":null},{"name":"height","type":["number"],"help":"Height of the object you are transforming","optional":false,"default":null}],"help":"The ConvolutionFilter class applies a matrix convolution filter effect.\\nA convolution combines pixels in the input image with neighboring pixels to produce a new image.\\nA wide variety of image effects can be achieved through convolutions, including blurring, edge detection, sharpening, embossing, and beveling.\\nThe matrix should be specified as a 9 point Array. See http:\/\/docs.gimp.org\/en\/plug-in-convmatrix.html for more info."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"height","type":["number"],"help":"Height of the object you are transforming","inlineHelp":"","line":99,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"matrix","type":["array"],"help":"An array of values used for matrix transformation. Specified as a 9 point Array.","inlineHelp":"","line":69,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"width","type":["number"],"help":"Width of the object you are transforming","inlineHelp":"","line":84,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.CrossHatchFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"A Cross Hatch effect filter."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"Sets the strength of both the blur.","inlineHelp":"","line":72,"default":"2","public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.DisplacementFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[{"name":"texture","type":["PIXI.Texture"],"help":"The texture used for the displacement map * must be power of 2 texture at the moment","optional":false,"default":null}],"help":"The DisplacementFilter class uses the pixel values from the specified texture (called the displacement map) to perform a displacement of an object.\\nYou can use this filter to apply all manor of crazy warping effects\\nCurrently the r property of the texture is used offset the x and the g property of the texture is used to offset the y."},"consts":[],"methods":{"public":[{"name":"onTextureLoaded","static":false,"returns":null,"help":"Sets the map dimensions uniforms when the texture becomes available.","line":83,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"map","type":["PIXI.Texture"],"help":"The texture used for the displacement map. Must be power of 2 texture.","inlineHelp":"","line":97,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"offset","type":["Phaser.Point"],"help":"The offset used to move the displacement map.","inlineHelp":"","line":127,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"scale","type":["Phaser.Point"],"help":"The multiplier used to scale the displacement result from the map calculation.","inlineHelp":"","line":112,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.DotScreenFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"This filter applies a dotscreen effect making display objects appear to be made out of black and white halftone dots like an old printer."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"angle","type":["number"],"help":"The radius of the effect.","inlineHelp":"","line":77,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"scale","type":["number"],"help":"The scale of the effect.","inlineHelp":"","line":62,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.Ellipse","extends":"","static":false,"constructor":true,"parameters":[{"name":"x","type":["number"],"help":"The X coordinate of the center of the ellipse","optional":false,"default":null},{"name":"y","type":["number"],"help":"The Y coordinate of the center of the ellipse","optional":false,"default":null},{"name":"width","type":["number"],"help":"The half width of this ellipse","optional":false,"default":null},{"name":"height","type":["number"],"help":"The half height of this ellipse","optional":false,"default":null}],"help":"The Ellipse object can be used to specify a hit area for displayObjects"},"consts":[],"methods":{"public":[{"name":"clone","static":false,"returns":{"types":["Phaser.Ellipse"],"help":"a copy of the ellipse"},"help":"Creates a clone of this Ellipse instance","line":52,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"contains","static":false,"returns":{"types":["boolean"],"help":"Whether the x\/y coords are within this ellipse"},"help":"Checks whether the x and y coordinates given are contained within this ellipse","line":65,"public":true,"protected":false,"private":false,"parameters":[{"name":"x","type":["number"],"help":"The X coordinate of the point to test","optional":false,"default":null},{"name":"y","type":["number"],"help":"The Y coordinate of the point to test","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"getBounds","static":false,"returns":{"types":["Phaser.Rectangle"],"help":"the framing rectangle"},"help":"Returns the framing rectangle of the ellipse as a PIXI.Rectangle object","line":86,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"height","type":["number"],"help":"","inlineHelp":"","line":43,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"width","type":["number"],"help":"","inlineHelp":"","line":36,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"x","type":["number"],"help":"","inlineHelp":"","line":22,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"y","type":["number"],"help":"","inlineHelp":"","line":29,"default":"0","public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.EventTarget","extends":"","static":true,"constructor":false,"parameters":[],"help":"Mixins event emitter functionality to a class\\n\\nfunction MyEmitter() {}\\n\\nPIXI.EventTarget.mixin(MyEmitter.prototype);\\n\\nvar em = new MyEmitter();\\nem.emit('eventName', 'some data', 'some more data', {}, null, ...);"},"consts":[],"methods":{"public":[{"name":"emit","static":false,"returns":null,"help":"Emit an event to all registered event listeners.","line":62,"public":true,"protected":false,"private":false,"parameters":[{"name":"eventName","type":["string"],"help":"The name of the event.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"listeners","static":false,"returns":null,"help":"Return a list of assigned event listeners.","line":48,"public":true,"protected":false,"private":false,"parameters":[{"name":"eventName","type":["string"],"help":"The events that should be listed.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"mixin","static":false,"returns":null,"help":"Mixes in the properties of the EventTarget prototype onto another object","line":40,"public":true,"protected":false,"private":false,"parameters":[{"name":"object","type":["object"],"help":"The obj to mix into","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"off","static":false,"returns":null,"help":"Remove event listeners.","line":151,"public":true,"protected":false,"private":false,"parameters":[{"name":"eventName","type":["string"],"help":"The event we want to remove.","optional":false,"default":null},{"name":"callback","type":["function"],"help":"The listener that we need to find.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"on","static":false,"returns":null,"help":"Register a new EventListener for the given event.","line":115,"public":true,"protected":false,"private":false,"parameters":[{"name":"eventName","type":["string"],"help":"Name of the event.","optional":false,"default":null},{"name":"callback","type":["PIXI.Functon"],"help":"fn Callback function.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"once","static":false,"returns":null,"help":"Add an EventListener that's only called once.","line":131,"public":true,"protected":false,"private":false,"parameters":[{"name":"eventName","type":["string"],"help":"Name of the event.","optional":false,"default":null},{"name":"callback","type":["function"],"help":"Callback function.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"removeAllListeners","static":false,"returns":null,"help":"Remove all listeners or only the listeners for the specified event.","line":179,"public":true,"protected":false,"private":false,"parameters":[{"name":"eventName","type":["string"],"help":"The event you want to remove all listeners for.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"stopImmediatePropagation","static":false,"returns":null,"help":"Stops the propagation of events to sibling listeners (no longer calls any listeners).","line":282,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"stopPropagation","static":false,"returns":null,"help":"Stops the propagation of events up the scene graph (prevents bubbling).","line":273,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"data","type":["object"],"help":"The data that was passed in with this event.","inlineHelp":"","line":253,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"target","type":["object"],"help":"The original target the event triggered on.","inlineHelp":"","line":235,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"timeStamp","type":["number"],"help":"The timestamp when the event occurred.","inlineHelp":"","line":265,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"type","type":["string"],"help":"The string name of the event that this represents.","inlineHelp":"","line":244,"default":null,"public":true,"protected":false,"private":false,"readOnly":true}],"protected":[],"private":[{"name":"stopped","type":["boolean"],"help":"Tracks the state of bubbling propagation. Do not\\nset this directly, instead use `event.stopPropagation()`","inlineHelp":"","line":215,"default":null,"public":false,"protected":false,"private":true,"readOnly":true},{"name":"stoppedImmediate","type":["boolean"],"help":"Tracks the state of sibling listener propagation. Do not\\nset this directly, instead use `event.stopImmediatePropagation()`","inlineHelp":"","line":226,"default":null,"public":false,"protected":false,"private":true,"readOnly":true}]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.FilterBlock","extends":"","static":false,"constructor":true,"parameters":[],"help":"A target and pass info object for filters."},"consts":[],"methods":{"public":[],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"renderable","type":["boolean"],"help":"The renderable state of this FilterBlock.","inlineHelp":"","line":27,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"visible","type":["boolean"],"help":"The visible state of this FilterBlock.","inlineHelp":"","line":19,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.FilterTexture","extends":"","static":false,"constructor":true,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null},{"name":"width","type":["number"],"help":"the horizontal range of the filter","optional":false,"default":null},{"name":"height","type":["number"],"help":"the vertical range of the filter","optional":false,"default":null},{"name":"scaleMode","type":["number"],"help":"Should be one of the PIXI.scaleMode consts","optional":false,"default":null}],"help":""},"consts":[],"methods":{"public":[{"name":"clear","static":false,"returns":null,"help":"Clears the filter texture.","line":66,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"destroy","static":false,"returns":null,"help":"Destroys the filter texture.","line":102,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"resize","static":false,"returns":null,"help":"Resizes the texture to the specified width and height","line":81,"public":true,"protected":false,"private":false,"parameters":[{"name":"width","type":["number"],"help":"the new width of the texture","optional":false,"default":null},{"name":"height","type":["number"],"help":"the new height of the texture","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"frameBuffer","type":["any"],"help":"","inlineHelp":"","line":27,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gl","type":["PIXI.WebGLContext"],"help":"","inlineHelp":"","line":19,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"scaleMode","type":["number"],"help":"","inlineHelp":"","line":39,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"texture","type":["any"],"help":"","inlineHelp":"","line":33,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.GrayFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"This greyscales the palette of your Display Objects."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gray","type":["number"],"help":"The strength of the gray. 1 will make the object black and white, 0 will make the object its normal color.","inlineHelp":"","line":46,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.ImageLoader","extends":"","static":false,"constructor":true,"parameters":[{"name":"url","type":["string"],"help":"The url of the image","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"Whether requests should be treated as crossorigin","optional":false,"default":null}],"help":"The image loader class is responsible for loading images file formats ('jpeg', 'jpg', 'png' and 'gif')\\nOnce the image has been loaded it is stored in the PIXI texture cache and can be accessed though PIXI.Texture.fromFrame() and PIXI.Sprite.fromFrame()\\nWhen loaded this class will dispatch a 'loaded' event"},"consts":[],"methods":{"public":[{"name":"load","static":false,"returns":null,"help":"Loads image or takes it from cache","line":47,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"loadFramedSpriteSheet","static":false,"returns":null,"help":"Loads image and split it to uniform sized frames","line":78,"public":true,"protected":false,"private":false,"parameters":[{"name":"frameWidth","type":["number"],"help":"width of each frame","optional":false,"default":null},{"name":"frameHeight","type":["number"],"help":"height of each frame","optional":false,"default":null},{"name":"textureName","type":["string"],"help":"if given, the frames will be cached in <textureName>-<ord> format","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"onLoaded","static":false,"returns":null,"help":"Invoked when image file is loaded or it is already cached and ready to use","line":65,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[{"name":"frames","type":["array"],"help":"if the image is loaded with loadFramedSpriteSheet\\nframes will contain the sprite sheet frames","inlineHelp":"","line":34,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"texture","type":["PIXI.Texture"],"help":"The texture being loaded","inlineHelp":"","line":24,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.InteractionData","extends":"","static":false,"constructor":true,"parameters":[],"help":"Holds all information related to an Interaction event"},"consts":[],"methods":{"public":[{"name":"getLocalPosition","static":false,"returns":{"types":["Phaser.Point"],"help":"A point containing the coordinates of the InteractionData position relative to the DisplayObject"},"help":"This will return the local coordinates of the specified displayObject for this InteractionData","line":46,"public":true,"protected":false,"private":false,"parameters":[{"name":"displayObject","type":["PIXI.DisplayObject"],"help":"The DisplayObject that you would like the local coords off","optional":false,"default":null},{"name":"[point]","type":["Phaser.Point"],"help":"A Point object in which to store the value, optional (otherwise will create a new point)","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"global","type":["Phaser.Point"],"help":"This point stores the global coords of where the touch\/mouse event happened","inlineHelp":"","line":19,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"originalEvent","type":["Event"],"help":"When passed to an event handler, this will be the original DOM Event that was captured","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"target","type":["PIXI.Sprite"],"help":"The target Sprite that was interacted with","inlineHelp":"","line":27,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.InvertFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"This inverts your Display Objects colors."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"invert","type":["number"],"help":"The strength of the invert. 1 will fully invert the colors, 0 will make the object its normal color","inlineHelp":"","line":47,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.JsonLoader","extends":"","static":false,"constructor":true,"parameters":[{"name":"url","type":["string"],"help":"The url of the JSON file","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"Whether requests should be treated as crossorigin","optional":false,"default":null}],"help":"The json file loader is used to load in JSON data and parse it\\nWhen loaded this class will dispatch a 'loaded' event\\nIf loading fails this class will dispatch an 'error' event"},"consts":[],"methods":{"public":[{"name":"load","static":false,"returns":null,"help":"Loads the JSON data","line":64,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"onError","static":false,"returns":null,"help":"Invoked if an error occurs.","line":182,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"onJSONLoaded","static":false,"returns":null,"help":"Invoked when the JSON file is loaded.","line":104,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"onLoaded","static":false,"returns":null,"help":"Invoked when the json file has loaded.","line":168,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[{"name":"baseUrl","type":["string"],"help":"[read-only] The base url of the bitmap font data","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"crossorigin","type":["boolean"],"help":"Whether the requests should be treated as cross origin","inlineHelp":"","line":32,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"loaded","type":["boolean"],"help":"[read-only] Whether the data has loaded yet","inlineHelp":"","line":50,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"url","type":["string"],"help":"The url of the bitmap font data","inlineHelp":"","line":24,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.NoiseFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"A Noise effect filter."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"noise","type":["number"],"help":"The amount of noise to apply.","inlineHelp":"","line":54,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.NormalMapFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[{"name":"texture","type":["PIXI.Texture"],"help":"The texture used for the displacement map * must be power of 2 texture at the moment","optional":false,"default":null}],"help":"The NormalMapFilter class uses the pixel values from the specified texture (called the displacement map) to perform a displacement of an object.\\nYou can use this filter to apply all manor of crazy warping effects\\nCurrently the r property of the texture is used offset the x and the g property of the texture is used to offset the y."},"consts":[],"methods":{"public":[{"name":"onTextureLoaded","static":false,"returns":null,"help":"Sets the map dimensions uniforms when the texture becomes available.","line":145,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"map","type":["PIXI.Texture"],"help":"The texture used for the displacement map. Must be power of 2 texture.","inlineHelp":"","line":159,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"offset","type":["Phaser.Point"],"help":"The offset used to move the displacement map.","inlineHelp":"","line":189,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"scale","type":["Phaser.Point"],"help":"The multiplier used to scale the displacement result from the map calculation.","inlineHelp":"","line":174,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.PixelateFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"This filter applies a pixelate effect making display objects appear 'blocky'."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"size","type":["Phaser.Point"],"help":"This a point that describes the size of the blocks. x is the width of the block and y is the height.","inlineHelp":"","line":54,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.PixiFastShader","extends":"","static":false,"constructor":true,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys the shader.","line":148,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"init","static":false,"returns":null,"help":"Initialises the shader.","line":99,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"fragmentSrc","type":["array"],"help":"The fragment shader.","inlineHelp":"","line":37,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gl","type":["PIXI.WebGLContext"],"help":"","inlineHelp":"","line":23,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"program","type":["any"],"help":"The WebGL program.","inlineHelp":"","line":30,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"textureCount","type":["number"],"help":"A local texture counter for multi-texture shaders.","inlineHelp":"","line":87,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"vertexSrc","type":["array"],"help":"The vertex shader.","inlineHelp":"","line":52,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[{"name":"_UID","type":["number"],"help":"","inlineHelp":"","line":17,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.PixiShader","extends":"","static":false,"constructor":true,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys the shader.","line":356,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"init","static":false,"returns":null,"help":"Initialises the shader.","line":88,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"initSampler2D","static":false,"returns":null,"help":"Initialises a Sampler2D uniform (which may only be available later on after initUniforms once the texture has loaded)","line":213,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"initUniforms","static":false,"returns":null,"help":"Initialises the shader uniform values.\\n\\nUniforms are specified in the GLSL_ES Specification: http:\/\/www.khronos.org\/registry\/webgl\/specs\/latest\/1.0\/\\nhttp:\/\/www.khronos.org\/registry\/gles\/specs\/2.0\/GLSL_ES_Specification_1.0.17.pdf","line":142,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"syncUniforms","static":false,"returns":null,"help":"Updates the shader uniform values.","line":288,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"defaultVertexSrc","type":["string"],"help":"The Default Vertex shader source.","inlineHelp":"","line":371,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"A dirty flag","inlineHelp":"","line":68,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"fragmentSrc","type":["array"],"help":"The fragment shader.","inlineHelp":"","line":38,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gl","type":["PIXI.WebGLContext"],"help":"","inlineHelp":"","line":24,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"program","type":["any"],"help":"The WebGL program.","inlineHelp":"","line":31,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"textureCount","type":["number"],"help":"A local texture counter for multi-texture shaders.","inlineHelp":"","line":53,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[{"name":"_UID","type":["number"],"help":"","inlineHelp":"","line":18,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"attributes","type":["array"],"help":"Uniform attributes cache.","inlineHelp":"","line":76,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"firstRun","type":["boolean"],"help":"A local flag","inlineHelp":"","line":61,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.Point","extends":"","static":false,"constructor":true,"parameters":[{"name":"x","type":["number"],"help":"position of the point on the x axis","optional":false,"default":null},{"name":"y","type":["number"],"help":"position of the point on the y axis","optional":false,"default":null}],"help":"The Point object represents a location in a two-dimensional coordinate system, where x represents the horizontal axis and y represents the vertical axis."},"consts":[],"methods":{"public":[{"name":"clone","static":false,"returns":{"types":["Phaser.Point"],"help":"a copy of the point"},"help":"Creates a clone of this point","line":36,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"set","static":false,"returns":null,"help":"Sets the point to a new x and y position.\\nIf y is omitted, both x and y will be set to x.","line":49,"public":true,"protected":false,"private":false,"parameters":[{"name":"[x=0]","type":["number"],"help":"position of the point on the x axis","optional":false,"default":null},{"name":"[y=0]","type":["number"],"help":"position of the point on the y axis","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"x","type":["number"],"help":"","inlineHelp":"","line":20,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"y","type":["number"],"help":"","inlineHelp":"","line":27,"default":"0","public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.PolyK","extends":"","static":true,"constructor":false,"parameters":[],"help":"Based on the Polyk library http:\/\/polyk.ivank.net released under MIT licence.\\nThis is an amazing lib!\\nSlightly modified by Mat Groves (matgroves.com);"},"consts":[],"methods":{"public":[{"name":"Triangulate","static":false,"returns":null,"help":"Triangulates shapes for webGL graphic fills.","line":47,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"_PointInTriangle","static":false,"returns":{"types":["boolean"],"help":""},"help":"Checks whether a point is within a triangle","line":135,"public":false,"protected":false,"private":true,"parameters":[{"name":"px","type":["number"],"help":"x coordinate of the point to test","optional":false,"default":null},{"name":"py","type":["number"],"help":"y coordinate of the point to test","optional":false,"default":null},{"name":"ax","type":["number"],"help":"x coordinate of the a point of the triangle","optional":false,"default":null},{"name":"ay","type":["number"],"help":"y coordinate of the a point of the triangle","optional":false,"default":null},{"name":"bx","type":["number"],"help":"x coordinate of the b point of the triangle","optional":false,"default":null},{"name":"by","type":["number"],"help":"y coordinate of the b point of the triangle","optional":false,"default":null},{"name":"cx","type":["number"],"help":"x coordinate of the c point of the triangle","optional":false,"default":null},{"name":"cy","type":["number"],"help":"y coordinate of the c point of the triangle","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"_convex","static":false,"returns":{"types":["boolean"],"help":""},"help":"Checks whether a shape is convex","line":165,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.Polygon","extends":"","static":false,"constructor":true,"parameters":[{"name":"points*","type":["array Phaser.Point","array number","Phaser.Point","number"],"help":"This can be an array of Points that form the polygon,","optional":false,"default":null}],"help":"a flat array of numbers that will be interpreted as [x,y, x,y, ...], or the arguments passed can be\\nall the points of the polygon e.g. `new PIXI.Polygon(new PIXI.Point(), new PIXI.Point(), ...)`, or the\\narguments passed can be flat x,y values e.g. `new PIXI.Polygon(x,y, x,y, x,y, ...)` where `x` and `y` are\\nNumbers."},"consts":[],"methods":{"public":[{"name":"clone","static":false,"returns":{"types":["Phaser.Polygon"],"help":"a copy of the polygon"},"help":"Creates a clone of this polygon","line":41,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"contains","static":false,"returns":{"types":["boolean"],"help":"Whether the x\/y coordinates are within this polygon"},"help":"Checks whether the x and y coordinates passed to this function are contained within this polygon","line":55,"public":true,"protected":false,"private":false,"parameters":[{"name":"x","type":["number"],"help":"The X coordinate of the point to test","optional":false,"default":null},{"name":"y","type":["number"],"help":"The Y coordinate of the point to test","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.PrimitiveShader","extends":"","static":false,"constructor":true,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys the shader.","line":108,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"init","static":false,"returns":null,"help":"Initialises the shader.","line":79,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"fragmentSrc","type":["array"],"help":"The fragment shader.","inlineHelp":"","line":37,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gl","type":["PIXI.WebGLContext"],"help":"","inlineHelp":"","line":23,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"program","type":["any"],"help":"The WebGL program.","inlineHelp":"","line":30,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"vertexSrc","type":["array"],"help":"The vertex shader.","inlineHelp":"","line":51,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[{"name":"_UID","type":["number"],"help":"","inlineHelp":"","line":17,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.RGBSplitFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"An RGB Split Filter."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"angle","type":["number"],"help":"The angle of the split.","inlineHelp":"","line":54,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.Rectangle","extends":"","static":false,"constructor":true,"parameters":[{"name":"x","type":["number"],"help":"The X coordinate of the upper-left corner of the rectangle","optional":false,"default":null},{"name":"y","type":["number"],"help":"The Y coordinate of the upper-left corner of the rectangle","optional":false,"default":null},{"name":"width","type":["number"],"help":"The overall width of this rectangle","optional":false,"default":null},{"name":"height","type":["number"],"help":"The overall height of this rectangle","optional":false,"default":null}],"help":"the Rectangle object is an area defined by its position, as indicated by its top-left corner point (x, y) and by its width and its height."},"consts":[],"methods":{"public":[{"name":"clone","static":false,"returns":{"types":["Phaser.Rectangle"],"help":"a copy of the rectangle"},"help":"Creates a clone of this Rectangle","line":52,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"contains","static":false,"returns":{"types":["boolean"],"help":"Whether the x\/y coordinates are within this Rectangle"},"help":"Checks whether the x and y coordinates given are contained within this Rectangle","line":65,"public":true,"protected":false,"private":false,"parameters":[{"name":"x","type":["number"],"help":"The X coordinate of the point to test","optional":false,"default":null},{"name":"y","type":["number"],"help":"The Y coordinate of the point to test","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"height","type":["number"],"help":"","inlineHelp":"","line":43,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"width","type":["number"],"help":"","inlineHelp":"","line":36,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"x","type":["number"],"help":"","inlineHelp":"","line":22,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"y","type":["number"],"help":"","inlineHelp":"","line":29,"default":"0","public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.SepiaFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"This applies a sepia effect to your Display Objects."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"sepia","type":["number"],"help":"The strength of the sepia. 1 will apply the full sepia effect, 0 will make the object its normal color.","inlineHelp":"","line":48,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.SmartBlurFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"A Smart Blur Filter."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"The strength of the blur.","inlineHelp":"","line":68,"default":"2","public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.SpineLoader","extends":"","static":false,"constructor":true,"parameters":[{"name":"url","type":["string"],"help":"The url of the JSON file","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"Whether requests should be treated as crossorigin","optional":false,"default":null}],"help":"The Spine loader is used to load in JSON spine data\\nTo generate the data you need to use http:\/\/esotericsoftware.com\/ and export in the \"JSON\" format\\nDue to a clash of names You will need to change the extension of the spine file from *.json to *.anim for it to load\\nSee example 12 (http:\/\/www.goodboydigital.com\/pixijs\/examples\/12\/) to see a working example and check out the source\\nYou will need to generate a sprite sheet to accompany the spine data\\nWhen loaded this class will dispatch a \"loaded\" event"},"consts":[],"methods":{"public":[{"name":"load","static":false,"returns":null,"help":"Loads the JSON data","line":61,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"onLoaded","static":false,"returns":null,"help":"Invoked when JSON file is loaded.","line":78,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[{"name":"crossorigin","type":["boolean"],"help":"Whether the requests should be treated as cross origin","inlineHelp":"","line":40,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"loaded","type":["boolean"],"help":"[read-only] Whether the data has loaded yet","inlineHelp":"","line":49,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"url","type":["string"],"help":"The url of the bitmap font data","inlineHelp":"","line":32,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.SpriteBatch","extends":"","static":false,"constructor":true,"parameters":[{"name":"texture","type":["PIXI.Texture"],"help":"","optional":false,"default":null}],"help":"The SpriteBatch class is a really fast version of the DisplayObjectContainer\\nbuilt solely for speed, so use when you need a lot of sprites or particles.\\nAnd it's extremely easy to use :\\n\\nvar container = new PIXI.SpriteBatch();\\n\\nstage.addChild(container);\\n\\nfor(var i = 0; i < 100; i++)\\n{\\nvar sprite = new PIXI.Sprite.fromImage(\"myImage.png\");\\ncontainer.addChild(sprite);\\n}\\nAnd here you have a hundred sprites that will be renderer at the speed of light"},"consts":[],"methods":{"public":[],"protected":[],"private":[{"name":"_renderCanvas","static":false,"returns":null,"help":"Renders the object using the Canvas renderer","line":97,"public":false,"protected":false,"private":true,"parameters":[{"name":"renderSession","type":["PIXI.RenderSession"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"_renderWebGL","static":false,"returns":null,"help":"Renders the object using the WebGL renderer","line":73,"public":false,"protected":false,"private":true,"parameters":[{"name":"renderSession","type":["PIXI.RenderSession"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.SpriteSheetLoader","extends":"","static":false,"constructor":true,"parameters":[{"name":"url","type":["string"],"help":"The url of the sprite sheet JSON file","optional":false,"default":null},{"name":"crossorigin","type":["boolean"],"help":"Whether requests should be treated as crossorigin","optional":false,"default":null}],"help":"The sprite sheet loader is used to load in JSON sprite sheet data\\nTo generate the data you can use http:\/\/www.codeandweb.com\/texturepacker and publish in the 'JSON' format\\nThere is a free version so thats nice, although the paid version is great value for money.\\nIt is highly recommended to use Sprite sheets (also know as a 'texture atlas') as it means sprites can be batched and drawn together for highly increased rendering speed.\\nOnce the data has been loaded the frames are stored in the PIXI texture cache and can be accessed though PIXI.Texture.fromFrameId() and PIXI.Sprite.fromFrameId()\\nThis loader will load the image file that the Spritesheet points to as well as the data.\\nWhen loaded this class will dispatch a 'loaded' event"},"consts":[],"methods":{"public":[{"name":"load","static":false,"returns":null,"help":"This will begin loading the JSON file","line":74,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[{"name":"onLoaded","static":false,"returns":null,"help":"Invoke when all files are loaded (json and texture)","line":90,"public":false,"protected":false,"private":true,"parameters":[],"inherited":false,"inheritedFrom":""}],"static":[]},"properties":{"public":[{"name":"baseUrl","type":["string"],"help":"[read-only] The base url of the bitmap font data","inlineHelp":"","line":45,"default":null,"public":true,"protected":false,"private":false,"readOnly":true},{"name":"crossorigin","type":["boolean"],"help":"Whether the requests should be treated as cross origin","inlineHelp":"","line":36,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"frames","type":["object"],"help":"The frames of the sprite sheet","inlineHelp":"","line":61,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"texture","type":["PIXI.Texture"],"help":"The texture being loaded","inlineHelp":"","line":53,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"url","type":["string"],"help":"The url of the atlas data","inlineHelp":"","line":28,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.StripShader","extends":"","static":false,"constructor":true,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys the shader.","line":116,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"init","static":false,"returns":null,"help":"Initialises the shader.","line":85,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"fragmentSrc","type":["array"],"help":"The fragment shader.","inlineHelp":"","line":37,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gl","type":["PIXI.WebGLContext"],"help":"","inlineHelp":"","line":23,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"program","type":["any"],"help":"The WebGL program.","inlineHelp":"","line":30,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"vertexSrc","type":["array"],"help":"The vertex shader.","inlineHelp":"","line":55,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[{"name":"_UID","type":["number"],"help":"","inlineHelp":"","line":17,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.TiltShiftFilter","extends":"","static":false,"constructor":true,"parameters":[],"help":"A TiltShift Filter. Manages the pass of both a TiltShiftXFilter and TiltShiftYFilter."},"consts":[],"methods":{"public":[],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"The strength of the blur.","inlineHelp":"","line":30,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"end","type":["number"],"help":"The Y value to end the effect at.","inlineHelp":"","line":75,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gradientBlur","type":["number"],"help":"The strength of the gradient blur.","inlineHelp":"","line":45,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"start","type":["number"],"help":"The Y value to start the effect at.","inlineHelp":"","line":60,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.TiltShiftXFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"A TiltShiftXFilter."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"},{"name":"updateDelta","static":false,"returns":null,"help":"Updates the filter delta values.","line":143,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"The strength of the blur.","inlineHelp":"","line":78,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"end","type":["number"],"help":"The X value to end the effect at.","inlineHelp":"","line":127,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gradientBlur","type":["number"],"help":"The strength of the gradient blur.","inlineHelp":"","line":94,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"start","type":["number"],"help":"The X value to start the effect at.","inlineHelp":"","line":110,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.TiltShiftYFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"A TiltShiftYFilter."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"},{"name":"updateDelta","static":false,"returns":null,"help":"Updates the filter delta values.","line":143,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"blur","type":["number"],"help":"The strength of the blur.","inlineHelp":"","line":78,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"end","type":["number"],"help":"The Y value to end the effect at.","inlineHelp":"","line":127,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"gradientBlur","type":["number"],"help":"The strength of the gradient blur.","inlineHelp":"","line":94,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"start","type":["number"],"help":"The Y value to start the effect at.","inlineHelp":"","line":110,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.TwistFilter","extends":"PIXI.AbstractFilter","static":false,"constructor":true,"parameters":[],"help":"This filter applies a twist effect making display objects appear twisted in the given direction."},"consts":[],"methods":{"public":[{"name":"syncUniforms","static":false,"returns":null,"help":"Syncs the uniforms between the class object and the shaders.","line":65,"public":true,"protected":false,"private":false,"parameters":[],"inherited":true,"inheritedFrom":"PIXI.AbstractFilter"}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"angle","type":["number"],"help":"This angle of the twist.","inlineHelp":"","line":94,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"offset","type":["Phaser.Point"],"help":"This point describes the the offset of the twist.","inlineHelp":"","line":62,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"radius","type":["number"],"help":"This radius of the twist.","inlineHelp":"","line":78,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.WebGLBlendModeManager","extends":"","static":false,"constructor":true,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys this object.","line":55,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"setBlendMode","static":false,"returns":null,"help":"Sets-up the given blendMode from WebGL's point of view.","line":38,"public":true,"protected":false,"private":false,"parameters":[{"name":"blendMode","type":["number"],"help":"the blendMode, should be a Pixi const, such as PIXI.BlendModes.ADD","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"setContext","static":false,"returns":null,"help":"Sets the WebGL Context.","line":27,"public":true,"protected":false,"private":false,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"currentBlendMode","type":["number"],"help":"","inlineHelp":"","line":16,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.WebGLFastSpriteBatch","extends":"","static":false,"constructor":true,"parameters":[],"help":""},"consts":[],"methods":{"public":[{"name":"begin","static":false,"returns":null,"help":"","line":158,"public":true,"protected":false,"private":false,"parameters":[{"name":"spriteBatch","type":["PIXI.WebGLSpriteBatch"],"help":"","optional":false,"default":null},{"name":"renderSession","type":["object"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"end","static":false,"returns":null,"help":"","line":171,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"flush","static":false,"returns":null,"help":"","line":351,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"render","static":false,"returns":null,"help":"","line":180,"public":true,"protected":false,"private":false,"parameters":[{"name":"spriteBatch","type":["PIXI.WebGLSpriteBatch"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"renderSprite","static":false,"returns":null,"help":"","line":211,"public":true,"protected":false,"private":false,"parameters":[{"name":"sprite","type":["PIXI.Sprite"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"setContext","static":false,"returns":null,"help":"Sets the WebGL Context.","line":135,"public":true,"protected":false,"private":false,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"start","static":false,"returns":null,"help":"","line":399,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"stop","static":false,"returns":null,"help":"","line":391,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"currentBaseTexture","type":["PIXI.BaseTexture"],"help":"","inlineHelp":"","line":99,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"currentBatchSize","type":["number"],"help":"","inlineHelp":"","line":93,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"currentBlendMode","type":["number"],"help":"","inlineHelp":"","line":105,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"drawing","type":["boolean"],"help":"","inlineHelp":"","line":87,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"indexBuffer","type":["object"],"help":"","inlineHelp":"","line":65,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"indices","type":["Uint16Array"],"help":"Index data","inlineHelp":"","line":53,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"lastIndexCount","type":["number"],"help":"","inlineHelp":"","line":71,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"matrix","type":["PIXI.Matrix"],"help":"","inlineHelp":"","line":123,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"maxSize","type":["number"],"help":"","inlineHelp":"","line":27,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"renderSession","type":["object"],"help":"","inlineHelp":"","line":111,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"shader","type":["object"],"help":"","inlineHelp":"","line":117,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"size","type":["number"],"help":"","inlineHelp":"","line":33,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"vertSize","type":["number"],"help":"","inlineHelp":"","line":21,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"vertexBuffer","type":["object"],"help":"","inlineHelp":"","line":59,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"vertices","type":["Float32Array"],"help":"Vertex data","inlineHelp":"","line":46,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.WebGLFilterManager","extends":"","static":false,"constructor":true,"parameters":[],"help":""},"consts":[],"methods":{"public":[{"name":"applyFilterPass","static":false,"returns":null,"help":"Applies the filter to the specified area.","line":324,"public":true,"protected":false,"private":false,"parameters":[{"name":"filter","type":["PIXI.AbstractFilter"],"help":"the filter that needs to be applied","optional":false,"default":null},{"name":"filterArea","type":["PIXI.Texture"],"help":"TODO - might need an update","optional":false,"default":null},{"name":"width","type":["number"],"help":"the horizontal range of the filter","optional":false,"default":null},{"name":"height","type":["number"],"help":"the vertical range of the filter","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"begin","static":false,"returns":null,"help":"","line":51,"public":true,"protected":false,"private":false,"parameters":[{"name":"renderSession","type":["PIXI.RenderSession"],"help":"","optional":false,"default":null},{"name":"buffer","type":["array"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"destroy","static":false,"returns":null,"help":"Destroys the filter and removes it from the filter stack.","line":429,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"initShaderBuffers","static":false,"returns":null,"help":"Initialises the shader buffers.","line":381,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"popFilter","static":false,"returns":null,"help":"Removes the last filter from the filter stack and doesn't return it.","line":143,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"pushFilter","static":false,"returns":null,"help":"Applies the filter and adds it to the current filter stack.","line":68,"public":true,"protected":false,"private":false,"parameters":[{"name":"filterBlock","type":["object"],"help":"the filter that will be pushed to the current filter stack","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"setContext","static":false,"returns":null,"help":"Initialises the context and the properties.","line":38,"public":true,"protected":false,"private":false,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"filterStack","type":["array"],"help":"","inlineHelp":"","line":15,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"offsetX","type":["number"],"help":"","inlineHelp":"","line":21,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"offsetY","type":["number"],"help":"","inlineHelp":"","line":27,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.WebGLMaskManager","extends":"","static":false,"constructor":true,"parameters":[],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys the mask stack.","line":66,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"popMask","static":false,"returns":null,"help":"Removes the last filter from the filter stack and doesn't return it.","line":55,"public":true,"protected":false,"private":false,"parameters":[{"name":"maskData","type":["array"],"help":"","optional":false,"default":null},{"name":"renderSession","type":["object"],"help":"an object containing all the useful parameters","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"pushMask","static":false,"returns":null,"help":"Applies the Mask and adds it to the current filter stack.","line":34,"public":true,"protected":false,"private":false,"parameters":[{"name":"maskData","type":["array"],"help":"","optional":false,"default":null},{"name":"renderSession","type":["object"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"setContext","static":false,"returns":null,"help":"Sets the drawing context to the one given in parameter.","line":22,"public":true,"protected":false,"private":false,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.WebGLShaderManager","extends":"","static":false,"constructor":true,"parameters":[],"help":""},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Destroys this object.","line":140,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"setAttribs","static":false,"returns":null,"help":"Takes the attributes given in parameters.","line":78,"public":true,"protected":false,"private":false,"parameters":[{"name":"attribs","type":["array"],"help":"attribs","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"setContext","static":false,"returns":null,"help":"Initialises the context and the properties.","line":51,"public":true,"protected":false,"private":false,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"setShader","static":false,"returns":null,"help":"Sets the current shader.","line":121,"public":true,"protected":false,"private":false,"parameters":[{"name":"shader","type":["any"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"attribState","type":["array"],"help":"","inlineHelp":"","line":22,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"maxAttibs","type":["number"],"help":"","inlineHelp":"","line":16,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"stack","type":["array"],"help":"","inlineHelp":"","line":39,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"tempAttribState","type":["array"],"help":"","inlineHelp":"","line":28,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.WebGLStencilManager","extends":"","static":false,"constructor":true,"parameters":[],"help":""},"consts":[],"methods":{"public":[{"name":"bindGraphics","static":false,"returns":null,"help":"TODO this does not belong here!","line":128,"public":true,"protected":false,"private":false,"parameters":[{"name":"graphics","type":["PIXI.Graphics"],"help":"","optional":false,"default":null},{"name":"webGLData","type":["array"],"help":"","optional":false,"default":null},{"name":"renderSession","type":["object"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"destroy","static":false,"returns":null,"help":"Destroys the mask stack.","line":290,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"popStencil","static":false,"returns":null,"help":"","line":196,"public":true,"protected":false,"private":false,"parameters":[{"name":"graphics","type":["PIXI.Graphics"],"help":"","optional":false,"default":null},{"name":"webGLData","type":["array"],"help":"","optional":false,"default":null},{"name":"renderSession","type":["object"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"pushMask","static":false,"returns":null,"help":"Applies the Mask and adds it to the current filter stack.","line":36,"public":true,"protected":false,"private":false,"parameters":[{"name":"graphics","type":["PIXI.Graphics"],"help":"","optional":false,"default":null},{"name":"webGLData","type":["array"],"help":"","optional":false,"default":null},{"name":"renderSession","type":["object"],"help":"","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"setContext","static":false,"returns":null,"help":"Sets the drawing context to the one given in parameter.","line":23,"public":true,"protected":false,"private":false,"parameters":[{"name":"gl","type":["PIXI.WebGLContext"],"help":"the current WebGL drawing context","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"PIXI.autoDetectRenderer","extends":"","static":true,"constructor":false,"parameters":[{"name":"width=800","type":["number"],"help":"the width of the renderers view","optional":false,"default":null},{"name":"height=600","type":["number"],"help":"the height of the renderers view","optional":false,"default":null},{"name":"[options]","type":["object"],"help":"The optional renderer parameters","optional":false,"default":null},{"name":"[options.view]","type":["HTMLCanvasElement"],"help":"the canvas to use as a view, optional","optional":false,"default":null},{"name":"[options.transparent=false]","type":["boolean"],"help":"If the render view is transparent, default false","optional":false,"default":null},{"name":"[options.antialias=false]","type":["boolean"],"help":"sets antialias (only applicable in chrome at the moment)","optional":false,"default":null},{"name":"[options.preserveDrawingBuffer=false]","type":["boolean"],"help":"enables drawing buffer preservation, enable this if you need to call toDataUrl on the webgl context","optional":false,"default":null},{"name":"[options.resolution=1]","type":["number"],"help":"the resolution of the renderer retina would be 2","optional":false,"default":null}],"help":"This helper function will automatically detect which renderer you should be using.\\nWebGL is the preferred renderer as it is a lot faster. If webGL is not supported by\\nthe browser then this function will return a canvas renderer\\n"},"consts":[],"methods":{"public":[],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"Phaser.AnimationParser","extends":"","static":true,"constructor":false,"parameters":[],"help":"Responsible for parsing sprite sheet and JSON data into the internal FrameData format that Phaser uses for animations."},"consts":[],"methods":{"public":[{"name":"JSONData","static":false,"returns":{"types":["Phaser.FrameData"],"help":"A FrameData object containing the parsed frames."},"help":"Parse the JSON data and extract the animation frame data from it.","line":108,"public":true,"protected":false,"private":false,"parameters":[{"name":"game","type":["Phaser.Game"],"help":"A reference to the currently running game.","optional":false,"default":null},{"name":"json","type":["object"],"help":"The JSON data from the Texture Atlas. Must be in Array format.","optional":false,"default":null},{"name":"cacheKey","type":["string"],"help":"The Game.Cache asset key of the texture image.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"JSONDataHash","static":false,"returns":{"types":["Phaser.FrameData"],"help":"A FrameData object containing the parsed frames."},"help":"Parse the JSON data and extract the animation frame data from it.","line":173,"public":true,"protected":false,"private":false,"parameters":[{"name":"game","type":["Phaser.Game"],"help":"A reference to the currently running game.","optional":false,"default":null},{"name":"json","type":["object"],"help":"The JSON data from the Texture Atlas. Must be in JSON Hash format.","optional":false,"default":null},{"name":"cacheKey","type":["string"],"help":"The Game.Cache asset key of the texture image.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"XMLData","static":false,"returns":{"types":["Phaser.FrameData"],"help":"A FrameData object containing the parsed frames."},"help":"Parse the XML data and extract the animation frame data from it.","line":241,"public":true,"protected":false,"private":false,"parameters":[{"name":"game","type":["Phaser.Game"],"help":"A reference to the currently running game.","optional":false,"default":null},{"name":"xml","type":["object"],"help":"The XML data from the Texture Atlas. Must be in Starling XML format.","optional":false,"default":null},{"name":"cacheKey","type":["string"],"help":"The Game.Cache asset key of the texture image.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"spriteSheet","static":false,"returns":{"types":["Phaser.FrameData"],"help":"A FrameData object containing the parsed frames."},"help":"Parse a Sprite Sheet and extract the animation frame data from it.","line":28,"public":true,"protected":false,"private":false,"parameters":[{"name":"game","type":["Phaser.Game"],"help":"A reference to the currently running game.","optional":false,"default":null},{"name":"key","type":["string"],"help":"The Game.Cache asset key of the Sprite Sheet image.","optional":false,"default":null},{"name":"frameWidth","type":["number"],"help":"The fixed width of each frame of the animation.","optional":false,"default":null},{"name":"frameHeight","type":["number"],"help":"The fixed height of each frame of the animation.","optional":false,"default":null},{"name":"frameMax","type":["number"],"help":"The total number of animation frames to extact from the Sprite Sheet. The default value of -1 means \"extract all frames\".","optional":true,"default":"-1"},{"name":"margin","type":["number"],"help":"If the frames have been drawn with a margin, specify the amount here.","optional":true,"default":"0"},{"name":"spacing","type":["number"],"help":"If the frames have been drawn with spacing between them, specify the amount here.","optional":true,"default":"0"}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"Phaser.ArrayList","extends":"","static":false,"constructor":true,"parameters":[],"help":"A set data structure. Allows items to add themselves to and remove themselves from the set. Items can only exist once in the set."},"consts":[],"methods":{"public":[{"name":"add","static":false,"returns":{"types":["object"],"help":"The child that was added."},"help":"Adds a new element to this list. The item can only exist in the list once.","line":43,"public":true,"protected":false,"private":false,"parameters":[{"name":"child","type":["object"],"help":"The element to add to this list. Can be a Phaser.Sprite or any other object you need to quickly iterate through.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"callAll","static":false,"returns":null,"help":"Calls a function on all members of this list, using the member as the context for the callback.\\nThe function must exist on the member.","line":142,"public":true,"protected":false,"private":false,"parameters":[{"name":"callback","type":["function"],"help":"The function to call.","optional":false,"default":null},{"name":"parameter","type":["any"],"help":"Additional parameters that will be passed to the callback.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"exists","static":false,"returns":{"types":["boolean"],"help":"True if the child is found in the list, otherwise false."},"help":"Checks for the child within this list.","line":75,"public":true,"protected":false,"private":false,"parameters":[{"name":"child","type":["object"],"help":"The element to get the list index for.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"getIndex","static":false,"returns":{"types":["number"],"help":"The index of the child or -1 if not found."},"help":"Gets the index of the child in the list, or -1 if it isn't in the list.","line":62,"public":true,"protected":false,"private":false,"parameters":[{"name":"child","type":["object"],"help":"The element to get the list index for.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"remove","static":false,"returns":{"types":["object"],"help":"child - The child that was removed."},"help":"Removes the given element from this list if it exists.","line":100,"public":true,"protected":false,"private":false,"parameters":[{"name":"child","type":["object"],"help":"The child to be removed from the list.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"reset","static":false,"returns":null,"help":"Resets the list length and drops all items in the list.","line":86,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"setAll","static":false,"returns":null,"help":"Sets the property `key` to the given value on all members of this list.","line":120,"public":true,"protected":false,"private":false,"parameters":[{"name":"key","type":["object"],"help":"The object on the child to set.","optional":false,"default":null},{"name":"value","type":["any"],"help":"The value to set the property to.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"first","type":["object"],"help":"Resets the cursor to the first item in the list and returns it.","inlineHelp":"The first item in the list.","line":166,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"list","type":["array"],"help":"","inlineHelp":"The list.","line":30,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"next","type":["object"],"help":"Gets the next item in the list and returns it, advancing the cursor.","inlineHelp":"Advanced the cursor and return.","line":191,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"position","type":["number"],"help":"","inlineHelp":"Current cursor position.","line":25,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"total","type":["number"],"help":"","inlineHelp":"Number of objects in the list.","line":19,"default":"0","public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

View file

@ -1 +0,0 @@
{"class":{"name":"Phaser.AudioSprite","extends":"","static":false,"constructor":true,"parameters":[{"name":"game","type":["Phaser.Game"],"help":"Reference to the current game instance.","optional":false,"default":null},{"name":"key","type":["string"],"help":"Asset key for the sound.","optional":false,"default":null}],"help":"Audio Sprites are a combination of audio files and a JSON configuration.\\nThe JSON follows the format of that created by https:\/\/github.com\/tonistiigi\/audiosprite"},"consts":[],"methods":{"public":[{"name":"get","static":false,"returns":{"types":["Phaser.Sound"],"help":"The sound instance."},"help":"Get a sound with the given name.","line":129,"public":true,"protected":false,"private":false,"parameters":[{"name":"marker","type":["string"],"help":"The name of sound to get.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"play","static":false,"returns":{"types":["Phaser.Sound"],"help":"This sound instance."},"help":"Play a sound with the given name.","line":92,"public":true,"protected":false,"private":false,"parameters":[{"name":"marker","type":["string"],"help":"The name of sound to play","optional":true,"default":null},{"name":"volume","type":["number"],"help":"Volume of the sound you want to play. If none is given it will use the volume given to the Sound when it was created (which defaults to 1 if none was specified).","optional":true,"default":"1"}],"inherited":false,"inheritedFrom":""},{"name":"stop","static":false,"returns":null,"help":"Stop a sound with the given name.","line":106,"public":true,"protected":false,"private":false,"parameters":[{"name":"marker","type":["string"],"help":"The name of sound to stop. If none is given it will stop all sounds in the audio sprite.","optional":true,"default":"''"}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"autoplay","type":["boolean"],"help":"Is a sound set to autoplay or not?","inlineHelp":"","line":48,"default":"false","public":true,"protected":false,"private":false,"readOnly":false},{"name":"autoplayKey","type":["string"],"help":"If a sound is set to auto play, this holds the marker key of it.","inlineHelp":"","line":41,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"config","type":["object"],"help":"JSON audio atlas object.","inlineHelp":"","line":35,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"game","type":["Phaser.Game"],"help":"A reference to the currently running Game.","inlineHelp":"","line":23,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"key","type":["string"],"help":"Asset key for the Audio Sprite.","inlineHelp":"","line":29,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"sounds","type":["object"],"help":"An object containing the Phaser.Sound objects for the Audio Sprite.","inlineHelp":"","line":54,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"Phaser.Easing","extends":"","static":true,"constructor":false,"parameters":[],"help":"A collection of easing methods defining ease-in and ease-out curves."},"consts":[],"methods":{"public":[{"name":"In","static":false,"returns":null,"help":"Bounce ease-in.","line":512,"public":true,"protected":false,"private":false,"parameters":[{"name":"k","type":["number"],"help":"The value to be tweened.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"InOut","static":false,"returns":null,"help":"Bounce ease-in\/out.","line":554,"public":true,"protected":false,"private":false,"parameters":[{"name":"k","type":["number"],"help":"The value to be tweened.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"None","static":false,"returns":null,"help":"Linear Easing (no variation).","line":30,"public":true,"protected":false,"private":false,"parameters":[{"name":"k","type":["number"],"help":"The value to be tweened.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"Out","static":false,"returns":null,"help":"Bounce ease-out.","line":525,"public":true,"protected":false,"private":false,"parameters":[{"name":"k","type":["number"],"help":"The value to be tweened.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[],"protected":[],"private":[]}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"class":{"name":"Phaser.Filter","extends":"","static":false,"constructor":true,"parameters":[{"name":"game","type":["Phaser.Game"],"help":"A reference to the currently running game.","optional":false,"default":null},{"name":"uniforms","type":["object"],"help":"Uniform mappings object","optional":false,"default":null},{"name":"fragmentSrc","type":["array"],"help":"The fragment shader code.","optional":false,"default":null}],"help":"This is a base Filter class to use for any Phaser filter development."},"consts":[],"methods":{"public":[{"name":"destroy","static":false,"returns":null,"help":"Clear down this Filter and null out references","line":150,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"init","static":false,"returns":null,"help":"Should be over-ridden.","line":105,"public":true,"protected":false,"private":false,"parameters":[],"inherited":false,"inheritedFrom":""},{"name":"setResolution","static":false,"returns":null,"help":"Set the resolution uniforms on the filter.","line":115,"public":true,"protected":false,"private":false,"parameters":[{"name":"width","type":["number"],"help":"The width of the display.","optional":false,"default":null},{"name":"height","type":["number"],"help":"The height of the display.","optional":false,"default":null}],"inherited":false,"inheritedFrom":""},{"name":"update","static":false,"returns":null,"help":"Updates the filter.","line":127,"public":true,"protected":false,"private":false,"parameters":[{"name":"pointer","type":["Phaser.Pointer"],"help":"A Pointer object to use for the filter. The coordinates are mapped to the mouse uniform.","optional":true,"default":null}],"inherited":false,"inheritedFrom":""}],"protected":[],"private":[],"static":[]},"properties":{"public":[{"name":"dirty","type":["boolean"],"help":"","inlineHelp":"Internal PIXI var.","line":47,"default":"true","public":true,"protected":false,"private":false,"readOnly":false},{"name":"fragmentSrc","type":["array"],"help":"","inlineHelp":"The fragment shader code.","line":95,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"game","type":["Phaser.Game"],"help":"","inlineHelp":"A reference to the currently running game.","line":21,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"height","type":["number"],"help":"","inlineHelp":"The height (resolution uniform)","line":180,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"padding","type":["number"],"help":"","inlineHelp":"Internal PIXI var.","line":53,"default":"0","public":true,"protected":false,"private":false,"readOnly":false},{"name":"prevPoint","type":["Phaser.Point"],"help":"","inlineHelp":"The previous position of the pointer (we don't update the uniform if the same)","line":58,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"type","type":["number"],"help":"","inlineHelp":"The const type of this object, either Phaser.WEBGL_FILTER or Phaser.CANVAS_FILTER.","line":27,"default":"Phaser.WEBGL_FILTER","public":true,"protected":false,"private":false,"readOnly":false},{"name":"uniforms","type":["object"],"help":"","inlineHelp":"Default uniform mappings. Compatible with ShaderToy and GLSLSandbox.","line":69,"default":null,"public":true,"protected":false,"private":false,"readOnly":false},{"name":"width","type":["number"],"help":"","inlineHelp":"The width (resolution uniform)","line":164,"default":null,"public":true,"protected":false,"private":false,"readOnly":false}],"protected":[],"private":[{"name":"passes","type":["array"],"help":"An array of passes - some filters contain a few steps this array simply stores the steps in a linear fashion.\\nFor example the blur filter has two passes blurX and blurY.","inlineHelp":"An array of filter objects.","line":35,"default":null,"public":false,"protected":false,"private":true,"readOnly":false},{"name":"shaders","type":["array"],"help":"","inlineHelp":"Array an array of shaders.","line":41,"default":null,"public":false,"protected":false,"private":true,"readOnly":false}]}}

Some files were not shown because too many files have changed in this diff Show more