First commit
This commit is contained in:
2263
hGameTest/node_modules/openfl/CHANGELOG.md
generated
vendored
Normal file
2263
hGameTest/node_modules/openfl/CHANGELOG.md
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
22
hGameTest/node_modules/openfl/LICENSE.md
generated
vendored
Normal file
22
hGameTest/node_modules/openfl/LICENSE.md
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
MIT License
|
||||
===========
|
||||
|
||||
Copyright (c) 2013-2018 Joshua Granick and other OpenFL contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
17
hGameTest/node_modules/openfl/NOTICE.md
generated
vendored
Normal file
17
hGameTest/node_modules/openfl/NOTICE.md
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
Notices
|
||||
=======
|
||||
|
||||
### OpenFL
|
||||
Copyright (c) 2013-2017 Joshua Granick and other OpenFL contributors
|
||||
|
||||
Modifications and source-repository versions of Haxe core files are included in the
|
||||
[haxe/](haxe/) folder, which are available under an "MIT" license. For details, see
|
||||
https://github.com/haxefoundation/haxe
|
||||
|
||||
Files derived from the "as3swf" project are included in the [tools/format/swf/](tools/format/swf/)
|
||||
directory, which are available under an "MIT" license. For details, see
|
||||
https://github.com/claus/as3swf
|
||||
|
||||
Excerpts of the Adobe ActionScript 3.0 Reference are used, with modification,
|
||||
which is available under the "CC BY-NC-SA 3.0" license. For details, see
|
||||
http://creativecommons.org/licenses/by-nc-sa/3.0/
|
||||
336
hGameTest/node_modules/openfl/README.md
generated
vendored
Normal file
336
hGameTest/node_modules/openfl/README.md
generated
vendored
Normal file
@@ -0,0 +1,336 @@
|
||||
[](LICENSE.md) [](http://npmjs.com/package/openfl) [](http://lib.haxe.org/p/openfl) [](https://circleci.com/gh/openfl/openfl)
|
||||
|
||||
|
||||
<br />
|
||||
<p align="center"><img src="assets/openfl.png"/></p>
|
||||
|
||||
|
||||
Purpose
|
||||
=======
|
||||
|
||||
Interactive application and game developers need access to productive tools for forging bitmap, vector, text, sound and video together. The modern-day web browser provides many of these features, but performance for animated content, and support for hardware graphics (while still supporting software caching and fallback) is not readily available. OpenFL combines a proven set of tools for development of games and rich interactive content, going back to the first renaissance innovators on the web.
|
||||
|
||||
|
||||
Two Versions
|
||||
============
|
||||
|
||||
There are two versions of OpenFL, the first is primarily distributed using haxelib, and blends native support for Windows, macOS, Linux, iOS, Android, Flash, HTML5 and WebAssembly. You can read more about the haxelib distributed version of OpenFL, [here](README-haxelib.md).
|
||||
|
||||
The second edition of OpenFL is distributed using NPM, and is designed for use from TypeScript, JavaScript (EcmaScript 5 or 6+) or Haxe, the latter of which can be used in both versions of OpenFL. The NPM version of OpenFL is designed to be used in a browser environment.
|
||||
|
||||
|
||||
Getting Started
|
||||
===============
|
||||
|
||||
The simplest way to get started is to use Yeoman to create a new project:
|
||||
|
||||
```bash
|
||||
npm install -g yo generator-openfl
|
||||
mkdir NewProject
|
||||
cd NewProject
|
||||
yo openfl
|
||||
```
|
||||
|
||||
You will have the opportunity to choose TypeScript, Haxe, ES6 or ES5 as the source language for your new project.
|
||||
|
||||
The template project will include configuration files for Webpack, as well as a source code entry point where you can begin writing a new project. In order to begin using OpenFL, you can try adding support for loading and displaying an image (_[continued below](#displaying-a-bitmap)_).
|
||||
|
||||
|
||||
Features
|
||||
========
|
||||
|
||||
The DOM (Document Object Model) is a convenient method of nesting and arranging visual content, but it is known to be slow. Use of the DOM is discouraged for animated content, unless steps are taken to limit the number of reflows. Normally to improve performance, a developer is forced to use either canvas 2D or WebGL, creating a new problem with writing new rendering code, and losing what made the DOM easy to work with.
|
||||
|
||||
OpenFL provides a standard object model, along with additional features useful for animation and interactive development.
|
||||
|
||||
## Rendering
|
||||
|
||||
* WebGL 1 and 2
|
||||
* Canvas 2D
|
||||
* CSS 2D transforms (DOM)
|
||||
|
||||
## Object Model
|
||||
|
||||
* Matrix transforms
|
||||
* Color transforms
|
||||
* Hit testing
|
||||
* Event propagation
|
||||
* Bitmap caching
|
||||
* Filters (limited)
|
||||
* Masking and scroll rectangles
|
||||
|
||||
## Vector Graphics
|
||||
|
||||
* Solid, bitmap and gradient fills
|
||||
* Quadratic and cubic bézier curves
|
||||
* Ellipses, circles and paths
|
||||
* Rectangles and rounded rectangles
|
||||
* Lines with cap, joint and miter styles
|
||||
|
||||
## Bitmap Data
|
||||
|
||||
* Seamless support for image, canvas and typed array pixel stores
|
||||
* Transparency and premultiplied alpha
|
||||
* Get, set and copy pixels
|
||||
* Fill and flood fill
|
||||
* Color bounds calculation
|
||||
* Threshold operations
|
||||
* Render-to-texture
|
||||
* Output PNG and JPEG bytes
|
||||
* Channel blending between images
|
||||
* Noise and perlin noise (limited)
|
||||
* Palette swapping
|
||||
* Difference images
|
||||
* Scrolling
|
||||
|
||||
## Text Support
|
||||
|
||||
* Font, color and alignment
|
||||
* Selectable text input
|
||||
* Auto-size and alignment
|
||||
* Background and border
|
||||
* Plain or simple HTML text
|
||||
* Multi-line, restrict or password
|
||||
* Character metrics
|
||||
* Selection
|
||||
* Text replacement
|
||||
|
||||
## Sound Support
|
||||
|
||||
* Sound playback
|
||||
* Global sound mixing
|
||||
* Time, loops, sound transforms
|
||||
|
||||
## Geometry Types
|
||||
|
||||
* 2D (3x3) matrix
|
||||
* 3D (4x4) matrix
|
||||
* Orientation and perspective
|
||||
* Points and vectors
|
||||
* Rectangle
|
||||
|
||||
## Networking
|
||||
|
||||
* Save data to disk
|
||||
* Local storage
|
||||
* Web sockets
|
||||
* HTTP requests
|
||||
|
||||
## Input
|
||||
|
||||
* Mouse and touch
|
||||
* Keyboard
|
||||
* Gamepad
|
||||
|
||||
## Other Features
|
||||
|
||||
* Batched tile rendering
|
||||
* Video rendering
|
||||
* Asset management
|
||||
* MovieClip animations
|
||||
|
||||
|
||||
Displaying a Bitmap
|
||||
===================
|
||||
|
||||
Create a new project using `yo openfl`
|
||||
|
||||
```bash
|
||||
mkdir DisplayingABitmap
|
||||
cd DisplayingABitmap
|
||||
yo openfl
|
||||
```
|
||||
|
||||
Next, download [openfl.png](assets/openfl.png) and save it your new "dist" directory.
|
||||
|
||||
Next, use Visual Studio Code or another code editor to open "src/app.ts", "src/app.js" or "src/App.hx", depending upon the language type you used when you created the project. We will need to add a couple more imports, and a little code to load and display an image.
|
||||
|
||||
## TypeScript
|
||||
|
||||
At the top of the file, add new imports:
|
||||
|
||||
```typescript
|
||||
import Bitmap from "openfl/display/Bitmap";
|
||||
import BitmapData from "openfl/display/BitmapData";
|
||||
```
|
||||
|
||||
Then extend the `constructor` method so it looks like this:
|
||||
|
||||
```typescript
|
||||
constructor () {
|
||||
|
||||
super ();
|
||||
|
||||
BitmapData.loadFromFile ("openfl.png").onComplete ((bitmapData) => {
|
||||
|
||||
var bitmap = new Bitmap (bitmapData);
|
||||
this.addChild (bitmap);
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
## Haxe
|
||||
|
||||
At the top of the file, add new imports:
|
||||
|
||||
```haxe
|
||||
import openfl.display.Bitmap;
|
||||
import openfl.display.BitmapData;
|
||||
```
|
||||
|
||||
Then extend the `new` method so it looks like this:
|
||||
|
||||
```haxe
|
||||
public function new () {
|
||||
|
||||
super ();
|
||||
|
||||
BitmapData.loadFromFile ("openfl.png").onComplete (function (bitmapData) {
|
||||
|
||||
var bitmap = new Bitmap (bitmapData);
|
||||
addChild (bitmap);
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
## ES6 JavaScript
|
||||
|
||||
At the top of the file, add new imports:
|
||||
|
||||
```typescript
|
||||
import Bitmap from "openfl/display/Bitmap";
|
||||
import BitmapData from "openfl/display/BitmapData";
|
||||
```
|
||||
|
||||
Then extend the `constructor` method so it looks like this:
|
||||
|
||||
```typescript
|
||||
constructor () {
|
||||
|
||||
super ();
|
||||
|
||||
BitmapData.loadFromFile ("openfl.png").onComplete ((bitmapData) => {
|
||||
|
||||
var bitmap = new Bitmap (bitmapData);
|
||||
this.addChild (bitmap);
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
## ES5 JavaScript
|
||||
|
||||
At the top of the file, add new require statements:
|
||||
|
||||
```typescript
|
||||
var Bitmap = require ("openfl/display/Bitmap").default;
|
||||
var BitmapData = require ("openfl/display/BitmapData").default;
|
||||
```
|
||||
|
||||
Then extend the `App` constructor so it looks like this:
|
||||
|
||||
```typescript
|
||||
var App = function () {
|
||||
|
||||
Sprite.call (this);
|
||||
|
||||
BitmapData.loadFromFile ("openfl.png").onComplete (function (bitmapData) {
|
||||
|
||||
var bitmap = new Bitmap (bitmapData);
|
||||
this.addChild (bitmap);
|
||||
|
||||
}.bind (this));
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
## Running the Project
|
||||
|
||||
You can start a development server by going to the root directory of your project, and running `npm start`. In addition to compiling your application, it will open a new window in your web browser, with hot reloading enabled. This means that if you edit the `app.ts`, `app.js` or `App.hx` source file, the server will automatically compile your changes, and reload the current window, speeding up development. Now we can making more changes.
|
||||
|
||||
|
||||
## Adding Changes
|
||||
|
||||
You can continue make changes to your `app.ts`, `app.js` or `App.hx` file, to manipulate your bitmap after it is loaded.
|
||||
|
||||
For example:
|
||||
|
||||
```haxe
|
||||
bitmap.x = 10;
|
||||
bitmap.y = 200;
|
||||
bitmap.rotation = 45;
|
||||
bitmap.alpha = 0.5;
|
||||
```
|
||||
|
||||
## Other Samples
|
||||
|
||||
There are more sample projects with additional features (such as sound, animation and video) in each of the OpenFL samples repositories:
|
||||
|
||||
- https://github.com/openfl/openfl-samples-ts
|
||||
- https://github.com/openfl/openfl-samples
|
||||
- https://github.com/openfl/openfl-samples-es6
|
||||
- https://github.com/openfl/openfl-samples-es5
|
||||
|
||||
Each of the samples can be tested using `npm install` then `npm start`
|
||||
|
||||
|
||||
Additional Reading
|
||||
==================
|
||||
|
||||
Go to http://www.openfl.org for more information on OpenFL, and visit http://community.openfl.org to ask questions and get help!
|
||||
|
||||
|
||||
License
|
||||
=======
|
||||
|
||||
OpenFL is free, open-source software under the [MIT license](LICENSE.md).
|
||||
|
||||
|
||||
Development Builds
|
||||
==================
|
||||
|
||||
Clone the OpenFL repository:
|
||||
|
||||
```bash
|
||||
git clone https://github.com/openfl/openfl
|
||||
```
|
||||
|
||||
If you wish to use a development version of `hxgenjs` and/or `lime`, link them:
|
||||
|
||||
```bash
|
||||
cd path/to/lime
|
||||
npm link
|
||||
cd path/to/hxgenjs
|
||||
npm link
|
||||
|
||||
cd path/to/openfl
|
||||
npm link lime
|
||||
npm link hxgenjs
|
||||
```
|
||||
|
||||
Then install necessary development dependencies:
|
||||
|
||||
```bash
|
||||
cd openfl
|
||||
npm install
|
||||
```
|
||||
|
||||
Generate ES6 modules for OpenFL:
|
||||
|
||||
```bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
You may want to `npm link` OpenFL for use with other projects:
|
||||
|
||||
```bash
|
||||
npm link
|
||||
|
||||
cd path/to/your-project
|
||||
npm link openfl
|
||||
```
|
||||
4
hGameTest/node_modules/openfl/bin/openfl.js
generated
vendored
Executable file
4
hGameTest/node_modules/openfl/bin/openfl.js
generated
vendored
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
var child_process = require ("child_process");
|
||||
child_process.fork (__dirname + "/tools.js", process.argv);
|
||||
92254
hGameTest/node_modules/openfl/bin/tools.js
generated
vendored
Normal file
92254
hGameTest/node_modules/openfl/bin/tools.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
67825
hGameTest/node_modules/openfl/dist/openfl.js
generated
vendored
Normal file
67825
hGameTest/node_modules/openfl/dist/openfl.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
hGameTest/node_modules/openfl/dist/openfl.js.map
generated
vendored
Normal file
1
hGameTest/node_modules/openfl/dist/openfl.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
hGameTest/node_modules/openfl/dist/openfl.min.js
generated
vendored
Normal file
3
hGameTest/node_modules/openfl/dist/openfl.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
hGameTest/node_modules/openfl/dist/openfl.min.js.map
generated
vendored
Normal file
1
hGameTest/node_modules/openfl/dist/openfl.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
865
hGameTest/node_modules/openfl/docs/assets/css/main.css
generated
vendored
Normal file
865
hGameTest/node_modules/openfl/docs/assets/css/main.css
generated
vendored
Normal file
@@ -0,0 +1,865 @@
|
||||
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
|
||||
/* ========================================================================== HTML5 display definitions ========================================================================== */
|
||||
/** Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */
|
||||
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
|
||||
|
||||
/** Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */
|
||||
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
|
||||
|
||||
/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
|
||||
audio:not([controls]) { display: none; height: 0; }
|
||||
|
||||
/** Address styling not present in IE 7/8/9, Firefox 3, and Safari 4. Known issue: no IE 6 support. */
|
||||
[hidden] { display: none; }
|
||||
|
||||
/* ========================================================================== Base ========================================================================== */
|
||||
/** 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using `em` units. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
|
||||
html { font-size: 100%; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ font-family: sans-serif; }
|
||||
|
||||
/** Address `font-family` inconsistency between `textarea` and other form elements. */
|
||||
button, input, select, textarea { font-family: sans-serif; }
|
||||
|
||||
/** Address margins handled incorrectly in IE 6/7. */
|
||||
body { margin: 0; }
|
||||
|
||||
/* ========================================================================== Links ========================================================================== */
|
||||
/** Address `outline` inconsistency between Chrome and other browsers. */
|
||||
a:focus { outline: thin dotted; }
|
||||
a:active, a:hover { outline: 0; }
|
||||
|
||||
/** Improve readability when focused and also mouse hovered in all browsers. */
|
||||
/* ========================================================================== Typography ========================================================================== */
|
||||
/** Address font sizes and margins set differently in IE 6/7. Address font sizes within `section` and `article` in Firefox 4+, Safari 5, and Chrome. */
|
||||
h1 { font-size: 2em; margin: 0.67em 0; }
|
||||
|
||||
h2 { font-size: 1.5em; margin: 0.83em 0; }
|
||||
|
||||
h3 { font-size: 1.17em; margin: 1em 0; }
|
||||
|
||||
h4, .tsd-index-panel h3 { font-size: 1em; margin: 1.33em 0; }
|
||||
|
||||
h5 { font-size: 0.83em; margin: 1.67em 0; }
|
||||
|
||||
h6 { font-size: 0.67em; margin: 2.33em 0; }
|
||||
|
||||
/** Address styling not present in IE 7/8/9, Safari 5, and Chrome. */
|
||||
abbr[title] { border-bottom: 1px dotted; }
|
||||
|
||||
/** Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */
|
||||
b, strong { font-weight: bold; }
|
||||
|
||||
blockquote { margin: 1em 40px; }
|
||||
|
||||
/** Address styling not present in Safari 5 and Chrome. */
|
||||
dfn { font-style: italic; }
|
||||
|
||||
/** Address differences between Firefox and other browsers. Known issue: no IE 6/7 normalization. */
|
||||
hr { box-sizing: content-box; height: 0; }
|
||||
|
||||
/** Address styling not present in IE 6/7/8/9. */
|
||||
mark { background: #ff0; color: #000; }
|
||||
|
||||
/** Address margins set differently in IE 6/7. */
|
||||
p, pre { margin: 1em 0; }
|
||||
|
||||
/** Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */
|
||||
code, kbd, pre, samp { font-family: monospace, serif; _font-family: "courier new", monospace; font-size: 1em; }
|
||||
|
||||
/** Improve readability of pre-formatted text in all browsers. */
|
||||
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
|
||||
|
||||
/** Address CSS quotes not supported in IE 6/7. */
|
||||
q { quotes: none; }
|
||||
q:before, q:after { content: ""; content: none; }
|
||||
|
||||
/** Address `quotes` property not supported in Safari 4. */
|
||||
/** Address inconsistent and variable font size in all browsers. */
|
||||
small { font-size: 80%; }
|
||||
|
||||
/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
|
||||
sub { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
||||
|
||||
sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; top: -0.5em; }
|
||||
|
||||
sub { bottom: -0.25em; }
|
||||
|
||||
/* ========================================================================== Lists ========================================================================== */
|
||||
/** Address margins set differently in IE 6/7. */
|
||||
dl, menu, ol, ul { margin: 1em 0; }
|
||||
|
||||
dd { margin: 0 0 0 40px; }
|
||||
|
||||
/** Address paddings set differently in IE 6/7. */
|
||||
menu, ol, ul { padding: 0 0 0 40px; }
|
||||
|
||||
/** Correct list images handled incorrectly in IE 7. */
|
||||
nav ul, nav ol { list-style: none; list-style-image: none; }
|
||||
|
||||
/* ========================================================================== Embedded content ========================================================================== */
|
||||
/** 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3. 2. Improve image quality when scaled in IE 7. */
|
||||
img { border: 0; /* 1 */ -ms-interpolation-mode: bicubic; }
|
||||
|
||||
/* 2 */
|
||||
/** Correct overflow displayed oddly in IE 9. */
|
||||
svg:not(:root) { overflow: hidden; }
|
||||
|
||||
/* ========================================================================== Figures ========================================================================== */
|
||||
/** Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */
|
||||
figure, form { margin: 0; }
|
||||
|
||||
/* ========================================================================== Forms ========================================================================== */
|
||||
/** Correct margin displayed oddly in IE 6/7. */
|
||||
/** Define consistent border, margin, and padding. */
|
||||
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
|
||||
|
||||
/** 1. Correct color not being inherited in IE 6/7/8/9. 2. Correct text not wrapping in Firefox 3. 3. Correct alignment displayed oddly in IE 6/7. */
|
||||
legend { border: 0; /* 1 */ padding: 0; white-space: normal; /* 2 */ *margin-left: -7px; }
|
||||
|
||||
/* 3 */
|
||||
/** 1. Correct font size not being inherited in all browsers. 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5, and Chrome. 3. Improve appearance and consistency in all browsers. */
|
||||
button, input, select, textarea { font-size: 100%; /* 1 */ margin: 0; /* 2 */ vertical-align: baseline; /* 3 */ *vertical-align: middle; }
|
||||
|
||||
/* 3 */
|
||||
/** Address Firefox 3+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
|
||||
button, input { line-height: normal; }
|
||||
|
||||
/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+. Correct `select` style inheritance in Firefox 4+ and Opera. */
|
||||
button, select { text-transform: none; }
|
||||
|
||||
/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. 4. Remove inner spacing in IE 7 without affecting normal text inputs. Known issue: inner spacing remains in IE 6. */
|
||||
button, html input[type="button"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ *overflow: visible; }
|
||||
|
||||
/* 4 */
|
||||
input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ *overflow: visible; }
|
||||
|
||||
/* 4 */
|
||||
/** Re-set default cursor for disabled elements. */
|
||||
button[disabled], html input[disabled] { cursor: default; }
|
||||
|
||||
/** 1. Address box sizing set to content-box in IE 8/9. 2. Remove excess padding in IE 8/9. 3. Remove excess padding in IE 7. Known issue: excess padding remains in IE 6. */
|
||||
input { /* 3 */ }
|
||||
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ *height: 13px; /* 3 */ *width: 13px; }
|
||||
input[type="search"] { -webkit-appearance: textfield; /* 1 */ /* 2 */ box-sizing: content-box; }
|
||||
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
||||
|
||||
/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
|
||||
/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
|
||||
/** Remove inner padding and border in Firefox 3+. */
|
||||
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
||||
|
||||
/** 1. Remove default vertical scrollbar in IE 6/7/8/9. 2. Improve readability and alignment in all browsers. */
|
||||
textarea { overflow: auto; /* 1 */ vertical-align: top; }
|
||||
|
||||
/* 2 */
|
||||
/* ========================================================================== Tables ========================================================================== */
|
||||
/** Remove most spacing between table cells. */
|
||||
table { border-collapse: collapse; border-spacing: 0; }
|
||||
|
||||
/* Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name> */
|
||||
.hljs { display: inline-block; padding: 0.5em; background: white; color: black; }
|
||||
|
||||
.hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .apache .hljs-cbracket { color: #008000; }
|
||||
|
||||
.hljs-keyword, .hljs-id, .hljs-built_in, .css .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .tex .hljs-command, .hljs-request, .hljs-status, .nginx .hljs-title { color: #00f; }
|
||||
|
||||
.xml .hljs-tag { color: #00f; }
|
||||
.xml .hljs-tag .hljs-value { color: #00f; }
|
||||
|
||||
.hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value { color: #a31515; }
|
||||
|
||||
.ruby .hljs-symbol { color: #a31515; }
|
||||
.ruby .hljs-symbol .hljs-string { color: #a31515; }
|
||||
|
||||
.hljs-template_tag, .django .hljs-variable, .hljs-addition, .hljs-flow, .hljs-stream, .apache .hljs-tag, .hljs-date, .tex .hljs-formula, .coffeescript .hljs-attribute { color: #a31515; }
|
||||
|
||||
.ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .hljs-preprocessor, .hljs-pragma, .userType, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-special, .hljs-prompt { color: #2b91af; }
|
||||
|
||||
.hljs-phpdoc, .hljs-javadoc, .hljs-xmlDocTag { color: #808080; }
|
||||
|
||||
.vhdl .hljs-typename { font-weight: bold; }
|
||||
.vhdl .hljs-string { color: #666666; }
|
||||
.vhdl .hljs-literal { color: #a31515; }
|
||||
.vhdl .hljs-attribute { color: #00b0e8; }
|
||||
|
||||
.xml .hljs-attribute { color: #f00; }
|
||||
|
||||
.col > :first-child, .col-1 > :first-child, .col-2 > :first-child, .col-3 > :first-child, .col-4 > :first-child, .col-5 > :first-child, .col-6 > :first-child, .col-7 > :first-child, .col-8 > :first-child, .col-9 > :first-child, .col-10 > :first-child, .col-11 > :first-child, .tsd-panel > :first-child, ul.tsd-descriptions > li > :first-child, .col > :first-child > :first-child, .col-1 > :first-child > :first-child, .col-2 > :first-child > :first-child, .col-3 > :first-child > :first-child, .col-4 > :first-child > :first-child, .col-5 > :first-child > :first-child, .col-6 > :first-child > :first-child, .col-7 > :first-child > :first-child, .col-8 > :first-child > :first-child, .col-9 > :first-child > :first-child, .col-10 > :first-child > :first-child, .col-11 > :first-child > :first-child, .tsd-panel > :first-child > :first-child, ul.tsd-descriptions > li > :first-child > :first-child, .col > :first-child > :first-child > :first-child, .col-1 > :first-child > :first-child > :first-child, .col-2 > :first-child > :first-child > :first-child, .col-3 > :first-child > :first-child > :first-child, .col-4 > :first-child > :first-child > :first-child, .col-5 > :first-child > :first-child > :first-child, .col-6 > :first-child > :first-child > :first-child, .col-7 > :first-child > :first-child > :first-child, .col-8 > :first-child > :first-child > :first-child, .col-9 > :first-child > :first-child > :first-child, .col-10 > :first-child > :first-child > :first-child, .col-11 > :first-child > :first-child > :first-child, .tsd-panel > :first-child > :first-child > :first-child, ul.tsd-descriptions > li > :first-child > :first-child > :first-child { margin-top: 0; }
|
||||
.col > :last-child, .col-1 > :last-child, .col-2 > :last-child, .col-3 > :last-child, .col-4 > :last-child, .col-5 > :last-child, .col-6 > :last-child, .col-7 > :last-child, .col-8 > :last-child, .col-9 > :last-child, .col-10 > :last-child, .col-11 > :last-child, .tsd-panel > :last-child, ul.tsd-descriptions > li > :last-child, .col > :last-child > :last-child, .col-1 > :last-child > :last-child, .col-2 > :last-child > :last-child, .col-3 > :last-child > :last-child, .col-4 > :last-child > :last-child, .col-5 > :last-child > :last-child, .col-6 > :last-child > :last-child, .col-7 > :last-child > :last-child, .col-8 > :last-child > :last-child, .col-9 > :last-child > :last-child, .col-10 > :last-child > :last-child, .col-11 > :last-child > :last-child, .tsd-panel > :last-child > :last-child, ul.tsd-descriptions > li > :last-child > :last-child, .col > :last-child > :last-child > :last-child, .col-1 > :last-child > :last-child > :last-child, .col-2 > :last-child > :last-child > :last-child, .col-3 > :last-child > :last-child > :last-child, .col-4 > :last-child > :last-child > :last-child, .col-5 > :last-child > :last-child > :last-child, .col-6 > :last-child > :last-child > :last-child, .col-7 > :last-child > :last-child > :last-child, .col-8 > :last-child > :last-child > :last-child, .col-9 > :last-child > :last-child > :last-child, .col-10 > :last-child > :last-child > :last-child, .col-11 > :last-child > :last-child > :last-child, .tsd-panel > :last-child > :last-child > :last-child, ul.tsd-descriptions > li > :last-child > :last-child > :last-child { margin-bottom: 0; }
|
||||
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
|
||||
@media (max-width: 640px) { .container { padding: 0 20px; } }
|
||||
|
||||
.container-main { padding-bottom: 200px; }
|
||||
|
||||
.row { position: relative; margin: 0 -10px; }
|
||||
.row:after { visibility: hidden; display: block; content: ""; clear: both; height: 0; }
|
||||
|
||||
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 { box-sizing: border-box; float: left; padding: 0 10px; }
|
||||
|
||||
.col-1 { width: 8.33333%; }
|
||||
|
||||
.offset-1 { margin-left: 8.33333%; }
|
||||
|
||||
.col-2 { width: 16.66667%; }
|
||||
|
||||
.offset-2 { margin-left: 16.66667%; }
|
||||
|
||||
.col-3 { width: 25%; }
|
||||
|
||||
.offset-3 { margin-left: 25%; }
|
||||
|
||||
.col-4 { width: 33.33333%; }
|
||||
|
||||
.offset-4 { margin-left: 33.33333%; }
|
||||
|
||||
.col-5 { width: 41.66667%; }
|
||||
|
||||
.offset-5 { margin-left: 41.66667%; }
|
||||
|
||||
.col-6 { width: 50%; }
|
||||
|
||||
.offset-6 { margin-left: 50%; }
|
||||
|
||||
.col-7 { width: 58.33333%; }
|
||||
|
||||
.offset-7 { margin-left: 58.33333%; }
|
||||
|
||||
.col-8 { width: 66.66667%; }
|
||||
|
||||
.offset-8 { margin-left: 66.66667%; }
|
||||
|
||||
.col-9 { width: 75%; }
|
||||
|
||||
.offset-9 { margin-left: 75%; }
|
||||
|
||||
.col-10 { width: 83.33333%; }
|
||||
|
||||
.offset-10 { margin-left: 83.33333%; }
|
||||
|
||||
.col-11 { width: 91.66667%; }
|
||||
|
||||
.offset-11 { margin-left: 91.66667%; }
|
||||
|
||||
.tsd-kind-icon { display: block; position: relative; padding-left: 20px; text-indent: -20px; }
|
||||
.tsd-kind-icon:before { content: ''; display: inline-block; vertical-align: middle; width: 17px; height: 17px; margin: 0 3px 2px 0; background-image: url(../images/icons.png); }
|
||||
@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { .tsd-kind-icon:before { background-image: url(../images/icons@2x.png); background-size: 238px 204px; } }
|
||||
|
||||
.tsd-signature.tsd-kind-icon:before { background-position: 0 -153px; }
|
||||
|
||||
.tsd-kind-object-literal > .tsd-kind-icon:before { background-position: 0px -17px; }
|
||||
.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -17px; }
|
||||
.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -17px; }
|
||||
|
||||
.tsd-kind-class > .tsd-kind-icon:before { background-position: 0px -34px; }
|
||||
.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -34px; }
|
||||
.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -34px; }
|
||||
|
||||
.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: 0px -51px; }
|
||||
.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -51px; }
|
||||
.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -51px; }
|
||||
|
||||
.tsd-kind-interface > .tsd-kind-icon:before { background-position: 0px -68px; }
|
||||
.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -68px; }
|
||||
.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -68px; }
|
||||
|
||||
.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: 0px -85px; }
|
||||
.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -85px; }
|
||||
.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -85px; }
|
||||
|
||||
.tsd-kind-module > .tsd-kind-icon:before { background-position: 0px -102px; }
|
||||
.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -102px; }
|
||||
.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -102px; }
|
||||
|
||||
.tsd-kind-external-module > .tsd-kind-icon:before { background-position: 0px -102px; }
|
||||
.tsd-kind-external-module.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -102px; }
|
||||
.tsd-kind-external-module.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -102px; }
|
||||
|
||||
.tsd-kind-enum > .tsd-kind-icon:before { background-position: 0px -119px; }
|
||||
.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -119px; }
|
||||
.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -119px; }
|
||||
|
||||
.tsd-kind-enum-member > .tsd-kind-icon:before { background-position: 0px -136px; }
|
||||
.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -136px; }
|
||||
.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -136px; }
|
||||
|
||||
.tsd-kind-signature > .tsd-kind-icon:before { background-position: 0px -153px; }
|
||||
.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -153px; }
|
||||
.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -153px; }
|
||||
|
||||
.tsd-kind-type-alias > .tsd-kind-icon:before { background-position: 0px -170px; }
|
||||
.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -170px; }
|
||||
.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -170px; }
|
||||
|
||||
.tsd-kind-variable > .tsd-kind-icon:before { background-position: -136px -0px; }
|
||||
.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -0px; }
|
||||
.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -0px; }
|
||||
.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -0px; }
|
||||
|
||||
.tsd-kind-property > .tsd-kind-icon:before { background-position: -136px -0px; }
|
||||
.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -0px; }
|
||||
.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -0px; }
|
||||
.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -0px; }
|
||||
|
||||
.tsd-kind-get-signature > .tsd-kind-icon:before { background-position: -136px -17px; }
|
||||
.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -17px; }
|
||||
.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -17px; }
|
||||
.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -17px; }
|
||||
|
||||
.tsd-kind-set-signature > .tsd-kind-icon:before { background-position: -136px -34px; }
|
||||
.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -34px; }
|
||||
.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -34px; }
|
||||
.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -34px; }
|
||||
|
||||
.tsd-kind-accessor > .tsd-kind-icon:before { background-position: -136px -51px; }
|
||||
.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -51px; }
|
||||
.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -51px; }
|
||||
.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -51px; }
|
||||
|
||||
.tsd-kind-function > .tsd-kind-icon:before { background-position: -136px -68px; }
|
||||
.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; }
|
||||
.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; }
|
||||
.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; }
|
||||
|
||||
.tsd-kind-method > .tsd-kind-icon:before { background-position: -136px -68px; }
|
||||
.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; }
|
||||
.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; }
|
||||
.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; }
|
||||
|
||||
.tsd-kind-call-signature > .tsd-kind-icon:before { background-position: -136px -68px; }
|
||||
.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; }
|
||||
.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; }
|
||||
.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; }
|
||||
|
||||
.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: -136px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -85px; }
|
||||
.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -85px; }
|
||||
|
||||
.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: -136px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -85px; }
|
||||
.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -85px; }
|
||||
|
||||
.tsd-kind-constructor > .tsd-kind-icon:before { background-position: -136px -102px; }
|
||||
.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -102px; }
|
||||
.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -102px; }
|
||||
.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -102px; }
|
||||
|
||||
.tsd-kind-constructor-signature > .tsd-kind-icon:before { background-position: -136px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -102px; }
|
||||
.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -102px; }
|
||||
|
||||
.tsd-kind-index-signature > .tsd-kind-icon:before { background-position: -136px -119px; }
|
||||
.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -119px; }
|
||||
.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -119px; }
|
||||
.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -119px; }
|
||||
|
||||
.tsd-kind-event > .tsd-kind-icon:before { background-position: -136px -136px; }
|
||||
.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -136px; }
|
||||
.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -136px; }
|
||||
.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -136px; }
|
||||
|
||||
.tsd-is-static > .tsd-kind-icon:before { background-position: -136px -153px; }
|
||||
.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -153px; }
|
||||
.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -153px; }
|
||||
.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -153px; }
|
||||
|
||||
.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { background-position: -136px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; }
|
||||
.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; }
|
||||
|
||||
.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { background-position: -136px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; }
|
||||
.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; }
|
||||
|
||||
.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { background-position: -136px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; }
|
||||
.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; }
|
||||
|
||||
.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { background-position: -136px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -187px; }
|
||||
.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -187px; }
|
||||
|
||||
.no-transition { transition: none !important; }
|
||||
|
||||
@-webkit-keyframes fade-in { from { opacity: 0; }
|
||||
to { opacity: 1; } }
|
||||
|
||||
@keyframes fade-in { from { opacity: 0; }
|
||||
to { opacity: 1; } }
|
||||
@-webkit-keyframes fade-out { from { opacity: 1; visibility: visible; }
|
||||
to { opacity: 0; } }
|
||||
@keyframes fade-out { from { opacity: 1; visibility: visible; }
|
||||
to { opacity: 0; } }
|
||||
@-webkit-keyframes fade-in-delayed { 0% { opacity: 0; }
|
||||
33% { opacity: 0; }
|
||||
100% { opacity: 1; } }
|
||||
@keyframes fade-in-delayed { 0% { opacity: 0; }
|
||||
33% { opacity: 0; }
|
||||
100% { opacity: 1; } }
|
||||
@-webkit-keyframes fade-out-delayed { 0% { opacity: 1; visibility: visible; }
|
||||
66% { opacity: 0; }
|
||||
100% { opacity: 0; } }
|
||||
@keyframes fade-out-delayed { 0% { opacity: 1; visibility: visible; }
|
||||
66% { opacity: 0; }
|
||||
100% { opacity: 0; } }
|
||||
@-webkit-keyframes shift-to-left { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); }
|
||||
to { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } }
|
||||
@keyframes shift-to-left { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); }
|
||||
to { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } }
|
||||
@-webkit-keyframes unshift-to-left { from { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); }
|
||||
to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
|
||||
@keyframes unshift-to-left { from { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); }
|
||||
to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
|
||||
@-webkit-keyframes pop-in-from-right { from { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); }
|
||||
to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
|
||||
@keyframes pop-in-from-right { from { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); }
|
||||
to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
|
||||
@-webkit-keyframes pop-out-to-right { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); visibility: visible; }
|
||||
to { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } }
|
||||
@keyframes pop-out-to-right { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); visibility: visible; }
|
||||
to { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } }
|
||||
body { background: #fdfdfd; font-family: "Segoe UI", sans-serif; font-size: 16px; color: #222; }
|
||||
|
||||
a { color: #4da6ff; text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
|
||||
code, pre { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; padding: 0.2em; margin: 0; font-size: 14px; background-color: rgba(0, 0, 0, 0.04); }
|
||||
|
||||
pre { padding: 10px; }
|
||||
pre code { padding: 0; font-size: 100%; background-color: transparent; }
|
||||
|
||||
.tsd-typography { line-height: 1.333em; }
|
||||
.tsd-typography ul { list-style: square; padding: 0 0 0 20px; margin: 0; }
|
||||
.tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h5, .tsd-typography h6 { font-size: 1em; margin: 0; }
|
||||
.tsd-typography h5, .tsd-typography h6 { font-weight: normal; }
|
||||
.tsd-typography p, .tsd-typography ul, .tsd-typography ol { margin: 1em 0; }
|
||||
|
||||
@media (min-width: 901px) and (max-width: 1024px) { html.default .col-content { width: 72%; }
|
||||
html.default .col-menu { width: 28%; }
|
||||
html.default .tsd-navigation { padding-left: 10px; } }
|
||||
@media (max-width: 900px) { html.default .col-content { float: none; width: 100%; }
|
||||
html.default .col-menu { position: fixed !important; overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; z-index: 1024; top: 0 !important; bottom: 0 !important; left: auto !important; right: 0 !important; width: 100%; padding: 20px 20px 0 0; max-width: 450px; visibility: hidden; background-color: #fff; -webkit-transform: translate(100%, 0); transform: translate(100%, 0); }
|
||||
html.default .col-menu > *:last-child { padding-bottom: 20px; }
|
||||
html.default .overlay { content: ""; display: block; position: fixed; z-index: 1023; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.75); visibility: hidden; }
|
||||
html.default.to-has-menu .overlay { -webkit-animation: fade-in 0.4s; animation: fade-in 0.4s; }
|
||||
html.default.to-has-menu header, html.default.to-has-menu footer, html.default.to-has-menu .col-content { -webkit-animation: shift-to-left 0.4s; animation: shift-to-left 0.4s; }
|
||||
html.default.to-has-menu .col-menu { -webkit-animation: pop-in-from-right 0.4s; animation: pop-in-from-right 0.4s; }
|
||||
html.default.from-has-menu .overlay { -webkit-animation: fade-out 0.4s; animation: fade-out 0.4s; }
|
||||
html.default.from-has-menu header, html.default.from-has-menu footer, html.default.from-has-menu .col-content { -webkit-animation: unshift-to-left 0.4s; animation: unshift-to-left 0.4s; }
|
||||
html.default.from-has-menu .col-menu { -webkit-animation: pop-out-to-right 0.4s; animation: pop-out-to-right 0.4s; }
|
||||
html.default.has-menu body { overflow: hidden; }
|
||||
html.default.has-menu .overlay { visibility: visible; }
|
||||
html.default.has-menu header, html.default.has-menu footer, html.default.has-menu .col-content { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); }
|
||||
html.default.has-menu .col-menu { visibility: visible; -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
|
||||
|
||||
.tsd-page-title { padding: 70px 0 20px 0; margin: 0 0 40px 0; background: #fff; box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); }
|
||||
.tsd-page-title h1 { margin: 0; }
|
||||
|
||||
.tsd-breadcrumb { margin: 0; padding: 0; color: #808080; }
|
||||
.tsd-breadcrumb a { color: #808080; text-decoration: none; }
|
||||
.tsd-breadcrumb a:hover { text-decoration: underline; }
|
||||
.tsd-breadcrumb li { display: inline; }
|
||||
.tsd-breadcrumb li:after { content: " / "; }
|
||||
|
||||
html.minimal .container { margin: 0; }
|
||||
html.minimal .container-main { padding-top: 50px; padding-bottom: 0; }
|
||||
html.minimal .content-wrap { padding-left: 300px; }
|
||||
html.minimal .tsd-navigation { position: fixed !important; overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; box-sizing: border-box; z-index: 1; left: 0; top: 40px; bottom: 0; width: 300px; padding: 20px; margin: 0; }
|
||||
html.minimal .tsd-member .tsd-member { margin-left: 0; }
|
||||
html.minimal .tsd-page-toolbar { position: fixed; z-index: 2; }
|
||||
html.minimal #tsd-filter .tsd-filter-group { right: 0; -webkit-transform: none; transform: none; }
|
||||
html.minimal footer { background-color: transparent; }
|
||||
html.minimal footer .container { padding: 0; }
|
||||
html.minimal .tsd-generator { padding: 0; }
|
||||
@media (max-width: 900px) { html.minimal .tsd-navigation { display: none; }
|
||||
html.minimal .content-wrap { padding-left: 0; } }
|
||||
|
||||
dl.tsd-comment-tags { overflow: hidden; }
|
||||
dl.tsd-comment-tags dt { clear: both; float: left; padding: 1px 5px; margin: 0 10px 0 0; border-radius: 4px; border: 1px solid #808080; color: #808080; font-size: 0.8em; font-weight: normal; }
|
||||
dl.tsd-comment-tags dd { margin: 0 0 10px 0; }
|
||||
dl.tsd-comment-tags p { margin: 0; }
|
||||
|
||||
.tsd-panel.tsd-comment .lead { font-size: 1.1em; line-height: 1.333em; margin-bottom: 2em; }
|
||||
.tsd-panel.tsd-comment .lead:last-child { margin-bottom: 0; }
|
||||
|
||||
.toggle-protected .tsd-is-private { display: none; }
|
||||
|
||||
.toggle-public .tsd-is-private, .toggle-public .tsd-is-protected, .toggle-public .tsd-is-private-protected { display: none; }
|
||||
|
||||
.toggle-inherited .tsd-is-inherited { display: none; }
|
||||
|
||||
.toggle-only-exported .tsd-is-not-exported { display: none; }
|
||||
|
||||
.toggle-externals .tsd-is-external { display: none; }
|
||||
|
||||
#tsd-filter { position: relative; display: inline-block; height: 40px; vertical-align: bottom; }
|
||||
.no-filter #tsd-filter { display: none; }
|
||||
#tsd-filter .tsd-filter-group { display: inline-block; height: 40px; vertical-align: bottom; white-space: nowrap; }
|
||||
#tsd-filter input { display: none; }
|
||||
@media (max-width: 900px) { #tsd-filter .tsd-filter-group { display: block; position: absolute; top: 40px; right: 20px; height: auto; background-color: #fff; visibility: hidden; -webkit-transform: translate(50%, 0); transform: translate(50%, 0); box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
|
||||
.has-options #tsd-filter .tsd-filter-group { visibility: visible; }
|
||||
.to-has-options #tsd-filter .tsd-filter-group { -webkit-animation: fade-in 0.2s; animation: fade-in 0.2s; }
|
||||
.from-has-options #tsd-filter .tsd-filter-group { -webkit-animation: fade-out 0.2s; animation: fade-out 0.2s; }
|
||||
#tsd-filter label, #tsd-filter .tsd-select { display: block; padding-right: 20px; } }
|
||||
|
||||
footer { border-top: 1px solid #eee; background-color: #fff; }
|
||||
footer.with-border-bottom { border-bottom: 1px solid #eee; }
|
||||
footer .tsd-legend-group { font-size: 0; }
|
||||
footer .tsd-legend { display: inline-block; width: 25%; padding: 0; font-size: 16px; list-style: none; line-height: 1.333em; vertical-align: top; }
|
||||
@media (max-width: 900px) { footer .tsd-legend { width: 50%; } }
|
||||
|
||||
.tsd-hierarchy { list-style: square; padding: 0 0 0 20px; margin: 0; }
|
||||
.tsd-hierarchy .target { font-weight: bold; }
|
||||
|
||||
.tsd-index-panel .tsd-index-content { margin-bottom: -30px !important; }
|
||||
.tsd-index-panel .tsd-index-section { margin-bottom: 30px !important; }
|
||||
.tsd-index-panel h3 { margin: 0 -20px 10px -20px; padding: 0 20px 10px 20px; border-bottom: 1px solid #eee; }
|
||||
.tsd-index-panel ul.tsd-index-list { -webkit-column-count: 3; -moz-column-count: 3; -ms-column-count: 3; -o-column-count: 3; column-count: 3; -webkit-column-gap: 20px; -moz-column-gap: 20px; -ms-column-gap: 20px; -o-column-gap: 20px; column-gap: 20px; padding: 0; list-style: none; line-height: 1.333em; }
|
||||
@media (max-width: 900px) { .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 1; -moz-column-count: 1; -ms-column-count: 1; -o-column-count: 1; column-count: 1; } }
|
||||
@media (min-width: 901px) and (max-width: 1024px) { .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 2; -moz-column-count: 2; -ms-column-count: 2; -o-column-count: 2; column-count: 2; } }
|
||||
.tsd-index-panel ul.tsd-index-list li { -webkit-column-break-inside: avoid; -moz-column-break-inside: avoid; -ms-column-break-inside: avoid; -o-column-break-inside: avoid; column-break-inside: avoid; -webkit-page-break-inside: avoid; -moz-page-break-inside: avoid; -ms-page-break-inside: avoid; -o-page-break-inside: avoid; page-break-inside: avoid; }
|
||||
.tsd-index-panel a, .tsd-index-panel .tsd-parent-kind-module a { color: #9600ff; }
|
||||
.tsd-index-panel .tsd-parent-kind-interface a { color: #7da01f; }
|
||||
.tsd-index-panel .tsd-parent-kind-enum a { color: #cc9900; }
|
||||
.tsd-index-panel .tsd-parent-kind-class a { color: #4da6ff; }
|
||||
.tsd-index-panel .tsd-kind-module a { color: #9600ff; }
|
||||
.tsd-index-panel .tsd-kind-interface a { color: #7da01f; }
|
||||
.tsd-index-panel .tsd-kind-enum a { color: #cc9900; }
|
||||
.tsd-index-panel .tsd-kind-class a { color: #4da6ff; }
|
||||
.tsd-index-panel .tsd-is-private a { color: #808080; }
|
||||
|
||||
.tsd-flag { display: inline-block; padding: 1px 5px; border-radius: 4px; color: #fff; background-color: #808080; text-indent: 0; font-size: 14px; font-weight: normal; }
|
||||
|
||||
.tsd-anchor { position: absolute; top: -100px; }
|
||||
|
||||
.tsd-member { position: relative; }
|
||||
.tsd-member .tsd-anchor + h3 { margin-top: 0; margin-bottom: 0; border-bottom: none; }
|
||||
|
||||
.tsd-navigation { padding: 0 0 0 40px; }
|
||||
.tsd-navigation a { display: block; padding-top: 2px; padding-bottom: 2px; border-left: 2px solid transparent; color: #222; text-decoration: none; transition: border-left-color 0.1s; }
|
||||
.tsd-navigation a:hover { text-decoration: underline; }
|
||||
.tsd-navigation ul { margin: 0; padding: 0; list-style: none; }
|
||||
.tsd-navigation li { padding: 0; }
|
||||
|
||||
.tsd-navigation.primary { padding-bottom: 40px; }
|
||||
.tsd-navigation.primary a { display: block; padding-top: 6px; padding-bottom: 6px; }
|
||||
.tsd-navigation.primary ul li a { padding-left: 5px; }
|
||||
.tsd-navigation.primary ul li li a { padding-left: 25px; }
|
||||
.tsd-navigation.primary ul li li li a { padding-left: 45px; }
|
||||
.tsd-navigation.primary ul li li li li a { padding-left: 65px; }
|
||||
.tsd-navigation.primary ul li li li li li a { padding-left: 85px; }
|
||||
.tsd-navigation.primary ul li li li li li li a { padding-left: 105px; }
|
||||
.tsd-navigation.primary > ul { border-bottom: 1px solid #eee; }
|
||||
.tsd-navigation.primary li { border-top: 1px solid #eee; }
|
||||
.tsd-navigation.primary li.current > a { font-weight: bold; }
|
||||
.tsd-navigation.primary li.label span { display: block; padding: 20px 0 6px 5px; color: #808080; }
|
||||
.tsd-navigation.primary li.globals + li > span, .tsd-navigation.primary li.globals + li > a { padding-top: 20px; }
|
||||
|
||||
.tsd-navigation.secondary ul { transition: opacity 0.2s; }
|
||||
.tsd-navigation.secondary ul li a { padding-left: 25px; }
|
||||
.tsd-navigation.secondary ul li li a { padding-left: 45px; }
|
||||
.tsd-navigation.secondary ul li li li a { padding-left: 65px; }
|
||||
.tsd-navigation.secondary ul li li li li a { padding-left: 85px; }
|
||||
.tsd-navigation.secondary ul li li li li li a { padding-left: 105px; }
|
||||
.tsd-navigation.secondary ul li li li li li li a { padding-left: 125px; }
|
||||
.tsd-navigation.secondary ul.current a { border-left-color: #eee; }
|
||||
.tsd-navigation.secondary li.focus > a, .tsd-navigation.secondary ul.current li.focus > a { border-left-color: #000; }
|
||||
.tsd-navigation.secondary li.current { margin-top: 20px; margin-bottom: 20px; border-left-color: #eee; }
|
||||
.tsd-navigation.secondary li.current > a { font-weight: bold; }
|
||||
|
||||
@media (min-width: 901px) { .menu-sticky-wrap { position: static; }
|
||||
.no-csspositionsticky .menu-sticky-wrap.sticky { position: fixed; }
|
||||
.no-csspositionsticky .menu-sticky-wrap.sticky-current { position: fixed; }
|
||||
.no-csspositionsticky .menu-sticky-wrap.sticky-current ul.before-current, .no-csspositionsticky .menu-sticky-wrap.sticky-current ul.after-current { opacity: 0; }
|
||||
.no-csspositionsticky .menu-sticky-wrap.sticky-bottom { position: absolute; top: auto !important; left: auto !important; bottom: 0; right: 0; }
|
||||
.csspositionsticky .menu-sticky-wrap.sticky { position: -webkit-sticky; position: sticky; }
|
||||
.csspositionsticky .menu-sticky-wrap.sticky-current { position: -webkit-sticky; position: sticky; } }
|
||||
|
||||
.tsd-panel { margin: 20px 0; padding: 20px; background-color: #fff; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
|
||||
.tsd-panel:empty { display: none; }
|
||||
.tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 { margin: 1.5em -20px 10px -20px; padding: 0 20px 10px 20px; border-bottom: 1px solid #eee; }
|
||||
.tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature { margin-bottom: 0; border-bottom: 0; }
|
||||
.tsd-panel table { display: block; width: 100%; overflow: auto; margin-top: 10px; word-break: normal; word-break: keep-all; }
|
||||
.tsd-panel table th { font-weight: bold; }
|
||||
.tsd-panel table th, .tsd-panel table td { padding: 6px 13px; border: 1px solid #ddd; }
|
||||
.tsd-panel table tr { background-color: #fff; border-top: 1px solid #ccc; }
|
||||
.tsd-panel table tr:nth-child(2n) { background-color: #f8f8f8; }
|
||||
|
||||
.tsd-panel-group { margin: 60px 0; }
|
||||
.tsd-panel-group > h1, .tsd-panel-group > h2, .tsd-panel-group > h3 { padding-left: 20px; padding-right: 20px; }
|
||||
|
||||
#tsd-search { transition: background-color 0.2s; }
|
||||
#tsd-search .title { position: relative; z-index: 2; }
|
||||
#tsd-search .field { position: absolute; left: 0; top: 0; right: 40px; height: 40px; }
|
||||
#tsd-search .field input { box-sizing: border-box; position: relative; top: -50px; z-index: 1; width: 100%; padding: 0 10px; opacity: 0; outline: 0; border: 0; background: transparent; color: #222; }
|
||||
#tsd-search .field label { position: absolute; overflow: hidden; right: -40px; }
|
||||
#tsd-search .field input, #tsd-search .title { transition: opacity 0.2s; }
|
||||
#tsd-search .results { position: absolute; visibility: hidden; top: 40px; width: 100%; margin: 0; padding: 0; list-style: none; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
|
||||
#tsd-search .results li { padding: 0 10px; background-color: #fdfdfd; }
|
||||
#tsd-search .results li:nth-child(even) { background-color: #fff; }
|
||||
#tsd-search .results li.state { display: none; }
|
||||
#tsd-search .results li.current, #tsd-search .results li:hover { background-color: #eee; }
|
||||
#tsd-search .results a { display: block; }
|
||||
#tsd-search .results a:before { top: 10px; }
|
||||
#tsd-search .results span.parent { color: #808080; font-weight: normal; }
|
||||
#tsd-search.has-focus { background-color: #eee; }
|
||||
#tsd-search.has-focus .field input { top: 0; opacity: 1; }
|
||||
#tsd-search.has-focus .title { z-index: 0; opacity: 0; }
|
||||
#tsd-search.has-focus .results { visibility: visible; }
|
||||
#tsd-search.loading .results li.state.loading { display: block; }
|
||||
#tsd-search.failure .results li.state.failure { display: block; }
|
||||
|
||||
.tsd-signature { margin: 0 0 1em 0; padding: 10px; border: 1px solid #eee; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 14px; }
|
||||
.tsd-signature.tsd-kind-icon { padding-left: 30px; }
|
||||
.tsd-signature.tsd-kind-icon:before { top: 10px; left: 10px; }
|
||||
.tsd-panel > .tsd-signature { margin-left: -20px; margin-right: -20px; border-width: 1px 0; }
|
||||
.tsd-panel > .tsd-signature.tsd-kind-icon { padding-left: 40px; }
|
||||
.tsd-panel > .tsd-signature.tsd-kind-icon:before { left: 20px; }
|
||||
|
||||
.tsd-signature-symbol { color: #808080; font-weight: normal; }
|
||||
|
||||
.tsd-signature-type { font-style: italic; font-weight: normal; }
|
||||
|
||||
.tsd-signatures { padding: 0; margin: 0 0 1em 0; border: 1px solid #eee; }
|
||||
.tsd-signatures .tsd-signature { margin: 0; border-width: 1px 0 0 0; transition: background-color 0.1s; }
|
||||
.tsd-signatures .tsd-signature:first-child { border-top-width: 0; }
|
||||
.tsd-signatures .tsd-signature.current { background-color: #eee; }
|
||||
.tsd-signatures.active > .tsd-signature { cursor: pointer; }
|
||||
.tsd-panel > .tsd-signatures { margin-left: -20px; margin-right: -20px; border-width: 1px 0; }
|
||||
.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { padding-left: 40px; }
|
||||
.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { left: 20px; }
|
||||
.tsd-panel > a.anchor + .tsd-signatures { border-top-width: 0; margin-top: -20px; }
|
||||
|
||||
ul.tsd-descriptions { position: relative; overflow: hidden; transition: height 0.3s; padding: 0; list-style: none; }
|
||||
ul.tsd-descriptions.active > .tsd-description { display: none; }
|
||||
ul.tsd-descriptions.active > .tsd-description.current { display: block; }
|
||||
ul.tsd-descriptions.active > .tsd-description.fade-in { -webkit-animation: fade-in-delayed 0.3s; animation: fade-in-delayed 0.3s; }
|
||||
ul.tsd-descriptions.active > .tsd-description.fade-out { -webkit-animation: fade-out-delayed 0.3s; animation: fade-out-delayed 0.3s; position: absolute; display: block; top: 0; left: 0; right: 0; opacity: 0; visibility: hidden; }
|
||||
ul.tsd-descriptions h4, ul.tsd-descriptions .tsd-index-panel h3, .tsd-index-panel ul.tsd-descriptions h3 { font-size: 16px; margin: 1em 0 0.5em 0; }
|
||||
|
||||
ul.tsd-parameters, ul.tsd-type-parameters { list-style: square; margin: 0; padding-left: 20px; }
|
||||
ul.tsd-parameters > li.tsd-parameter-siganture, ul.tsd-type-parameters > li.tsd-parameter-siganture { list-style: none; margin-left: -20px; }
|
||||
ul.tsd-parameters h5, ul.tsd-type-parameters h5 { font-size: 16px; margin: 1em 0 0.5em 0; }
|
||||
ul.tsd-parameters .tsd-comment, ul.tsd-type-parameters .tsd-comment { margin-top: -0.5em; }
|
||||
|
||||
.tsd-sources { font-size: 14px; color: #808080; margin: 0 0 1em 0; }
|
||||
.tsd-sources a { color: #808080; text-decoration: underline; }
|
||||
.tsd-sources ul, .tsd-sources p { margin: 0 !important; }
|
||||
.tsd-sources ul { list-style: none; padding: 0; }
|
||||
|
||||
.tsd-page-toolbar { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 40px; color: #333; background: #fff; border-bottom: 1px solid #eee; }
|
||||
.tsd-page-toolbar a { color: #333; text-decoration: none; }
|
||||
.tsd-page-toolbar a.title { font-weight: bold; }
|
||||
.tsd-page-toolbar a.title:hover { text-decoration: underline; }
|
||||
.tsd-page-toolbar .table-wrap { display: table; width: 100%; height: 40px; }
|
||||
.tsd-page-toolbar .table-cell { display: table-cell; position: relative; white-space: nowrap; line-height: 40px; }
|
||||
.tsd-page-toolbar .table-cell:first-child { width: 100%; }
|
||||
|
||||
.tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { content: ""; display: inline-block; width: 40px; height: 40px; margin: 0 -8px 0 0; background-image: url(../images/widgets.png); background-repeat: no-repeat; text-indent: -1024px; vertical-align: bottom; }
|
||||
@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { .tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { background-image: url(../images/widgets@2x.png); background-size: 320px 40px; } }
|
||||
|
||||
.tsd-widget { display: inline-block; overflow: hidden; opacity: 0.6; height: 40px; transition: opacity 0.1s, background-color 0.2s; vertical-align: bottom; cursor: pointer; }
|
||||
.tsd-widget:hover { opacity: 0.8; }
|
||||
.tsd-widget.active { opacity: 1; background-color: #eee; }
|
||||
.tsd-widget.no-caption { width: 40px; }
|
||||
.tsd-widget.no-caption:before { margin: 0; }
|
||||
.tsd-widget.search:before { background-position: 0 0; }
|
||||
.tsd-widget.menu:before { background-position: -40px 0; }
|
||||
.tsd-widget.options:before { background-position: -80px 0; }
|
||||
.tsd-widget.options, .tsd-widget.menu { display: none; }
|
||||
@media (max-width: 900px) { .tsd-widget.options, .tsd-widget.menu { display: inline-block; } }
|
||||
input[type=checkbox] + .tsd-widget:before { background-position: -120px 0; }
|
||||
input[type=checkbox]:checked + .tsd-widget:before { background-position: -160px 0; }
|
||||
|
||||
.tsd-select { position: relative; display: inline-block; height: 40px; transition: opacity 0.1s, background-color 0.2s; vertical-align: bottom; cursor: pointer; }
|
||||
.tsd-select .tsd-select-label { opacity: 0.6; transition: opacity 0.2s; }
|
||||
.tsd-select .tsd-select-label:before { background-position: -240px 0; }
|
||||
.tsd-select.active .tsd-select-label { opacity: 0.8; }
|
||||
.tsd-select.active .tsd-select-list { visibility: visible; opacity: 1; transition-delay: 0s; }
|
||||
.tsd-select .tsd-select-list { position: absolute; visibility: hidden; top: 40px; left: 0; margin: 0; padding: 0; opacity: 0; list-style: none; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); transition: visibility 0s 0.2s, opacity 0.2s; }
|
||||
.tsd-select .tsd-select-list li { padding: 0 20px 0 0; background-color: #fdfdfd; }
|
||||
.tsd-select .tsd-select-list li:before { background-position: 40px 0; }
|
||||
.tsd-select .tsd-select-list li:nth-child(even) { background-color: #fff; }
|
||||
.tsd-select .tsd-select-list li:hover { background-color: #eee; }
|
||||
.tsd-select .tsd-select-list li.selected:before { background-position: -200px 0; }
|
||||
@media (max-width: 900px) { .tsd-select .tsd-select-list { top: 0; left: auto; right: 100%; margin-right: -5px; }
|
||||
.tsd-select .tsd-select-label:before { background-position: -280px 0; } }
|
||||
|
||||
img { max-width: 100%; }
|
||||
7
hGameTest/node_modules/openfl/docs/assets/css/main.css.map
generated
vendored
Normal file
7
hGameTest/node_modules/openfl/docs/assets/css/main.css.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
hGameTest/node_modules/openfl/docs/assets/images/icons.png
generated
vendored
Normal file
BIN
hGameTest/node_modules/openfl/docs/assets/images/icons.png
generated
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.3 KiB |
BIN
hGameTest/node_modules/openfl/docs/assets/images/icons@2x.png
generated
vendored
Normal file
BIN
hGameTest/node_modules/openfl/docs/assets/images/icons@2x.png
generated
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
BIN
hGameTest/node_modules/openfl/docs/assets/images/widgets.png
generated
vendored
Normal file
BIN
hGameTest/node_modules/openfl/docs/assets/images/widgets.png
generated
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 480 B |
BIN
hGameTest/node_modules/openfl/docs/assets/images/widgets@2x.png
generated
vendored
Normal file
BIN
hGameTest/node_modules/openfl/docs/assets/images/widgets@2x.png
generated
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 855 B |
5
hGameTest/node_modules/openfl/docs/assets/js/main.js
generated
vendored
Normal file
5
hGameTest/node_modules/openfl/docs/assets/js/main.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
hGameTest/node_modules/openfl/docs/assets/js/search.js
generated
vendored
Normal file
3
hGameTest/node_modules/openfl/docs/assets/js/search.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
var typedoc = typedoc || {};
|
||||
typedoc.search = typedoc.search || {};
|
||||
typedoc.search.data = {"kinds":{},"rows":[]};
|
||||
459
hGameTest/node_modules/openfl/docs/classes/openfl.desktop.clipboard.html
generated
vendored
Normal file
459
hGameTest/node_modules/openfl/docs/classes/openfl.desktop.clipboard.html
generated
vendored
Normal file
@@ -0,0 +1,459 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Clipboard | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.desktop.html">desktop</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.desktop.clipboard.html">Clipboard</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Clipboard</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Clipboard</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.desktop.clipboard.html#formats" class="tsd-kind-icon">formats</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static tsd-is-external"><a href="openfl.desktop.clipboard.html#generalclipboard" class="tsd-kind-icon">general<wbr>Clipboard</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.desktop.clipboard.html#clear" class="tsd-kind-icon">clear</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.desktop.clipboard.html#cleardata" class="tsd-kind-icon">clear<wbr>Data</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.desktop.clipboard.html#getdata" class="tsd-kind-icon">get<wbr>Data</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.desktop.clipboard.html#hasformat" class="tsd-kind-icon">has<wbr>Format</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.desktop.clipboard.html#setdata" class="tsd-kind-icon">set<wbr>Data</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.desktop.clipboard.html#setdatahandler" class="tsd-kind-icon">set<wbr>Data<wbr>Handler</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="formats" class="tsd-anchor"></a>
|
||||
<h3>formats</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">formats<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L14">lib/openfl/desktop/Clipboard.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-static tsd-is-external">
|
||||
<a name="generalclipboard" class="tsd-anchor"></a>
|
||||
<h3><span class="tsd-flag ts-flagStatic">Static</span> general<wbr>Clipboard</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">general<wbr>Clipboard<span class="tsd-signature-symbol">:</span> <a href="openfl.desktop.clipboard.html" class="tsd-signature-type">Clipboard</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L12">lib/openfl/desktop/Clipboard.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="clear" class="tsd-anchor"></a>
|
||||
<h3>clear</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">clear<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L16">lib/openfl/desktop/Clipboard.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="cleardata" class="tsd-anchor"></a>
|
||||
<h3>clear<wbr>Data</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">clear<wbr>Data<span class="tsd-signature-symbol">(</span>format<span class="tsd-signature-symbol">: </span><a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L17">lib/openfl/desktop/Clipboard.d.ts:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>format: <a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="getdata" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Data</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Data<span class="tsd-signature-symbol">(</span>format<span class="tsd-signature-symbol">: </span><a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a>, transferMode<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.desktop.clipboardtransfermode.html" class="tsd-signature-type">ClipboardTransferMode</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L18">lib/openfl/desktop/Clipboard.d.ts:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>format: <a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> transferMode: <a href="../enums/openfl.desktop.clipboardtransfermode.html" class="tsd-signature-type">ClipboardTransferMode</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="hasformat" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Format</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Format<span class="tsd-signature-symbol">(</span>format<span class="tsd-signature-symbol">: </span><a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L19">lib/openfl/desktop/Clipboard.d.ts:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>format: <a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="setdata" class="tsd-anchor"></a>
|
||||
<h3>set<wbr>Data</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">set<wbr>Data<span class="tsd-signature-symbol">(</span>format<span class="tsd-signature-symbol">: </span><a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a>, data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, serializable<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L20">lib/openfl/desktop/Clipboard.d.ts:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>format: <a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>data: <span class="tsd-signature-type">any</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> serializable: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="setdatahandler" class="tsd-anchor"></a>
|
||||
<h3>set<wbr>Data<wbr>Handler</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">set<wbr>Data<wbr>Handler<span class="tsd-signature-symbol">(</span>format<span class="tsd-signature-symbol">: </span><a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a>, handler<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, serializable<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/desktop/Clipboard.d.ts#L21">lib/openfl/desktop/Clipboard.d.ts:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>format: <a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-signature-type">ClipboardFormats</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>handler: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> serializable: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.desktop.clipboardformats.html" class="tsd-kind-icon">Clipboard<wbr>Formats</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.desktop.clipboardtransfermode.html" class="tsd-kind-icon">Clipboard<wbr>Transfer<wbr>Mode</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html" class="tsd-kind-icon">Clipboard</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#formats" class="tsd-kind-icon">formats</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-static tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#generalclipboard" class="tsd-kind-icon">general<wbr>Clipboard</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#clear" class="tsd-kind-icon">clear</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#cleardata" class="tsd-kind-icon">clear<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#getdata" class="tsd-kind-icon">get<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#hasformat" class="tsd-kind-icon">has<wbr>Format</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#setdata" class="tsd-kind-icon">set<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.desktop.clipboard.html#setdatahandler" class="tsd-kind-icon">set<wbr>Data<wbr>Handler</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
1945
hGameTest/node_modules/openfl/docs/classes/openfl.display.bitmap.html
generated
vendored
Normal file
1945
hGameTest/node_modules/openfl/docs/classes/openfl.display.bitmap.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2649
hGameTest/node_modules/openfl/docs/classes/openfl.display.bitmapdata.html
generated
vendored
Normal file
2649
hGameTest/node_modules/openfl/docs/classes/openfl.display.bitmapdata.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1986
hGameTest/node_modules/openfl/docs/classes/openfl.display.displayobject.html
generated
vendored
Normal file
1986
hGameTest/node_modules/openfl/docs/classes/openfl.display.displayobject.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2895
hGameTest/node_modules/openfl/docs/classes/openfl.display.displayobjectcontainer.html
generated
vendored
Normal file
2895
hGameTest/node_modules/openfl/docs/classes/openfl.display.displayobjectcontainer.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3088
hGameTest/node_modules/openfl/docs/classes/openfl.display.domsprite.html
generated
vendored
Normal file
3088
hGameTest/node_modules/openfl/docs/classes/openfl.display.domsprite.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3647
hGameTest/node_modules/openfl/docs/classes/openfl.display.fps.html
generated
vendored
Normal file
3647
hGameTest/node_modules/openfl/docs/classes/openfl.display.fps.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
719
hGameTest/node_modules/openfl/docs/classes/openfl.display.framelabel.html
generated
vendored
Normal file
719
hGameTest/node_modules/openfl/docs/classes/openfl.display.framelabel.html
generated
vendored
Normal file
@@ -0,0 +1,719 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>FrameLabel | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.framelabel.html">FrameLabel</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class FrameLabel</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">FrameLabel</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.display.framelabel.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.framelabel.html#frame" class="tsd-kind-icon">frame</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.framelabel.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.framelabel.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.framelabel.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.framelabel.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.framelabel.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.framelabel.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.framelabel.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Frame<wbr>Label<span class="tsd-signature-symbol">(</span>name<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, frame<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.framelabel.html" class="tsd-signature-type">FrameLabel</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/FrameLabel.d.ts#L11">lib/openfl/display/FrameLabel.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>name: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>frame: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.framelabel.html" class="tsd-signature-type">FrameLabel</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="frame" class="tsd-anchor"></a>
|
||||
<h3>frame</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">frame<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/FrameLabel.d.ts#L10">lib/openfl/display/FrameLabel.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/FrameLabel.d.ts#L11">lib/openfl/display/FrameLabel.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html" class="tsd-kind-icon">Frame<wbr>Label</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#frame" class="tsd-kind-icon">frame</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.framelabel.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
1674
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphics.html
generated
vendored
Normal file
1674
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphics.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
341
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsbitmapfill.html
generated
vendored
Normal file
341
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsbitmapfill.html
generated
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>GraphicsBitmapFill | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.graphicsbitmapfill.html">GraphicsBitmapFill</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class GraphicsBitmapFill</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">GraphicsBitmapFill</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.igraphicsdata.html" class="tsd-signature-type">IGraphicsData</a></li>
|
||||
<li><a href="openfl.display.igraphicsfill.html" class="tsd-signature-type">IGraphicsFill</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsbitmapfill.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsbitmapfill.html#bitmapdata" class="tsd-kind-icon">bitmap<wbr>Data</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsbitmapfill.html#matrix" class="tsd-kind-icon">matrix</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsbitmapfill.html#repeat" class="tsd-kind-icon">repeat</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsbitmapfill.html#smooth" class="tsd-kind-icon">smooth</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Graphics<wbr>Bitmap<wbr>Fill<span class="tsd-signature-symbol">(</span>bitmapData<span class="tsd-signature-symbol">?: </span><a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a>, matrix<span class="tsd-signature-symbol">?: </span><a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a>, repeat<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, smooth<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.graphicsbitmapfill.html" class="tsd-signature-type">GraphicsBitmapFill</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsBitmapFill.d.ts#L16">lib/openfl/display/GraphicsBitmapFill.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> bitmapData: <a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> matrix: <a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> repeat: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> smooth: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.graphicsbitmapfill.html" class="tsd-signature-type">GraphicsBitmapFill</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="bitmapdata" class="tsd-anchor"></a>
|
||||
<h3>bitmap<wbr>Data</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">bitmap<wbr>Data<span class="tsd-signature-symbol">:</span> <a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsBitmapFill.d.ts#L13">lib/openfl/display/GraphicsBitmapFill.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="matrix" class="tsd-anchor"></a>
|
||||
<h3>matrix</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">matrix<span class="tsd-signature-symbol">:</span> <a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsBitmapFill.d.ts#L14">lib/openfl/display/GraphicsBitmapFill.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="repeat" class="tsd-anchor"></a>
|
||||
<h3>repeat</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">repeat<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsBitmapFill.d.ts#L15">lib/openfl/display/GraphicsBitmapFill.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="smooth" class="tsd-anchor"></a>
|
||||
<h3>smooth</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">smooth<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsBitmapFill.d.ts#L16">lib/openfl/display/GraphicsBitmapFill.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.graphicsbitmapfill.html" class="tsd-kind-icon">Graphics<wbr>Bitmap<wbr>Fill</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsbitmapfill.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsbitmapfill.html#bitmapdata" class="tsd-kind-icon">bitmap<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsbitmapfill.html#matrix" class="tsd-kind-icon">matrix</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsbitmapfill.html#repeat" class="tsd-kind-icon">repeat</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsbitmapfill.html#smooth" class="tsd-kind-icon">smooth</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
278
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsendfill.html
generated
vendored
Normal file
278
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsendfill.html
generated
vendored
Normal file
@@ -0,0 +1,278 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>GraphicsEndFill | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.graphicsendfill.html">GraphicsEndFill</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class GraphicsEndFill</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Indicates the end of a graphics fill. Use a GraphicsEndFill object with the
|
||||
<code>Graphics.drawGraphicsData()</code> method.</p>
|
||||
</div>
|
||||
<p> Drawing a GraphicsEndFill object is the equivalent of calling the
|
||||
<code>Graphics.endFill()</code> method.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">GraphicsEndFill</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.igraphicsdata.html" class="tsd-signature-type">IGraphicsData</a></li>
|
||||
<li><a href="openfl.display.igraphicsfill.html" class="tsd-signature-type">IGraphicsFill</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsendfill.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Graphics<wbr>End<wbr>Fill<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.graphicsendfill.html" class="tsd-signature-type">GraphicsEndFill</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsEndFill.d.ts#L15">lib/openfl/display/GraphicsEndFill.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Creates an object to use with the <code>Graphics.drawGraphicsData()</code>
|
||||
method to end the fill, explicitly.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.graphicsendfill.html" class="tsd-signature-type">GraphicsEndFill</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.graphicsendfill.html" class="tsd-kind-icon">Graphics<wbr>End<wbr>Fill</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsendfill.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
409
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsgradientfill.html
generated
vendored
Normal file
409
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsgradientfill.html
generated
vendored
Normal file
@@ -0,0 +1,409 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>GraphicsGradientFill | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.graphicsgradientfill.html">GraphicsGradientFill</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class GraphicsGradientFill</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">GraphicsGradientFill</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.igraphicsdata.html" class="tsd-signature-type">IGraphicsData</a></li>
|
||||
<li><a href="openfl.display.igraphicsfill.html" class="tsd-signature-type">IGraphicsFill</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#alphas" class="tsd-kind-icon">alphas</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#colors" class="tsd-kind-icon">colors</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#focalpointratio" class="tsd-kind-icon">focal<wbr>Point<wbr>Ratio</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#interpolationmethod" class="tsd-kind-icon">interpolation<wbr>Method</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#matrix" class="tsd-kind-icon">matrix</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#ratios" class="tsd-kind-icon">ratios</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#spreadmethod" class="tsd-kind-icon">spread<wbr>Method</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsgradientfill.html#type" class="tsd-kind-icon">type</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Graphics<wbr>Gradient<wbr>Fill<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display.gradienttype.html" class="tsd-signature-type">GradientType</a>, colors<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span>, alphas<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span>, ratios<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span>, matrix<span class="tsd-signature-symbol">?: </span><a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a>, spreadMethod<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display.spreadmethod.html" class="tsd-signature-type">SpreadMethod</a>, interpolationMethod<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display.interpolationmethod.html" class="tsd-signature-type">InterpolationMethod</a>, focalPointRatio<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.graphicsgradientfill.html" class="tsd-signature-type">GraphicsGradientFill</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L22">lib/openfl/display/GraphicsGradientFill.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> type: <a href="../enums/openfl.display.gradienttype.html" class="tsd-signature-type">GradientType</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> colors: <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> alphas: <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> ratios: <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> matrix: <a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> spreadMethod: <a href="../enums/openfl.display.spreadmethod.html" class="tsd-signature-type">SpreadMethod</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> interpolationMethod: <a href="../enums/openfl.display.interpolationmethod.html" class="tsd-signature-type">InterpolationMethod</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> focalPointRatio: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.graphicsgradientfill.html" class="tsd-signature-type">GraphicsGradientFill</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="alphas" class="tsd-anchor"></a>
|
||||
<h3>alphas</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">alphas<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L15">lib/openfl/display/GraphicsGradientFill.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="colors" class="tsd-anchor"></a>
|
||||
<h3>colors</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">colors<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L16">lib/openfl/display/GraphicsGradientFill.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="focalpointratio" class="tsd-anchor"></a>
|
||||
<h3>focal<wbr>Point<wbr>Ratio</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">focal<wbr>Point<wbr>Ratio<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L17">lib/openfl/display/GraphicsGradientFill.d.ts:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="interpolationmethod" class="tsd-anchor"></a>
|
||||
<h3>interpolation<wbr>Method</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">interpolation<wbr>Method<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.interpolationmethod.html" class="tsd-signature-type">InterpolationMethod</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L18">lib/openfl/display/GraphicsGradientFill.d.ts:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="matrix" class="tsd-anchor"></a>
|
||||
<h3>matrix</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">matrix<span class="tsd-signature-symbol">:</span> <a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L19">lib/openfl/display/GraphicsGradientFill.d.ts:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="ratios" class="tsd-anchor"></a>
|
||||
<h3>ratios</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">ratios<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L20">lib/openfl/display/GraphicsGradientFill.d.ts:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="spreadmethod" class="tsd-anchor"></a>
|
||||
<h3>spread<wbr>Method</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">spread<wbr>Method<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.spreadmethod.html" class="tsd-signature-type">SpreadMethod</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L21">lib/openfl/display/GraphicsGradientFill.d.ts:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="type" class="tsd-anchor"></a>
|
||||
<h3>type</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.gradienttype.html" class="tsd-signature-type">GradientType</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsGradientFill.d.ts#L22">lib/openfl/display/GraphicsGradientFill.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html" class="tsd-kind-icon">Graphics<wbr>Gradient<wbr>Fill</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#alphas" class="tsd-kind-icon">alphas</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#colors" class="tsd-kind-icon">colors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#focalpointratio" class="tsd-kind-icon">focal<wbr>Point<wbr>Ratio</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#interpolationmethod" class="tsd-kind-icon">interpolation<wbr>Method</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#matrix" class="tsd-kind-icon">matrix</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#ratios" class="tsd-kind-icon">ratios</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#spreadmethod" class="tsd-kind-icon">spread<wbr>Method</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsgradientfill.html#type" class="tsd-kind-icon">type</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
651
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicspath.html
generated
vendored
Normal file
651
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicspath.html
generated
vendored
Normal file
@@ -0,0 +1,651 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>GraphicsPath | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.graphicspath.html">GraphicsPath</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class GraphicsPath</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>A collection of drawing commands and the coordinate parameters for those
|
||||
commands.</p>
|
||||
</div>
|
||||
<p> Use a GraphicsPath object with the
|
||||
<code>Graphics.drawGraphicsData()</code> method. Drawing a GraphicsPath
|
||||
object is the equivalent of calling the <code>Graphics.drawPath()</code>
|
||||
method.</p>
|
||||
<p>The GraphicsPath class also has its own set of methods
|
||||
(<code>curveTo()</code>, <code>lineTo()</code>, <code>moveTo()</code>
|
||||
<code>wideLineTo()</code> and <code>wideMoveTo()</code>) similar to those
|
||||
in the Graphics class for making adjustments to the
|
||||
<code>GraphicsPath.commands</code> and <code>GraphicsPath.data</code>
|
||||
vector arrays.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">GraphicsPath</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.igraphicsdata.html" class="tsd-signature-type">IGraphicsData</a></li>
|
||||
<li><a href="openfl.display.igraphicspath.html" class="tsd-signature-type">IGraphicsPath</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#commands" class="tsd-kind-icon">commands</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#data" class="tsd-kind-icon">data</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#winding" class="tsd-kind-icon">winding</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#cubiccurveto" class="tsd-kind-icon">cubic<wbr>Curve<wbr>To</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#curveto" class="tsd-kind-icon">curve<wbr>To</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#lineto" class="tsd-kind-icon">line<wbr>To</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#moveto" class="tsd-kind-icon">move<wbr>To</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#widelineto" class="tsd-kind-icon">wide<wbr>Line<wbr>To</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicspath.html#widemoveto" class="tsd-kind-icon">wide<wbr>Move<wbr>To</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Graphics<wbr>Path<span class="tsd-signature-symbol">(</span>commands<span class="tsd-signature-symbol">?: </span><a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span>, data<span class="tsd-signature-symbol">?: </span><a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span>, winding<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display.graphicspathwinding.html" class="tsd-signature-type">GraphicsPathWinding</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.graphicspath.html" class="tsd-signature-type">GraphicsPath</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L46">lib/openfl/display/GraphicsPath.d.ts:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Creates a new GraphicsPath object.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> commands: <a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> data: <a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> winding: <a href="../enums/openfl.display.graphicspathwinding.html" class="tsd-signature-type">GraphicsPathWinding</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Specifies the winding rule using a value defined in the
|
||||
GraphicsPathWinding class.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.graphicspath.html" class="tsd-signature-type">GraphicsPath</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="commands" class="tsd-anchor"></a>
|
||||
<h3>commands</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">commands<span class="tsd-signature-symbol">:</span> <a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L34">lib/openfl/display/GraphicsPath.d.ts:34</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The Vector of drawing commands as integers representing the path. Each
|
||||
command can be one of the values defined by the GraphicsPathCommand class.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="data" class="tsd-anchor"></a>
|
||||
<h3>data</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">data<span class="tsd-signature-symbol">:</span> <a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L40">lib/openfl/display/GraphicsPath.d.ts:40</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The Vector of Numbers containing the parameters used with the drawing
|
||||
commands.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="winding" class="tsd-anchor"></a>
|
||||
<h3>winding</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">winding<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.graphicspathwinding.html" class="tsd-signature-type">GraphicsPathWinding</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L46">lib/openfl/display/GraphicsPath.d.ts:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Specifies the winding rule using a value defined in the
|
||||
GraphicsPathWinding class.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="cubiccurveto" class="tsd-anchor"></a>
|
||||
<h3>cubic<wbr>Curve<wbr>To</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">cubic<wbr>Curve<wbr>To<span class="tsd-signature-symbol">(</span>controlX1<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, controlY1<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, controlX2<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, controlY2<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, anchorX<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, anchorY<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L58">lib/openfl/display/GraphicsPath.d.ts:58</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>controlX1: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>controlY1: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>controlX2: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>controlY2: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>anchorX: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>anchorY: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="curveto" class="tsd-anchor"></a>
|
||||
<h3>curve<wbr>To</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">curve<wbr>To<span class="tsd-signature-symbol">(</span>controlX<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, controlY<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, anchorX<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, anchorY<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L77">lib/openfl/display/GraphicsPath.d.ts:77</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Adds a new "curveTo" command to the <code>commands</code> vector and new
|
||||
coordinates to the <code>data</code> vector.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>controlX: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>A number that specifies the horizontal position of the
|
||||
control point relative to the registration point of the
|
||||
parent display object.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>controlY: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>A number that specifies the vertical position of the
|
||||
control point relative to the registration point of the
|
||||
parent display object.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>anchorX: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>A number that specifies the horizontal position of the
|
||||
next anchor point relative to the registration point of
|
||||
the parent display object.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>anchorY: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>A number that specifies the vertical position of the next
|
||||
anchor point relative to the registration point of the
|
||||
parent display object.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="lineto" class="tsd-anchor"></a>
|
||||
<h3>line<wbr>To</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">line<wbr>To<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L87">lib/openfl/display/GraphicsPath.d.ts:87</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Adds a new "lineTo" command to the <code>commands</code> vector and new
|
||||
coordinates to the <code>data</code> vector.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>x: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The x coordinate of the destination point for the line.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>y: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The y coordinate of the destination point for the line.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="moveto" class="tsd-anchor"></a>
|
||||
<h3>move<wbr>To</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">move<wbr>To<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L97">lib/openfl/display/GraphicsPath.d.ts:97</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Adds a new "moveTo" command to the <code>commands</code> vector and new
|
||||
coordinates to the <code>data</code> vector.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>x: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The x coordinate of the destination point.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>y: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The y coordinate of the destination point.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="widelineto" class="tsd-anchor"></a>
|
||||
<h3>wide<wbr>Line<wbr>To</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">wide<wbr>Line<wbr>To<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L107">lib/openfl/display/GraphicsPath.d.ts:107</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Adds a new "wideLineTo" command to the <code>commands</code> vector and
|
||||
new coordinates to the <code>data</code> vector.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>x: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The x-coordinate of the destination point for the line.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>y: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The y-coordinate of the destination point for the line.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="widemoveto" class="tsd-anchor"></a>
|
||||
<h3>wide<wbr>Move<wbr>To</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">wide<wbr>Move<wbr>To<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsPath.d.ts#L117">lib/openfl/display/GraphicsPath.d.ts:117</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Adds a new "wideMoveTo" command to the <code>commands</code> vector and
|
||||
new coordinates to the <code>data</code> vector.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>x: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The x-coordinate of the destination point.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>y: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The y-coordinate of the destination point.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html" class="tsd-kind-icon">Graphics<wbr>Path</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#commands" class="tsd-kind-icon">commands</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#data" class="tsd-kind-icon">data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#winding" class="tsd-kind-icon">winding</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#cubiccurveto" class="tsd-kind-icon">cubic<wbr>Curve<wbr>To</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#curveto" class="tsd-kind-icon">curve<wbr>To</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#lineto" class="tsd-kind-icon">line<wbr>To</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#moveto" class="tsd-kind-icon">move<wbr>To</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#widelineto" class="tsd-kind-icon">wide<wbr>Line<wbr>To</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicspath.html#widemoveto" class="tsd-kind-icon">wide<wbr>Move<wbr>To</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
348
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicssolidfill.html
generated
vendored
Normal file
348
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicssolidfill.html
generated
vendored
Normal file
@@ -0,0 +1,348 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>GraphicsSolidFill | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.graphicssolidfill.html">GraphicsSolidFill</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class GraphicsSolidFill</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Defines a solid fill.</p>
|
||||
</div>
|
||||
<p> Use a GraphicsSolidFill object with the
|
||||
<code>Graphics.drawGraphicsData()</code> method. Drawing a
|
||||
GraphicsSolidFill object is the equivalent of calling the
|
||||
<code>Graphics.beginFill()</code> method.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">GraphicsSolidFill</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.igraphicsdata.html" class="tsd-signature-type">IGraphicsData</a></li>
|
||||
<li><a href="openfl.display.igraphicsfill.html" class="tsd-signature-type">IGraphicsFill</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicssolidfill.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicssolidfill.html#alpha" class="tsd-kind-icon">alpha</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicssolidfill.html#color" class="tsd-kind-icon">color</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Graphics<wbr>Solid<wbr>Fill<span class="tsd-signature-symbol">(</span>color<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, alpha<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.graphicssolidfill.html" class="tsd-signature-type">GraphicsSolidFill</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsSolidFill.d.ts#L30">lib/openfl/display/GraphicsSolidFill.d.ts:30</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Creates a new GraphicsSolidFill object.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> color: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The color value. Valid values are in the hexadecimal format
|
||||
0xRRGGBB.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> alpha: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The alpha transparency value. Valid values are 0(fully
|
||||
transparent) to 1(fully opaque).</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.graphicssolidfill.html" class="tsd-signature-type">GraphicsSolidFill</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="alpha" class="tsd-anchor"></a>
|
||||
<h3>alpha</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">alpha<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsSolidFill.d.ts#L24">lib/openfl/display/GraphicsSolidFill.d.ts:24</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Indicates the alpha transparency value of the fill. Valid values are 0
|
||||
(fully transparent) to 1(fully opaque). The default value is 1. Display
|
||||
objects with alpha set to 0 are active, even though they are invisible.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="color" class="tsd-anchor"></a>
|
||||
<h3>color</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">color<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsSolidFill.d.ts#L30">lib/openfl/display/GraphicsSolidFill.d.ts:30</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The color of the fill. Valid values are in the hexadecimal format
|
||||
0xRRGGBB. The default value is 0xFF0000(or the uint 0).</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.graphicssolidfill.html" class="tsd-kind-icon">Graphics<wbr>Solid<wbr>Fill</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicssolidfill.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicssolidfill.html#alpha" class="tsd-kind-icon">alpha</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicssolidfill.html#color" class="tsd-kind-icon">color</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
607
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsstroke.html
generated
vendored
Normal file
607
hGameTest/node_modules/openfl/docs/classes/openfl.display.graphicsstroke.html
generated
vendored
Normal file
@@ -0,0 +1,607 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>GraphicsStroke | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.graphicsstroke.html">GraphicsStroke</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class GraphicsStroke</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Defines a line style or stroke.</p>
|
||||
</div>
|
||||
<p> Use a GraphicsStroke object with the
|
||||
<code>Graphics.drawGraphicsData()</code> method. Drawing a GraphicsStroke
|
||||
object is the equivalent of calling one of the methods of the Graphics
|
||||
class that sets the line style, such as the
|
||||
<code>Graphics.lineStyle()</code> method, the
|
||||
<code>Graphics.lineBitmapStyle()</code> method, or the
|
||||
<code>Graphics.lineGradientStyle()</code> method.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">GraphicsStroke</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.igraphicsdata.html" class="tsd-signature-type">IGraphicsData</a></li>
|
||||
<li><a href="openfl.display.igraphicsstroke.html" class="tsd-signature-type">IGraphicsStroke</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#caps" class="tsd-kind-icon">caps</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#fill" class="tsd-kind-icon">fill</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#joints" class="tsd-kind-icon">joints</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#miterlimit" class="tsd-kind-icon">miter<wbr>Limit</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#pixelhinting" class="tsd-kind-icon">pixel<wbr>Hinting</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#scalemode" class="tsd-kind-icon">scale<wbr>Mode</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.graphicsstroke.html#thickness" class="tsd-kind-icon">thickness</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Graphics<wbr>Stroke<span class="tsd-signature-symbol">(</span>thickness<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, pixelHinting<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, scaleMode<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display.linescalemode.html" class="tsd-signature-type">LineScaleMode</a>, caps<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display.capsstyle.html" class="tsd-signature-type">CapsStyle</a>, joints<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display.jointstyle.html" class="tsd-signature-type">JointStyle</a>, miterLimit<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, fill<span class="tsd-signature-symbol">?: </span><a href="openfl.display.igraphicsfill.html" class="tsd-signature-type">IGraphicsFill</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.graphicsstroke.html" class="tsd-signature-type">GraphicsStroke</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L132">lib/openfl/display/GraphicsStroke.d.ts:132</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Creates a new GraphicsStroke object.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> thickness: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> pixelHinting: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>A Boolean value that specifies whether to hint strokes
|
||||
to full pixels. This affects both the position of
|
||||
anchors of a curve and the line stroke size itself.
|
||||
With <code>pixelHinting</code> set to
|
||||
<code>true</code>, Flash Player hints line widths to
|
||||
full pixel widths. With <code>pixelHinting</code> set
|
||||
to <code>false</code>, disjoints can appear for curves
|
||||
and straight lines. For example, the following
|
||||
illustrations show how Flash Player renders two
|
||||
rounded rectangles that are identical, except that the
|
||||
<code>pixelHinting</code> parameter used in the
|
||||
<code>lineStyle()</code> method is set differently
|
||||
(the images are scaled by 200%, to emphasize the
|
||||
difference):</p>
|
||||
<pre><code> If <span class="hljs-keyword">a</span> <span class="hljs-built_in">value</span> is <span class="hljs-keyword">not</span> supplied, <span class="hljs-keyword">the</span> <span class="hljs-built_in">line</span> does <span class="hljs-keyword">not</span> use
|
||||
pixel hinting.
|
||||
</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> scaleMode: <a href="../enums/openfl.display.linescalemode.html" class="tsd-signature-type">LineScaleMode</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>A value from the LineScaleMode class that specifies
|
||||
which scale mode to use:</p>
|
||||
<pre><code> * `LineScaleMode.NORMAL` - Always
|
||||
scale <span class="hljs-keyword">the</span> <span class="hljs-built_in">line</span> thickness when <span class="hljs-keyword">the</span> object is scaled
|
||||
(<span class="hljs-keyword">the</span> default).
|
||||
* `LineScaleMode.<span class="hljs-literal">NONE</span>` - Never scale
|
||||
<span class="hljs-keyword">the</span> <span class="hljs-built_in">line</span> thickness.
|
||||
* `LineScaleMode.VERTICAL` - Do <span class="hljs-keyword">not</span>
|
||||
scale <span class="hljs-keyword">the</span> <span class="hljs-built_in">line</span> thickness <span class="hljs-keyword">if</span> <span class="hljs-keyword">the</span> object is scaled
|
||||
vertically <span class="hljs-title">_only</span>_. For example, consider <span class="hljs-keyword">the</span>
|
||||
following circles, drawn <span class="hljs-keyword">with</span> <span class="hljs-keyword">a</span> <span class="hljs-literal">one</span>-pixel <span class="hljs-built_in">line</span>, <span class="hljs-keyword">and</span>
|
||||
<span class="hljs-keyword">each</span> <span class="hljs-keyword">with</span> <span class="hljs-keyword">the</span> `scaleMode` parameter <span class="hljs-built_in">set</span> <span class="hljs-built_in">to</span>
|
||||
`LineScaleMode.VERTICAL`. The circle <span class="hljs-keyword">on</span> <span class="hljs-title">the</span>
|
||||
left is scaled vertically only, <span class="hljs-keyword">and</span> <span class="hljs-keyword">the</span> circle <span class="hljs-keyword">on</span> <span class="hljs-title">the</span>
|
||||
<span class="hljs-literal">right</span> is scaled both vertically <span class="hljs-keyword">and</span> horizontally:
|
||||
|
||||
* `LineScaleMode.HORIZONTAL` - Do <span class="hljs-keyword">not</span>
|
||||
scale <span class="hljs-keyword">the</span> <span class="hljs-built_in">line</span> thickness <span class="hljs-keyword">if</span> <span class="hljs-keyword">the</span> object is scaled
|
||||
horizontally <span class="hljs-title">_only</span>_. For example, consider <span class="hljs-keyword">the</span>
|
||||
following circles, drawn <span class="hljs-keyword">with</span> <span class="hljs-keyword">a</span> <span class="hljs-literal">one</span>-pixel <span class="hljs-built_in">line</span>, <span class="hljs-keyword">and</span>
|
||||
<span class="hljs-keyword">each</span> <span class="hljs-keyword">with</span> <span class="hljs-keyword">the</span> `scaleMode` parameter <span class="hljs-built_in">set</span> <span class="hljs-built_in">to</span>
|
||||
`LineScaleMode.HORIZONTAL`. The circle <span class="hljs-keyword">on</span>
|
||||
<span class="hljs-keyword">the</span> left is scaled horizontally only, <span class="hljs-keyword">and</span> <span class="hljs-keyword">the</span> circle
|
||||
<span class="hljs-keyword">on</span> <span class="hljs-title">the</span> <span class="hljs-title">right</span> <span class="hljs-title">is</span> <span class="hljs-title">scaled</span> <span class="hljs-title">both</span> <span class="hljs-title">vertically</span> <span class="hljs-title">and</span>
|
||||
horizontally:
|
||||
</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> caps: <a href="../enums/openfl.display.capsstyle.html" class="tsd-signature-type">CapsStyle</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>A value from the CapsStyle class that specifies the
|
||||
type of caps at the end of lines. Valid values are:
|
||||
<code>CapsStyle.NONE</code>,
|
||||
<code>CapsStyle.ROUND</code>, and
|
||||
<code>CapsStyle.SQUARE</code>. If a value is not
|
||||
indicated, Flash uses round caps.</p>
|
||||
<pre><code> For example, <span class="hljs-keyword">the</span> following illustrations show <span class="hljs-keyword">the</span>
|
||||
different `capsStyle` settings. For <span class="hljs-keyword">each</span>
|
||||
setting, <span class="hljs-keyword">the</span> illustration shows <span class="hljs-keyword">a</span> blue <span class="hljs-built_in">line</span> <span class="hljs-keyword">with</span> <span class="hljs-keyword">a</span>
|
||||
thickness <span class="hljs-keyword">of</span> <span class="hljs-number">30</span>(<span class="hljs-keyword">for</span> which <span class="hljs-keyword">the</span> `capsStyle`
|
||||
applies), <span class="hljs-keyword">and</span> <span class="hljs-keyword">a</span> superimposed <span class="hljs-keyword">black</span> <span class="hljs-built_in">line</span> <span class="hljs-keyword">with</span> <span class="hljs-keyword">a</span>
|
||||
thickness <span class="hljs-keyword">of</span> <span class="hljs-number">1</span>(<span class="hljs-keyword">for</span> which no `capsStyle`
|
||||
applies):
|
||||
</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> joints: <a href="../enums/openfl.display.jointstyle.html" class="tsd-signature-type">JointStyle</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>A value from the JointStyle class that specifies the
|
||||
type of joint appearance used at angles. Valid values
|
||||
are: <code>JointStyle.BEVEL</code>,
|
||||
<code>JointStyle.MITER</code>, and
|
||||
<code>JointStyle.ROUND</code>. If a value is not
|
||||
indicated, Flash uses round joints.</p>
|
||||
<pre><code> For example, <span class="hljs-keyword">the</span> following illustrations show <span class="hljs-keyword">the</span>
|
||||
different `joints` settings. For <span class="hljs-keyword">each</span>
|
||||
setting, <span class="hljs-keyword">the</span> illustration shows <span class="hljs-keyword">an</span> angled blue <span class="hljs-built_in">line</span>
|
||||
<span class="hljs-keyword">with</span> <span class="hljs-keyword">a</span> thickness <span class="hljs-keyword">of</span> <span class="hljs-number">30</span>(<span class="hljs-keyword">for</span> which <span class="hljs-keyword">the</span>
|
||||
`jointStyle` applies), <span class="hljs-keyword">and</span> <span class="hljs-keyword">a</span> superimposed
|
||||
angled <span class="hljs-keyword">black</span> <span class="hljs-built_in">line</span> <span class="hljs-keyword">with</span> <span class="hljs-keyword">a</span> thickness <span class="hljs-keyword">of</span> <span class="hljs-number">1</span>(<span class="hljs-keyword">for</span> which no
|
||||
`jointStyle` applies):
|
||||
|
||||
**Note:** For `joints` <span class="hljs-built_in">set</span> <span class="hljs-built_in">to</span>
|
||||
`JointStyle.MITER`, you can use <span class="hljs-keyword">the</span>
|
||||
`miterLimit` parameter <span class="hljs-built_in">to</span> limit <span class="hljs-keyword">the</span> <span class="hljs-built_in">length</span>
|
||||
<span class="hljs-keyword">of</span> <span class="hljs-keyword">the</span> miter.
|
||||
</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> miterLimit: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> fill: <a href="openfl.display.igraphicsfill.html" class="tsd-signature-type">IGraphicsFill</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.graphicsstroke.html" class="tsd-signature-type">GraphicsStroke</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="caps" class="tsd-anchor"></a>
|
||||
<h3>caps</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">caps<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.capsstyle.html" class="tsd-signature-type">CapsStyle</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L38">lib/openfl/display/GraphicsStroke.d.ts:38</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Specifies the type of caps at the end of lines. Valid values are:
|
||||
<code>CapsStyle.NONE</code>, <code>CapsStyle.ROUND</code>, and
|
||||
<code>CapsStyle.SQUARE</code>. If a value is not indicated, Flash uses
|
||||
round caps.</p>
|
||||
</div>
|
||||
<p>For example, the following illustrations show the different
|
||||
<code>capsStyle</code> settings. For each setting, the illustration shows
|
||||
a blue line with a thickness of 30(for which the <code>capsStyle</code>
|
||||
applies), and a superimposed black line with a thickness of 1(for which
|
||||
no <code>capsStyle</code> applies):</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="fill" class="tsd-anchor"></a>
|
||||
<h3>fill</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">fill<span class="tsd-signature-symbol">:</span> <a href="openfl.display.igraphicsfill.html" class="tsd-signature-type">IGraphicsFill</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L44">lib/openfl/display/GraphicsStroke.d.ts:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Specifies the instance containing data for filling a stroke. An
|
||||
IGraphicsFill instance can represent a series of fill commands.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="joints" class="tsd-anchor"></a>
|
||||
<h3>joints</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">joints<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.jointstyle.html" class="tsd-signature-type">JointStyle</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L62">lib/openfl/display/GraphicsStroke.d.ts:62</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Specifies the type of joint appearance used at angles. Valid values are:
|
||||
<code>JointStyle.BEVEL</code>, <code>JointStyle.MITER</code>, and
|
||||
<code>JointStyle.ROUND</code>. If a value is not indicated, Flash uses
|
||||
round joints.</p>
|
||||
</div>
|
||||
<p>For example, the following illustrations show the different
|
||||
<code>joints</code> settings. For each setting, the illustration shows an
|
||||
angled blue line with a thickness of 30(for which the
|
||||
<code>jointStyle</code> applies), and a superimposed angled black line
|
||||
with a thickness of 1(for which no <code>jointStyle</code> applies):</p>
|
||||
<p><strong>Note:</strong> For <code>joints</code> set to
|
||||
<code>JointStyle.MITER</code>, you can use the <code>miterLimit</code>
|
||||
parameter to limit the length of the miter.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="miterlimit" class="tsd-anchor"></a>
|
||||
<h3>miter<wbr>Limit</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">miter<wbr>Limit<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L84">lib/openfl/display/GraphicsStroke.d.ts:84</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Indicates the limit at which a miter is cut off. Valid values range from 1
|
||||
to 255(and values outside that range are rounded to 1 or 255). This value
|
||||
is only used if the <code>jointStyle</code> is set to
|
||||
<code>"miter"</code>. The <code>miterLimit</code> value represents the
|
||||
length that a miter can extend beyond the point at which the lines meet to
|
||||
form a joint. The value expresses a factor of the line
|
||||
<code>thickness</code>. For example, with a <code>miterLimit</code> factor
|
||||
of 2.5 and a <code>thickness</code> of 10 pixels, the miter is cut off at
|
||||
25 pixels.</p>
|
||||
</div>
|
||||
<p>For example, consider the following angled lines, each drawn with a
|
||||
<code>thickness</code> of 20, but with <code>miterLimit</code> set to 1,
|
||||
2, and 4. Superimposed are black reference lines showing the meeting
|
||||
points of the joints:</p>
|
||||
<p>Notice that a given <code>miterLimit</code> value has a specific
|
||||
maximum angle for which the miter is cut off. The following table lists
|
||||
some examples:</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="pixelhinting" class="tsd-anchor"></a>
|
||||
<h3>pixel<wbr>Hinting</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">pixel<wbr>Hinting<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L98">lib/openfl/display/GraphicsStroke.d.ts:98</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Specifies whether to hint strokes to full pixels. This affects both the
|
||||
position of anchors of a curve and the line stroke size itself. With
|
||||
<code>pixelHinting</code> set to <code>true</code>, Flash Player hints
|
||||
line widths to full pixel widths. With <code>pixelHinting</code> set to
|
||||
<code>false</code>, disjoints can appear for curves and straight lines.
|
||||
For example, the following illustrations show how Flash Player renders two
|
||||
rounded rectangles that are identical, except that the
|
||||
<code>pixelHinting</code> parameter used in the <code>lineStyle()</code>
|
||||
method is set differently(the images are scaled by 200%, to emphasize the
|
||||
difference):</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="scalemode" class="tsd-anchor"></a>
|
||||
<h3>scale<wbr>Mode</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">scale<wbr>Mode<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.linescalemode.html" class="tsd-signature-type">LineScaleMode</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L123">lib/openfl/display/GraphicsStroke.d.ts:123</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Specifies the stroke thickness scaling. Valid values are:</p>
|
||||
</div>
|
||||
<ul>
|
||||
<li><code>LineScaleMode.NORMAL</code> - Always scale the line thickness
|
||||
when the object is scaled(the default).</li>
|
||||
<li><p><code>LineScaleMode.NONE</code> - Never scale the line thickness.</p>
|
||||
</li>
|
||||
<li><p><code>LineScaleMode.VERTICAL</code> - Do not scale the line
|
||||
thickness if the object is scaled vertically <em>only</em>. For example,
|
||||
consider the following circles, drawn with a one-pixel line, and each with
|
||||
the <code>scaleMode</code> parameter set to
|
||||
<code>LineScaleMode.VERTICAL</code>. The circle on the left is scaled
|
||||
vertically only, and the circle on the right is scaled both vertically and
|
||||
horizontally:</p>
|
||||
</li>
|
||||
<li><code>LineScaleMode.HORIZONTAL</code> - Do not scale the line
|
||||
thickness if the object is scaled horizontally <em>only</em>. For example,
|
||||
consider the following circles, drawn with a one-pixel line, and each with
|
||||
the <code>scaleMode</code> parameter set to
|
||||
<code>LineScaleMode.HORIZONTAL</code>. The circle on the left is scaled
|
||||
horizontally only, and the circle on the right is scaled both vertically
|
||||
and horizontally:</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="thickness" class="tsd-anchor"></a>
|
||||
<h3>thickness</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">thickness<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/GraphicsStroke.d.ts#L132">lib/openfl/display/GraphicsStroke.d.ts:132</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Indicates the thickness of the line in points; valid values are 0-255. If
|
||||
a number is not specified, or if the parameter is undefined, a line is not
|
||||
drawn. If a value of less than 0 is passed, the default is 0. The value 0
|
||||
indicates hairline thickness; the maximum thickness is 255. If a value
|
||||
greater than 255 is passed, the default is 255.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html" class="tsd-kind-icon">Graphics<wbr>Stroke</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#caps" class="tsd-kind-icon">caps</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#fill" class="tsd-kind-icon">fill</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#joints" class="tsd-kind-icon">joints</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#miterlimit" class="tsd-kind-icon">miter<wbr>Limit</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#pixelhinting" class="tsd-kind-icon">pixel<wbr>Hinting</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#scalemode" class="tsd-kind-icon">scale<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.graphicsstroke.html#thickness" class="tsd-kind-icon">thickness</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
238
hGameTest/node_modules/openfl/docs/classes/openfl.display.ibitmapdrawable.html
generated
vendored
Normal file
238
hGameTest/node_modules/openfl/docs/classes/openfl.display.ibitmapdrawable.html
generated
vendored
Normal file
@@ -0,0 +1,238 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IBitmapDrawable | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.ibitmapdrawable.html">IBitmapDrawable</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IBitmapDrawable</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IBitmapDrawable</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implemented by</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.bitmap.html" class="tsd-signature-type">Bitmap</a></li>
|
||||
<li><a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></li>
|
||||
<li><a href="openfl.display.domsprite.html" class="tsd-signature-type">DOMSprite</a></li>
|
||||
<li><a href="openfl.display.displayobject.html" class="tsd-signature-type">DisplayObject</a></li>
|
||||
<li><a href="openfl.display.displayobjectcontainer.html" class="tsd-signature-type">DisplayObjectContainer</a></li>
|
||||
<li><a href="openfl.display.fps.html" class="tsd-signature-type">FPS</a></li>
|
||||
<li><a href="openfl.display.interactiveobject.html" class="tsd-signature-type">InteractiveObject</a></li>
|
||||
<li><a href="openfl.display.loader.html" class="tsd-signature-type">Loader</a></li>
|
||||
<li><a href="openfl.display.movieclip.html" class="tsd-signature-type">MovieClip</a></li>
|
||||
<li><a href="openfl.display.shape.html" class="tsd-signature-type">Shape</a></li>
|
||||
<li><a href="openfl.display.simplebutton.html" class="tsd-signature-type">SimpleButton</a></li>
|
||||
<li><a href="openfl.display.sprite.html" class="tsd-signature-type">Sprite</a></li>
|
||||
<li><a href="openfl.display.stage.html" class="tsd-signature-type">Stage</a></li>
|
||||
<li><a href="openfl.text.textfield.html" class="tsd-signature-type">TextField</a></li>
|
||||
<li><a href="openfl.display.tilemap.html" class="tsd-signature-type">Tilemap</a></li>
|
||||
<li><a href="openfl.media.video.html" class="tsd-signature-type">Video</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.ibitmapdrawable.html" class="tsd-kind-icon">IBitmap<wbr>Drawable</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
228
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicsdata.html
generated
vendored
Normal file
228
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicsdata.html
generated
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IGraphicsData | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.igraphicsdata.html">IGraphicsData</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IGraphicsData</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IGraphicsData</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implemented by</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.graphicsbitmapfill.html" class="tsd-signature-type">GraphicsBitmapFill</a></li>
|
||||
<li><a href="openfl.display.graphicsendfill.html" class="tsd-signature-type">GraphicsEndFill</a></li>
|
||||
<li><a href="openfl.display.graphicsgradientfill.html" class="tsd-signature-type">GraphicsGradientFill</a></li>
|
||||
<li><a href="openfl.display.graphicspath.html" class="tsd-signature-type">GraphicsPath</a></li>
|
||||
<li><a href="openfl.display.graphicssolidfill.html" class="tsd-signature-type">GraphicsSolidFill</a></li>
|
||||
<li><a href="openfl.display.graphicsstroke.html" class="tsd-signature-type">GraphicsStroke</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.igraphicsdata.html" class="tsd-kind-icon">IGraphics<wbr>Data</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
226
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicsfill.html
generated
vendored
Normal file
226
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicsfill.html
generated
vendored
Normal file
@@ -0,0 +1,226 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IGraphicsFill | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.igraphicsfill.html">IGraphicsFill</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IGraphicsFill</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IGraphicsFill</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implemented by</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.graphicsbitmapfill.html" class="tsd-signature-type">GraphicsBitmapFill</a></li>
|
||||
<li><a href="openfl.display.graphicsendfill.html" class="tsd-signature-type">GraphicsEndFill</a></li>
|
||||
<li><a href="openfl.display.graphicsgradientfill.html" class="tsd-signature-type">GraphicsGradientFill</a></li>
|
||||
<li><a href="openfl.display.graphicssolidfill.html" class="tsd-signature-type">GraphicsSolidFill</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.igraphicsfill.html" class="tsd-kind-icon">IGraphics<wbr>Fill</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
223
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicspath.html
generated
vendored
Normal file
223
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicspath.html
generated
vendored
Normal file
@@ -0,0 +1,223 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IGraphicsPath | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.igraphicspath.html">IGraphicsPath</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IGraphicsPath</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IGraphicsPath</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implemented by</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.graphicspath.html" class="tsd-signature-type">GraphicsPath</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.igraphicspath.html" class="tsd-kind-icon">IGraphics<wbr>Path</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
223
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicsstroke.html
generated
vendored
Normal file
223
hGameTest/node_modules/openfl/docs/classes/openfl.display.igraphicsstroke.html
generated
vendored
Normal file
@@ -0,0 +1,223 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IGraphicsStroke | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.igraphicsstroke.html">IGraphicsStroke</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IGraphicsStroke</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IGraphicsStroke</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implemented by</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.display.graphicsstroke.html" class="tsd-signature-type">GraphicsStroke</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.igraphicsstroke.html" class="tsd-kind-icon">IGraphics<wbr>Stroke</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
3169
hGameTest/node_modules/openfl/docs/classes/openfl.display.interactiveobject.html
generated
vendored
Normal file
3169
hGameTest/node_modules/openfl/docs/classes/openfl.display.interactiveobject.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
283
hGameTest/node_modules/openfl/docs/classes/openfl.display.jpegencoderoptions.html
generated
vendored
Normal file
283
hGameTest/node_modules/openfl/docs/classes/openfl.display.jpegencoderoptions.html
generated
vendored
Normal file
@@ -0,0 +1,283 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>JPEGEncoderOptions | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.jpegencoderoptions.html">JPEGEncoderOptions</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class JPEGEncoderOptions</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">JPEGEncoderOptions</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.jpegencoderoptions.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.jpegencoderoptions.html#quality" class="tsd-kind-icon">quality</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new JPEGEncoder<wbr>Options<span class="tsd-signature-symbol">(</span>quality<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.jpegencoderoptions.html" class="tsd-signature-type">JPEGEncoderOptions</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/JPEGEncoderOptions.d.ts#L7">lib/openfl/display/JPEGEncoderOptions.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> quality: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.jpegencoderoptions.html" class="tsd-signature-type">JPEGEncoderOptions</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="quality" class="tsd-anchor"></a>
|
||||
<h3>quality</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">quality<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/JPEGEncoderOptions.d.ts#L7">lib/openfl/display/JPEGEncoderOptions.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.jpegencoderoptions.html" class="tsd-kind-icon">JPEGEncoder<wbr>Options</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.jpegencoderoptions.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.jpegencoderoptions.html#quality" class="tsd-kind-icon">quality</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
3547
hGameTest/node_modules/openfl/docs/classes/openfl.display.loader.html
generated
vendored
Normal file
3547
hGameTest/node_modules/openfl/docs/classes/openfl.display.loader.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1344
hGameTest/node_modules/openfl/docs/classes/openfl.display.loaderinfo.html
generated
vendored
Normal file
1344
hGameTest/node_modules/openfl/docs/classes/openfl.display.loaderinfo.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3555
hGameTest/node_modules/openfl/docs/classes/openfl.display.movieclip.html
generated
vendored
Normal file
3555
hGameTest/node_modules/openfl/docs/classes/openfl.display.movieclip.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
283
hGameTest/node_modules/openfl/docs/classes/openfl.display.pngencoderoptions.html
generated
vendored
Normal file
283
hGameTest/node_modules/openfl/docs/classes/openfl.display.pngencoderoptions.html
generated
vendored
Normal file
@@ -0,0 +1,283 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>PNGEncoderOptions | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.pngencoderoptions.html">PNGEncoderOptions</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class PNGEncoderOptions</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">PNGEncoderOptions</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.pngencoderoptions.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.pngencoderoptions.html#fastcompression" class="tsd-kind-icon">fast<wbr>Compression</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new PNGEncoder<wbr>Options<span class="tsd-signature-symbol">(</span>fastCompression<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.pngencoderoptions.html" class="tsd-signature-type">PNGEncoderOptions</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/PNGEncoderOptions.d.ts#L7">lib/openfl/display/PNGEncoderOptions.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> fastCompression: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.pngencoderoptions.html" class="tsd-signature-type">PNGEncoderOptions</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="fastcompression" class="tsd-anchor"></a>
|
||||
<h3>fast<wbr>Compression</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">fast<wbr>Compression<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/PNGEncoderOptions.d.ts#L7">lib/openfl/display/PNGEncoderOptions.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.pngencoderoptions.html" class="tsd-kind-icon">PNGEncoder<wbr>Options</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.pngencoderoptions.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.pngencoderoptions.html#fastcompression" class="tsd-kind-icon">fast<wbr>Compression</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
261
hGameTest/node_modules/openfl/docs/classes/openfl.display.preloader.html
generated
vendored
Normal file
261
hGameTest/node_modules/openfl/docs/classes/openfl.display.preloader.html
generated
vendored
Normal file
@@ -0,0 +1,261 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Preloader | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.preloader.html">Preloader</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Preloader</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Preloader</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.preloader.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Preloader<span class="tsd-signature-symbol">(</span>display<span class="tsd-signature-symbol">?: </span><a href="openfl.display.sprite.html" class="tsd-signature-type">Sprite</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.preloader.html" class="tsd-signature-type">Preloader</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Preloader.d.ts#L7">lib/openfl/display/Preloader.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> display: <a href="openfl.display.sprite.html" class="tsd-signature-type">Sprite</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.preloader.html" class="tsd-signature-type">Preloader</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.preloader.html" class="tsd-kind-icon">Preloader</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.preloader.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
353
hGameTest/node_modules/openfl/docs/classes/openfl.display.shader.html
generated
vendored
Normal file
353
hGameTest/node_modules/openfl/docs/classes/openfl.display.shader.html
generated
vendored
Normal file
@@ -0,0 +1,353 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Shader | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.shader.html">Shader</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Shader</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Shader</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shader.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shader.html#bytecode" class="tsd-kind-icon">byte<wbr>Code</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shader.html#data" class="tsd-kind-icon">data</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shader.html#glfragmentsource" class="tsd-kind-icon">gl<wbr>Fragment<wbr>Source</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shader.html#glprogram" class="tsd-kind-icon">gl<wbr>Program</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shader.html#glvertexsource" class="tsd-kind-icon">gl<wbr>Vertex<wbr>Source</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shader.html#precisionhint" class="tsd-kind-icon">precision<wbr>Hint</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Shader<span class="tsd-signature-symbol">(</span>code<span class="tsd-signature-symbol">?: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.shader.html" class="tsd-signature-type">Shader</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Shader.d.ts#L17">lib/openfl/display/Shader.d.ts:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> code: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.shader.html" class="tsd-signature-type">Shader</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="bytecode" class="tsd-anchor"></a>
|
||||
<h3>byte<wbr>Code</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">byte<wbr>Code<span class="tsd-signature-symbol">:</span> <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Shader.d.ts#L12">lib/openfl/display/Shader.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="data" class="tsd-anchor"></a>
|
||||
<h3>data</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">data<span class="tsd-signature-symbol">:</span> <a href="openfl.display.shaderdata.html" class="tsd-signature-type">ShaderData</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Shader.d.ts#L13">lib/openfl/display/Shader.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="glfragmentsource" class="tsd-anchor"></a>
|
||||
<h3>gl<wbr>Fragment<wbr>Source</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">gl<wbr>Fragment<wbr>Source<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Shader.d.ts#L14">lib/openfl/display/Shader.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="glprogram" class="tsd-anchor"></a>
|
||||
<h3>gl<wbr>Program</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">gl<wbr>Program<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Shader.d.ts#L15">lib/openfl/display/Shader.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="glvertexsource" class="tsd-anchor"></a>
|
||||
<h3>gl<wbr>Vertex<wbr>Source</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">gl<wbr>Vertex<wbr>Source<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Shader.d.ts#L16">lib/openfl/display/Shader.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="precisionhint" class="tsd-anchor"></a>
|
||||
<h3>precision<wbr>Hint</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">precision<wbr>Hint<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.shaderprecision.html" class="tsd-signature-type">ShaderPrecision</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Shader.d.ts#L17">lib/openfl/display/Shader.d.ts:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.shader.html" class="tsd-kind-icon">Shader</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shader.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shader.html#bytecode" class="tsd-kind-icon">byte<wbr>Code</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shader.html#data" class="tsd-kind-icon">data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shader.html#glfragmentsource" class="tsd-kind-icon">gl<wbr>Fragment<wbr>Source</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shader.html#glprogram" class="tsd-kind-icon">gl<wbr>Program</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shader.html#glvertexsource" class="tsd-kind-icon">gl<wbr>Vertex<wbr>Source</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shader.html#precisionhint" class="tsd-kind-icon">precision<wbr>Hint</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
261
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderdata.html
generated
vendored
Normal file
261
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderdata.html
generated
vendored
Normal file
@@ -0,0 +1,261 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>ShaderData | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.shaderdata.html">ShaderData</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class ShaderData</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">ShaderData</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderdata.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Shader<wbr>Data<span class="tsd-signature-symbol">(</span>byteArray<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.shaderdata.html" class="tsd-signature-type">ShaderData</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderData.d.ts#L7">lib/openfl/display/ShaderData.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>byteArray: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.shaderdata.html" class="tsd-signature-type">ShaderData</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.shaderdata.html" class="tsd-kind-icon">Shader<wbr>Data</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderdata.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
341
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderinput.html
generated
vendored
Normal file
341
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderinput.html
generated
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>ShaderInput | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.shaderinput.html">ShaderInput</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class ShaderInput<T></h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-type-parameters">
|
||||
<h3>Type parameters</h3>
|
||||
<ul class="tsd-type-parameters">
|
||||
<li>
|
||||
<h4>T</h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">ShaderInput</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderinput.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderinput.html#channels" class="tsd-kind-icon">channels</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderinput.html#height" class="tsd-kind-icon">height</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderinput.html#index" class="tsd-kind-icon">index</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderinput.html#input" class="tsd-kind-icon">input</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderinput.html#width" class="tsd-kind-icon">width</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Shader<wbr>Input<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.shaderinput.html" class="tsd-signature-type">ShaderInput</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderInput.d.ts#L11">lib/openfl/display/ShaderInput.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.shaderinput.html" class="tsd-signature-type">ShaderInput</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="channels" class="tsd-anchor"></a>
|
||||
<h3>channels</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">channels<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderInput.d.ts#L7">lib/openfl/display/ShaderInput.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="height" class="tsd-anchor"></a>
|
||||
<h3>height</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">height<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderInput.d.ts#L8">lib/openfl/display/ShaderInput.d.ts:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="index" class="tsd-anchor"></a>
|
||||
<h3>index</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderInput.d.ts#L9">lib/openfl/display/ShaderInput.d.ts:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="input" class="tsd-anchor"></a>
|
||||
<h3>input</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">input<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">T</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderInput.d.ts#L10">lib/openfl/display/ShaderInput.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="width" class="tsd-anchor"></a>
|
||||
<h3>width</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderInput.d.ts#L11">lib/openfl/display/ShaderInput.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter tsd-is-external">
|
||||
<a href="openfl.display.shaderinput.html" class="tsd-kind-icon">Shader<wbr>Input</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderinput.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderinput.html#channels" class="tsd-kind-icon">channels</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderinput.html#height" class="tsd-kind-icon">height</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderinput.html#index" class="tsd-kind-icon">index</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderinput.html#input" class="tsd-kind-icon">input</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderinput.html#width" class="tsd-kind-icon">width</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
815
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderjob.html
generated
vendored
Normal file
815
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderjob.html
generated
vendored
Normal file
@@ -0,0 +1,815 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>ShaderJob | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.shaderjob.html">ShaderJob</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class ShaderJob</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">ShaderJob</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.display.shaderjob.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderjob.html#height" class="tsd-kind-icon">height</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderjob.html#progress" class="tsd-kind-icon">progress</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderjob.html#shader" class="tsd-kind-icon">shader</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderjob.html#target" class="tsd-kind-icon">target</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderjob.html#width" class="tsd-kind-icon">width</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.shaderjob.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderjob.html#cancel" class="tsd-kind-icon">cancel</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.shaderjob.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.shaderjob.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.shaderjob.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderjob.html#start" class="tsd-kind-icon">start</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.shaderjob.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.shaderjob.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Shader<wbr>Job<span class="tsd-signature-symbol">(</span>shader<span class="tsd-signature-symbol">?: </span><a href="openfl.display.shader.html" class="tsd-signature-type">Shader</a>, target<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span>, width<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, height<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.shaderjob.html" class="tsd-signature-type">ShaderJob</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L15">lib/openfl/display/ShaderJob.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> shader: <a href="openfl.display.shader.html" class="tsd-signature-type">Shader</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <span class="tsd-signature-type">any</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> width: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> height: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.shaderjob.html" class="tsd-signature-type">ShaderJob</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="height" class="tsd-anchor"></a>
|
||||
<h3>height</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">height<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L12">lib/openfl/display/ShaderJob.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="progress" class="tsd-anchor"></a>
|
||||
<h3>progress</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">progress<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L13">lib/openfl/display/ShaderJob.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="shader" class="tsd-anchor"></a>
|
||||
<h3>shader</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">shader<span class="tsd-signature-symbol">:</span> <a href="openfl.display.shader.html" class="tsd-signature-type">Shader</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L14">lib/openfl/display/ShaderJob.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="target" class="tsd-anchor"></a>
|
||||
<h3>target</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">target<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L15">lib/openfl/display/ShaderJob.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="width" class="tsd-anchor"></a>
|
||||
<h3>width</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L11">lib/openfl/display/ShaderJob.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="cancel" class="tsd-anchor"></a>
|
||||
<h3>cancel</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">cancel<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L19">lib/openfl/display/ShaderJob.d.ts:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="start" class="tsd-anchor"></a>
|
||||
<h3>start</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">start<span class="tsd-signature-symbol">(</span>waitForCompletion<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderJob.d.ts#L20">lib/openfl/display/ShaderJob.d.ts:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> waitForCompletion: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html" class="tsd-kind-icon">Shader<wbr>Job</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#height" class="tsd-kind-icon">height</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#progress" class="tsd-kind-icon">progress</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#shader" class="tsd-kind-icon">shader</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#target" class="tsd-kind-icon">target</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#width" class="tsd-kind-icon">width</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#cancel" class="tsd-kind-icon">cancel</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#start" class="tsd-kind-icon">start</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.shaderjob.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
313
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderparameter.html
generated
vendored
Normal file
313
hGameTest/node_modules/openfl/docs/classes/openfl.display.shaderparameter.html
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>ShaderParameter | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.shaderparameter.html">ShaderParameter</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class ShaderParameter<T></h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-type-parameters">
|
||||
<h3>Type parameters</h3>
|
||||
<ul class="tsd-type-parameters">
|
||||
<li>
|
||||
<h4>T</h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">ShaderParameter</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderparameter.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderparameter.html#index" class="tsd-kind-icon">index</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderparameter.html#type" class="tsd-kind-icon">type</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.shaderparameter.html#value" class="tsd-kind-icon">value</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Shader<wbr>Parameter<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.shaderparameter.html" class="tsd-signature-type">ShaderParameter</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderParameter.d.ts#L12">lib/openfl/display/ShaderParameter.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.shaderparameter.html" class="tsd-signature-type">ShaderParameter</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="index" class="tsd-anchor"></a>
|
||||
<h3>index</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderParameter.d.ts#L10">lib/openfl/display/ShaderParameter.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="type" class="tsd-anchor"></a>
|
||||
<h3>type</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <a href="../enums/openfl.display.shaderparametertype.html" class="tsd-signature-type">ShaderParameterType</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderParameter.d.ts#L11">lib/openfl/display/ShaderParameter.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="value" class="tsd-anchor"></a>
|
||||
<h3>value</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/ShaderParameter.d.ts#L12">lib/openfl/display/ShaderParameter.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter tsd-is-external">
|
||||
<a href="openfl.display.shaderparameter.html" class="tsd-kind-icon">Shader<wbr>Parameter</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderparameter.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderparameter.html#index" class="tsd-kind-icon">index</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderparameter.html#type" class="tsd-kind-icon">type</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.shaderparameter.html#value" class="tsd-kind-icon">value</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
1872
hGameTest/node_modules/openfl/docs/classes/openfl.display.shape.html
generated
vendored
Normal file
1872
hGameTest/node_modules/openfl/docs/classes/openfl.display.shape.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2271
hGameTest/node_modules/openfl/docs/classes/openfl.display.simplebutton.html
generated
vendored
Normal file
2271
hGameTest/node_modules/openfl/docs/classes/openfl.display.simplebutton.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3107
hGameTest/node_modules/openfl/docs/classes/openfl.display.sprite.html
generated
vendored
Normal file
3107
hGameTest/node_modules/openfl/docs/classes/openfl.display.sprite.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3661
hGameTest/node_modules/openfl/docs/classes/openfl.display.stage.html
generated
vendored
Normal file
3661
hGameTest/node_modules/openfl/docs/classes/openfl.display.stage.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
824
hGameTest/node_modules/openfl/docs/classes/openfl.display.stage3d.html
generated
vendored
Normal file
824
hGameTest/node_modules/openfl/docs/classes/openfl.display.stage3d.html
generated
vendored
Normal file
@@ -0,0 +1,824 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Stage3D | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.stage3d.html">Stage3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Stage3D</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Stage3D</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.stage3d.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.stage3d.html#context3d" class="tsd-kind-icon">context3D</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.stage3d.html#visible" class="tsd-kind-icon">visible</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.stage3d.html#x" class="tsd-kind-icon">x</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.stage3d.html#y" class="tsd-kind-icon">y</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.stage3d.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.stage3d.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.stage3d.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.stage3d.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.stage3d.html#requestcontext3d" class="tsd-kind-icon">request<wbr>Context3D</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.stage3d.html#requestcontext3dmatchingprofiles" class="tsd-kind-icon">request<wbr>Context3DMatching<wbr>Profiles</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.stage3d.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display.stage3d.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Stage3D<span class="tsd-signature-symbol">(</span>target<span class="tsd-signature-symbol">?: </span><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.stage3d.html" class="tsd-signature-type">Stage3D</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L50">lib/openfl/events/EventDispatcher.d.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Aggregates an instance of the EventDispatcher class.</p>
|
||||
</div>
|
||||
<p>The EventDispatcher class is generally used as a base class, which
|
||||
means that most developers do not need to use this constructor function.
|
||||
However, advanced developers who are implementing the IEventDispatcher
|
||||
interface need to use this constructor. If you are unable to extend the
|
||||
EventDispatcher class and must instead implement the IEventDispatcher
|
||||
interface, use this constructor to aggregate an instance of the
|
||||
EventDispatcher class.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The target object for events dispatched to the
|
||||
EventDispatcher object. This parameter is used when the
|
||||
EventDispatcher instance is aggregated by a class that
|
||||
implements IEventDispatcher; it is necessary so that the
|
||||
containing object can be the target for events. Do not use
|
||||
this parameter in simple cases in which a class extends
|
||||
EventDispatcher.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.stage3d.html" class="tsd-signature-type">Stage3D</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="context3d" class="tsd-anchor"></a>
|
||||
<h3>context3D</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">context3D<span class="tsd-signature-symbol">:</span> <a href="openfl.display3d.context3d.html" class="tsd-signature-type">Context3D</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Stage3D.d.ts#L15">lib/openfl/display/Stage3D.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="visible" class="tsd-anchor"></a>
|
||||
<h3>visible</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">visible<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Stage3D.d.ts#L16">lib/openfl/display/Stage3D.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="x" class="tsd-anchor"></a>
|
||||
<h3>x</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">x<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Stage3D.d.ts#L17">lib/openfl/display/Stage3D.d.ts:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="y" class="tsd-anchor"></a>
|
||||
<h3>y</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">y<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Stage3D.d.ts#L18">lib/openfl/display/Stage3D.d.ts:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="requestcontext3d" class="tsd-anchor"></a>
|
||||
<h3>request<wbr>Context3D</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">request<wbr>Context3D<span class="tsd-signature-symbol">(</span>context3DRenderMode<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display3d.context3drendermode.html" class="tsd-signature-type">Context3DRenderMode</a>, profile<span class="tsd-signature-symbol">?: </span><a href="../enums/openfl.display3d.context3dprofile.html" class="tsd-signature-type">Context3DProfile</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Stage3D.d.ts#L21">lib/openfl/display/Stage3D.d.ts:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> context3DRenderMode: <a href="../enums/openfl.display3d.context3drendermode.html" class="tsd-signature-type">Context3DRenderMode</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> profile: <a href="../enums/openfl.display3d.context3dprofile.html" class="tsd-signature-type">Context3DProfile</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="requestcontext3dmatchingprofiles" class="tsd-anchor"></a>
|
||||
<h3>request<wbr>Context3DMatching<wbr>Profiles</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">request<wbr>Context3DMatching<wbr>Profiles<span class="tsd-signature-symbol">(</span>profiles<span class="tsd-signature-symbol">: </span><a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Stage3D.d.ts#L22">lib/openfl/display/Stage3D.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>profiles: <a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html" class="tsd-kind-icon">Stage3D</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#context3d" class="tsd-kind-icon">context3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#visible" class="tsd-kind-icon">visible</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#x" class="tsd-kind-icon">x</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#y" class="tsd-kind-icon">y</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#requestcontext3d" class="tsd-kind-icon">request<wbr>Context3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#requestcontext3dmatchingprofiles" class="tsd-kind-icon">request<wbr>Context3DMatching<wbr>Profiles</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display.stage3d.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
537
hGameTest/node_modules/openfl/docs/classes/openfl.display.tile.html
generated
vendored
Normal file
537
hGameTest/node_modules/openfl/docs/classes/openfl.display.tile.html
generated
vendored
Normal file
@@ -0,0 +1,537 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Tile | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.tile.html">Tile</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Tile</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Tile</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#alpha" class="tsd-kind-icon">alpha</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#colortransform" class="tsd-kind-icon">color<wbr>Transform</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#data" class="tsd-kind-icon">data</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#id" class="tsd-kind-icon">id</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#matrix" class="tsd-kind-icon">matrix</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#originx" class="tsd-kind-icon">originX</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#originy" class="tsd-kind-icon">originY</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#parent" class="tsd-kind-icon">parent</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#rotation" class="tsd-kind-icon">rotation</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#scalex" class="tsd-kind-icon">scaleX</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#scaley" class="tsd-kind-icon">scaleY</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#shader" class="tsd-kind-icon">shader</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#tileset" class="tsd-kind-icon">tileset</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#visible" class="tsd-kind-icon">visible</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#x" class="tsd-kind-icon">x</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#y" class="tsd-kind-icon">y</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tile.html#clone" class="tsd-kind-icon">clone</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Tile<span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, x<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, scaleX<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, scaleY<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, rotation<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.tile.html" class="tsd-signature-type">Tile</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L29">lib/openfl/display/Tile.d.ts:29</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> id: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> x: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> y: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> scaleX: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> scaleY: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> rotation: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.tile.html" class="tsd-signature-type">Tile</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="alpha" class="tsd-anchor"></a>
|
||||
<h3>alpha</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">alpha<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L14">lib/openfl/display/Tile.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="colortransform" class="tsd-anchor"></a>
|
||||
<h3>color<wbr>Transform</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">color<wbr>Transform<span class="tsd-signature-symbol">:</span> <a href="openfl.geom.colortransform.html" class="tsd-signature-type">ColorTransform</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L15">lib/openfl/display/Tile.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="data" class="tsd-anchor"></a>
|
||||
<h3>data</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">data<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L16">lib/openfl/display/Tile.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="id" class="tsd-anchor"></a>
|
||||
<h3>id</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L17">lib/openfl/display/Tile.d.ts:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="matrix" class="tsd-anchor"></a>
|
||||
<h3>matrix</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">matrix<span class="tsd-signature-symbol">:</span> <a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L18">lib/openfl/display/Tile.d.ts:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="originx" class="tsd-anchor"></a>
|
||||
<h3>originX</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">originX<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L19">lib/openfl/display/Tile.d.ts:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="originy" class="tsd-anchor"></a>
|
||||
<h3>originY</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">originY<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L20">lib/openfl/display/Tile.d.ts:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="parent" class="tsd-anchor"></a>
|
||||
<h3>parent</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">parent<span class="tsd-signature-symbol">:</span> <a href="openfl.display.tilemap.html" class="tsd-signature-type">Tilemap</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L21">lib/openfl/display/Tile.d.ts:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="rotation" class="tsd-anchor"></a>
|
||||
<h3>rotation</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">rotation<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L22">lib/openfl/display/Tile.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="scalex" class="tsd-anchor"></a>
|
||||
<h3>scaleX</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">scaleX<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L23">lib/openfl/display/Tile.d.ts:23</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="scaley" class="tsd-anchor"></a>
|
||||
<h3>scaleY</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">scaleY<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L24">lib/openfl/display/Tile.d.ts:24</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="shader" class="tsd-anchor"></a>
|
||||
<h3>shader</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">shader<span class="tsd-signature-symbol">:</span> <a href="openfl.display.shader.html" class="tsd-signature-type">Shader</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L25">lib/openfl/display/Tile.d.ts:25</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="tileset" class="tsd-anchor"></a>
|
||||
<h3>tileset</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">tileset<span class="tsd-signature-symbol">:</span> <a href="openfl.display.tileset.html" class="tsd-signature-type">Tileset</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L26">lib/openfl/display/Tile.d.ts:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="visible" class="tsd-anchor"></a>
|
||||
<h3>visible</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">visible<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L27">lib/openfl/display/Tile.d.ts:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="x" class="tsd-anchor"></a>
|
||||
<h3>x</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">x<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L28">lib/openfl/display/Tile.d.ts:28</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="y" class="tsd-anchor"></a>
|
||||
<h3>y</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">y<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L29">lib/openfl/display/Tile.d.ts:29</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="clone" class="tsd-anchor"></a>
|
||||
<h3>clone</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">clone<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.tile.html" class="tsd-signature-type">Tile</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tile.d.ts#L34">lib/openfl/display/Tile.d.ts:34</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.tile.html" class="tsd-signature-type">Tile</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.tile.html" class="tsd-kind-icon">Tile</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#alpha" class="tsd-kind-icon">alpha</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#colortransform" class="tsd-kind-icon">color<wbr>Transform</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#data" class="tsd-kind-icon">data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#id" class="tsd-kind-icon">id</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#matrix" class="tsd-kind-icon">matrix</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#originx" class="tsd-kind-icon">originX</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#originy" class="tsd-kind-icon">originY</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#parent" class="tsd-kind-icon">parent</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#rotation" class="tsd-kind-icon">rotation</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#scalex" class="tsd-kind-icon">scaleX</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#scaley" class="tsd-kind-icon">scaleY</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#shader" class="tsd-kind-icon">shader</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#tileset" class="tsd-kind-icon">tileset</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#visible" class="tsd-kind-icon">visible</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#x" class="tsd-kind-icon">x</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#y" class="tsd-kind-icon">y</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tile.html#clone" class="tsd-kind-icon">clone</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
582
hGameTest/node_modules/openfl/docs/classes/openfl.display.tilearray.html
generated
vendored
Normal file
582
hGameTest/node_modules/openfl/docs/classes/openfl.display.tilearray.html
generated
vendored
Normal file
@@ -0,0 +1,582 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>TileArray | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.tilearray.html">TileArray</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class TileArray</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">TileArray</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#alpha" class="tsd-kind-icon">alpha</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#id" class="tsd-kind-icon">id</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#length" class="tsd-kind-icon">length</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#position" class="tsd-kind-icon">position</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#shader" class="tsd-kind-icon">shader</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#tileset" class="tsd-kind-icon">tileset</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#visible" class="tsd-kind-icon">visible</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#getcolortransform" class="tsd-kind-icon">get<wbr>Color<wbr>Transform</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#getmatrix" class="tsd-kind-icon">get<wbr>Matrix</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#getrect" class="tsd-kind-icon">get<wbr>Rect</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#setcolortransform" class="tsd-kind-icon">set<wbr>Color<wbr>Transform</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#setmatrix" class="tsd-kind-icon">set<wbr>Matrix</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tilearray.html#setrect" class="tsd-kind-icon">set<wbr>Rect</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Tile<wbr>Array<span class="tsd-signature-symbol">(</span>length<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.tilearray.html" class="tsd-signature-type">TileArray</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L20">lib/openfl/display/TileArray.d.ts:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> length: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.tilearray.html" class="tsd-signature-type">TileArray</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="alpha" class="tsd-anchor"></a>
|
||||
<h3>alpha</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">alpha<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L14">lib/openfl/display/TileArray.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="id" class="tsd-anchor"></a>
|
||||
<h3>id</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L15">lib/openfl/display/TileArray.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="length" class="tsd-anchor"></a>
|
||||
<h3>length</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">length<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L16">lib/openfl/display/TileArray.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="position" class="tsd-anchor"></a>
|
||||
<h3>position</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">position<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L17">lib/openfl/display/TileArray.d.ts:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="shader" class="tsd-anchor"></a>
|
||||
<h3>shader</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">shader<span class="tsd-signature-symbol">:</span> <a href="openfl.display.shader.html" class="tsd-signature-type">Shader</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L18">lib/openfl/display/TileArray.d.ts:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="tileset" class="tsd-anchor"></a>
|
||||
<h3>tileset</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">tileset<span class="tsd-signature-symbol">:</span> <a href="openfl.display.tileset.html" class="tsd-signature-type">Tileset</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L19">lib/openfl/display/TileArray.d.ts:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="visible" class="tsd-anchor"></a>
|
||||
<h3>visible</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">visible<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L20">lib/openfl/display/TileArray.d.ts:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="getcolortransform" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Color<wbr>Transform</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Color<wbr>Transform<span class="tsd-signature-symbol">(</span>colorTransform<span class="tsd-signature-symbol">?: </span><a href="openfl.geom.colortransform.html" class="tsd-signature-type">ColorTransform</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.geom.colortransform.html" class="tsd-signature-type">ColorTransform</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L24">lib/openfl/display/TileArray.d.ts:24</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> colorTransform: <a href="openfl.geom.colortransform.html" class="tsd-signature-type">ColorTransform</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.geom.colortransform.html" class="tsd-signature-type">ColorTransform</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="getmatrix" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Matrix</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Matrix<span class="tsd-signature-symbol">(</span>matrix<span class="tsd-signature-symbol">?: </span><a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L25">lib/openfl/display/TileArray.d.ts:25</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> matrix: <a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.geom.matrix.html" class="tsd-signature-type">Matrix</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="getrect" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Rect</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Rect<span class="tsd-signature-symbol">(</span>rect<span class="tsd-signature-symbol">?: </span><a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L26">lib/openfl/display/TileArray.d.ts:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> rect: <a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="setcolortransform" class="tsd-anchor"></a>
|
||||
<h3>set<wbr>Color<wbr>Transform</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">set<wbr>Color<wbr>Transform<span class="tsd-signature-symbol">(</span>redMultiplier<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, greenMultiplier<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, blueMultiplier<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, alphaMultiplier<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, redOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, greenOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, blueOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, alphaOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L27">lib/openfl/display/TileArray.d.ts:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>redMultiplier: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>greenMultiplier: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>blueMultiplier: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>alphaMultiplier: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>redOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>greenOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>blueOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>alphaOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="setmatrix" class="tsd-anchor"></a>
|
||||
<h3>set<wbr>Matrix</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">set<wbr>Matrix<span class="tsd-signature-symbol">(</span>a<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, b<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, c<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, d<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, tx<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, ty<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L28">lib/openfl/display/TileArray.d.ts:28</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>a: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>b: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>c: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>d: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>tx: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>ty: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="setrect" class="tsd-anchor"></a>
|
||||
<h3>set<wbr>Rect</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">set<wbr>Rect<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, width<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, height<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/TileArray.d.ts#L29">lib/openfl/display/TileArray.d.ts:29</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>x: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>y: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>width: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>height: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html" class="tsd-kind-icon">Tile<wbr>Array</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#alpha" class="tsd-kind-icon">alpha</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#id" class="tsd-kind-icon">id</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#length" class="tsd-kind-icon">length</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#position" class="tsd-kind-icon">position</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#shader" class="tsd-kind-icon">shader</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#tileset" class="tsd-kind-icon">tileset</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#visible" class="tsd-kind-icon">visible</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#getcolortransform" class="tsd-kind-icon">get<wbr>Color<wbr>Transform</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#getmatrix" class="tsd-kind-icon">get<wbr>Matrix</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#getrect" class="tsd-kind-icon">get<wbr>Rect</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#setcolortransform" class="tsd-kind-icon">set<wbr>Color<wbr>Transform</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#setmatrix" class="tsd-kind-icon">set<wbr>Matrix</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tilearray.html#setrect" class="tsd-kind-icon">set<wbr>Rect</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
2198
hGameTest/node_modules/openfl/docs/classes/openfl.display.tilemap.html
generated
vendored
Normal file
2198
hGameTest/node_modules/openfl/docs/classes/openfl.display.tilemap.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
348
hGameTest/node_modules/openfl/docs/classes/openfl.display.tileset.html
generated
vendored
Normal file
348
hGameTest/node_modules/openfl/docs/classes/openfl.display.tileset.html
generated
vendored
Normal file
@@ -0,0 +1,348 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Tileset | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display.html">display</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.tileset.html">Tileset</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Tileset</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Tileset</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tileset.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tileset.html#bitmapdata" class="tsd-kind-icon">bitmap<wbr>Data</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tileset.html#addrect" class="tsd-kind-icon">add<wbr>Rect</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display.tileset.html#getrect" class="tsd-kind-icon">get<wbr>Rect</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Tileset<span class="tsd-signature-symbol">(</span>bitmapData<span class="tsd-signature-symbol">: </span><a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a>, rects<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display.tileset.html" class="tsd-signature-type">Tileset</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tileset.d.ts#L11">lib/openfl/display/Tileset.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>bitmapData: <a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> rects: <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol"><</span><a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display.tileset.html" class="tsd-signature-type">Tileset</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="bitmapdata" class="tsd-anchor"></a>
|
||||
<h3>bitmap<wbr>Data</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">bitmap<wbr>Data<span class="tsd-signature-symbol">:</span> <a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tileset.d.ts#L11">lib/openfl/display/Tileset.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="addrect" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Rect</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Rect<span class="tsd-signature-symbol">(</span>rect<span class="tsd-signature-symbol">: </span><a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tileset.d.ts#L15">lib/openfl/display/Tileset.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>rect: <a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="getrect" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Rect</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Rect<span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display/Tileset.d.ts#L16">lib/openfl/display/Tileset.d.ts:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>id: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.geom.rectangle.html" class="tsd-signature-type">Rectangle</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display.tileset.html" class="tsd-kind-icon">Tileset</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tileset.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tileset.html#bitmapdata" class="tsd-kind-icon">bitmap<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tileset.html#addrect" class="tsd-kind-icon">add<wbr>Rect</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display.tileset.html#getrect" class="tsd-kind-icon">get<wbr>Rect</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
1826
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.context3d.html
generated
vendored
Normal file
1826
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.context3d.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
407
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.indexbuffer3d.html
generated
vendored
Normal file
407
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.indexbuffer3d.html
generated
vendored
Normal file
@@ -0,0 +1,407 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IndexBuffer3D | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.indexbuffer3d.html">IndexBuffer3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IndexBuffer3D</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IndexBuffer3D</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.indexbuffer3d.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.indexbuffer3d.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.indexbuffer3d.html#uploadfromtypedarray" class="tsd-kind-icon">upload<wbr>From<wbr>Typed<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.indexbuffer3d.html#uploadfromvector" class="tsd-kind-icon">upload<wbr>From<wbr>Vector</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/IndexBuffer3D.d.ts#L12">lib/openfl/display3D/IndexBuffer3D.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombytearray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Byte<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, byteArrayOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, startOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, count<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/IndexBuffer3D.d.ts#L13">lib/openfl/display3D/IndexBuffer3D.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>byteArrayOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>startOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>count: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfromtypedarray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Typed<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Typed<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ArrayBufferView</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/IndexBuffer3D.d.ts#L14">lib/openfl/display3D/IndexBuffer3D.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <span class="tsd-signature-type">ArrayBufferView</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfromvector" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Vector</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Vector<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span>, startOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, count<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/IndexBuffer3D.d.ts#L15">lib/openfl/display3D/IndexBuffer3D.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>startOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>count: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dblendfactor.html" class="tsd-kind-icon">Context3DBlend<wbr>Factor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dbufferusage.html" class="tsd-kind-icon">Context3DBuffer<wbr>Usage</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dclearmask.html" class="tsd-kind-icon">Context3DClear<wbr>Mask</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dcomparemode.html" class="tsd-kind-icon">Context3DCompare<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dmipfilter.html" class="tsd-kind-icon">Context3DMip<wbr>Filter</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dprofile.html" class="tsd-kind-icon">Context3DProfile</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dprogramtype.html" class="tsd-kind-icon">Context3DProgram<wbr>Type</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3drendermode.html" class="tsd-kind-icon">Context3DRender<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dstencilaction.html" class="tsd-kind-icon">Context3DStencil<wbr>Action</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtexturefilter.html" class="tsd-kind-icon">Context3DTexture<wbr>Filter</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtextureformat.html" class="tsd-kind-icon">Context3DTexture<wbr>Format</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtriangleface.html" class="tsd-kind-icon">Context3DTriangle<wbr>Face</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dvertexbufferformat.html" class="tsd-kind-icon">Context3DVertex<wbr>Buffer<wbr>Format</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dwrapmode.html" class="tsd-kind-icon">Context3DWrap<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.context3d.html" class="tsd-kind-icon">Context3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.indexbuffer3d.html" class="tsd-kind-icon">Index<wbr>Buffer3D</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.indexbuffer3d.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.indexbuffer3d.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.indexbuffer3d.html#uploadfromtypedarray" class="tsd-kind-icon">upload<wbr>From<wbr>Typed<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.indexbuffer3d.html#uploadfromvector" class="tsd-kind-icon">upload<wbr>From<wbr>Vector</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.program3d.html" class="tsd-kind-icon">Program3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.vertexbuffer3d.html" class="tsd-kind-icon">Vertex<wbr>Buffer3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
341
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.program3d.html
generated
vendored
Normal file
341
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.program3d.html
generated
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Program3D | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.program3d.html">Program3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Program3D</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Program3D</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.program3d.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.program3d.html#upload" class="tsd-kind-icon">upload</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/Program3D.d.ts#L10">lib/openfl/display3D/Program3D.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="upload" class="tsd-anchor"></a>
|
||||
<h3>upload</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<span class="tsd-signature-symbol">(</span>vertexProgram<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, fragmentProgram<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/Program3D.d.ts#L11">lib/openfl/display3D/Program3D.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>vertexProgram: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>fragmentProgram: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dblendfactor.html" class="tsd-kind-icon">Context3DBlend<wbr>Factor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dbufferusage.html" class="tsd-kind-icon">Context3DBuffer<wbr>Usage</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dclearmask.html" class="tsd-kind-icon">Context3DClear<wbr>Mask</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dcomparemode.html" class="tsd-kind-icon">Context3DCompare<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dmipfilter.html" class="tsd-kind-icon">Context3DMip<wbr>Filter</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dprofile.html" class="tsd-kind-icon">Context3DProfile</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dprogramtype.html" class="tsd-kind-icon">Context3DProgram<wbr>Type</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3drendermode.html" class="tsd-kind-icon">Context3DRender<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dstencilaction.html" class="tsd-kind-icon">Context3DStencil<wbr>Action</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtexturefilter.html" class="tsd-kind-icon">Context3DTexture<wbr>Filter</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtextureformat.html" class="tsd-kind-icon">Context3DTexture<wbr>Format</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtriangleface.html" class="tsd-kind-icon">Context3DTriangle<wbr>Face</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dvertexbufferformat.html" class="tsd-kind-icon">Context3DVertex<wbr>Buffer<wbr>Format</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dwrapmode.html" class="tsd-kind-icon">Context3DWrap<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.context3d.html" class="tsd-kind-icon">Context3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.indexbuffer3d.html" class="tsd-kind-icon">Index<wbr>Buffer3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.program3d.html" class="tsd-kind-icon">Program3D</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.program3d.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.program3d.html#upload" class="tsd-kind-icon">upload</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.vertexbuffer3d.html" class="tsd-kind-icon">Vertex<wbr>Buffer3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
847
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.cubetexture.html
generated
vendored
Normal file
847
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.cubetexture.html
generated
vendored
Normal file
@@ -0,0 +1,847 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>CubeTexture | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.cubetexture.html">CubeTexture</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class CubeTexture</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">CubeTexture</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#uploadcompressedtexturefrombytearray" class="tsd-kind-icon">upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#uploadfrombitmapdata" class="tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.cubetexture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Cube<wbr>Texture<span class="tsd-signature-symbol">(</span>target<span class="tsd-signature-symbol">?: </span><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display3d.textures.cubetexture.html" class="tsd-signature-type">CubeTexture</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L50">lib/openfl/events/EventDispatcher.d.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Aggregates an instance of the EventDispatcher class.</p>
|
||||
</div>
|
||||
<p>The EventDispatcher class is generally used as a base class, which
|
||||
means that most developers do not need to use this constructor function.
|
||||
However, advanced developers who are implementing the IEventDispatcher
|
||||
interface need to use this constructor. If you are unable to extend the
|
||||
EventDispatcher class and must instead implement the IEventDispatcher
|
||||
interface, use this constructor to aggregate an instance of the
|
||||
EventDispatcher class.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The target object for events dispatched to the
|
||||
EventDispatcher object. This parameter is used when the
|
||||
EventDispatcher instance is aggregated by a class that
|
||||
implements IEventDispatcher; it is necessary so that the
|
||||
containing object can be the target for events. Do not use
|
||||
this parameter in simple cases in which a class extends
|
||||
EventDispatcher.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display3d.textures.cubetexture.html" class="tsd-signature-type">CubeTexture</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.display3d.textures.texturebase.html">TextureBase</a>.<a href="openfl.display3d.textures.texturebase.html#dispose">dispose</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/TextureBase.d.ts#L10">lib/openfl/display3D/textures/TextureBase.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadcompressedtexturefrombytearray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, byteArrayOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, async<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/CubeTexture.d.ts#L12">lib/openfl/display3D/textures/CubeTexture.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>byteArrayOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> async: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombitmapdata" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Bitmap<wbr>Data</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">: </span><a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a>, side<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, miplevel<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/CubeTexture.d.ts#L13">lib/openfl/display3D/textures/CubeTexture.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>source: <a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>side: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> miplevel: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombytearray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Byte<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, byteArrayOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, side<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, miplevel<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/CubeTexture.d.ts#L14">lib/openfl/display3D/textures/CubeTexture.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>byteArrayOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>side: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> miplevel: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html" class="tsd-kind-icon">Cube<wbr>Texture</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#uploadcompressedtexturefrombytearray" class="tsd-kind-icon">upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#uploadfrombitmapdata" class="tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html" class="tsd-kind-icon">Rectangle<wbr>Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html" class="tsd-kind-icon">Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-kind-icon">Texture<wbr>Base</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html" class="tsd-kind-icon">Video<wbr>Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
802
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.rectangletexture.html
generated
vendored
Normal file
802
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.rectangletexture.html
generated
vendored
Normal file
@@ -0,0 +1,802 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>RectangleTexture | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.rectangletexture.html">RectangleTexture</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class RectangleTexture</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">RectangleTexture</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#uploadfrombitmapdata" class="tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.rectangletexture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Rectangle<wbr>Texture<span class="tsd-signature-symbol">(</span>target<span class="tsd-signature-symbol">?: </span><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display3d.textures.rectangletexture.html" class="tsd-signature-type">RectangleTexture</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L50">lib/openfl/events/EventDispatcher.d.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Aggregates an instance of the EventDispatcher class.</p>
|
||||
</div>
|
||||
<p>The EventDispatcher class is generally used as a base class, which
|
||||
means that most developers do not need to use this constructor function.
|
||||
However, advanced developers who are implementing the IEventDispatcher
|
||||
interface need to use this constructor. If you are unable to extend the
|
||||
EventDispatcher class and must instead implement the IEventDispatcher
|
||||
interface, use this constructor to aggregate an instance of the
|
||||
EventDispatcher class.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The target object for events dispatched to the
|
||||
EventDispatcher object. This parameter is used when the
|
||||
EventDispatcher instance is aggregated by a class that
|
||||
implements IEventDispatcher; it is necessary so that the
|
||||
containing object can be the target for events. Do not use
|
||||
this parameter in simple cases in which a class extends
|
||||
EventDispatcher.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display3d.textures.rectangletexture.html" class="tsd-signature-type">RectangleTexture</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.display3d.textures.texturebase.html">TextureBase</a>.<a href="openfl.display3d.textures.texturebase.html#dispose">dispose</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/TextureBase.d.ts#L10">lib/openfl/display3D/textures/TextureBase.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombitmapdata" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Bitmap<wbr>Data</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">: </span><a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/RectangleTexture.d.ts#L12">lib/openfl/display3D/textures/RectangleTexture.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>source: <a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombytearray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Byte<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, byteArrayOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/RectangleTexture.d.ts#L13">lib/openfl/display3D/textures/RectangleTexture.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>byteArrayOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html" class="tsd-kind-icon">Cube<wbr>Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html" class="tsd-kind-icon">Rectangle<wbr>Texture</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#uploadfrombitmapdata" class="tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html" class="tsd-kind-icon">Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-kind-icon">Texture<wbr>Base</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html" class="tsd-kind-icon">Video<wbr>Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
841
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.texture.html
generated
vendored
Normal file
841
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.texture.html
generated
vendored
Normal file
@@ -0,0 +1,841 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Texture | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texture.html">Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Texture</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Texture</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.texture.html#uploadcompressedtexturefrombytearray" class="tsd-kind-icon">upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.texture.html#uploadfrombitmapdata" class="tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.texture.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Texture<span class="tsd-signature-symbol">(</span>target<span class="tsd-signature-symbol">?: </span><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display3d.textures.texture.html" class="tsd-signature-type">Texture</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L50">lib/openfl/events/EventDispatcher.d.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Aggregates an instance of the EventDispatcher class.</p>
|
||||
</div>
|
||||
<p>The EventDispatcher class is generally used as a base class, which
|
||||
means that most developers do not need to use this constructor function.
|
||||
However, advanced developers who are implementing the IEventDispatcher
|
||||
interface need to use this constructor. If you are unable to extend the
|
||||
EventDispatcher class and must instead implement the IEventDispatcher
|
||||
interface, use this constructor to aggregate an instance of the
|
||||
EventDispatcher class.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The target object for events dispatched to the
|
||||
EventDispatcher object. This parameter is used when the
|
||||
EventDispatcher instance is aggregated by a class that
|
||||
implements IEventDispatcher; it is necessary so that the
|
||||
containing object can be the target for events. Do not use
|
||||
this parameter in simple cases in which a class extends
|
||||
EventDispatcher.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display3d.textures.texture.html" class="tsd-signature-type">Texture</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.display3d.textures.texturebase.html">TextureBase</a>.<a href="openfl.display3d.textures.texturebase.html#dispose">dispose</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/TextureBase.d.ts#L10">lib/openfl/display3D/textures/TextureBase.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadcompressedtexturefrombytearray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, byteArrayOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, async<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/Texture.d.ts#L12">lib/openfl/display3D/textures/Texture.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>byteArrayOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> async: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombitmapdata" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Bitmap<wbr>Data</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">: </span><a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a>, miplevel<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/Texture.d.ts#L13">lib/openfl/display3D/textures/Texture.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>source: <a href="openfl.display.bitmapdata.html" class="tsd-signature-type">BitmapData</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> miplevel: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombytearray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Byte<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, byteArrayOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, miplevel<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/Texture.d.ts#L14">lib/openfl/display3D/textures/Texture.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>byteArrayOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> miplevel: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html" class="tsd-kind-icon">Cube<wbr>Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html" class="tsd-kind-icon">Rectangle<wbr>Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html" class="tsd-kind-icon">Texture</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#uploadcompressedtexturefrombytearray" class="tsd-kind-icon">upload<wbr>Compressed<wbr>Texture<wbr>From<wbr>Byte<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#uploadfrombitmapdata" class="tsd-kind-icon">upload<wbr>From<wbr>Bitmap<wbr>Data</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-kind-icon">Texture<wbr>Base</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html" class="tsd-kind-icon">Video<wbr>Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
758
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.texturebase.html
generated
vendored
Normal file
758
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.texturebase.html
generated
vendored
Normal file
@@ -0,0 +1,758 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>TextureBase | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texturebase.html">TextureBase</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class TextureBase</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">TextureBase</span>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.cubetexture.html" class="tsd-signature-type">CubeTexture</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.rectangletexture.html" class="tsd-signature-type">RectangleTexture</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texture.html" class="tsd-signature-type">Texture</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.videotexture.html" class="tsd-signature-type">VideoTexture</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.texturebase.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Texture<wbr>Base<span class="tsd-signature-symbol">(</span>target<span class="tsd-signature-symbol">?: </span><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L50">lib/openfl/events/EventDispatcher.d.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Aggregates an instance of the EventDispatcher class.</p>
|
||||
</div>
|
||||
<p>The EventDispatcher class is generally used as a base class, which
|
||||
means that most developers do not need to use this constructor function.
|
||||
However, advanced developers who are implementing the IEventDispatcher
|
||||
interface need to use this constructor. If you are unable to extend the
|
||||
EventDispatcher class and must instead implement the IEventDispatcher
|
||||
interface, use this constructor to aggregate an instance of the
|
||||
EventDispatcher class.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The target object for events dispatched to the
|
||||
EventDispatcher object. This parameter is used when the
|
||||
EventDispatcher instance is aggregated by a class that
|
||||
implements IEventDispatcher; it is necessary so that the
|
||||
containing object can be the target for events. Do not use
|
||||
this parameter in simple cases in which a class extends
|
||||
EventDispatcher.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/TextureBase.d.ts#L10">lib/openfl/display3D/textures/TextureBase.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html" class="tsd-kind-icon">Cube<wbr>Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html" class="tsd-kind-icon">Rectangle<wbr>Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html" class="tsd-kind-icon">Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-kind-icon">Texture<wbr>Base</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html" class="tsd-kind-icon">Video<wbr>Texture</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
808
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.videotexture.html
generated
vendored
Normal file
808
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.textures.videotexture.html
generated
vendored
Normal file
@@ -0,0 +1,808 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>VideoTexture | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.videotexture.html">VideoTexture</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class VideoTexture</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">VideoTexture</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#videoheight" class="tsd-kind-icon">video<wbr>Height</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#videowidth" class="tsd-kind-icon">video<wbr>Width</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#attachnetstream" class="tsd-kind-icon">attach<wbr>Net<wbr>Stream</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.display3d.textures.videotexture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Video<wbr>Texture<span class="tsd-signature-symbol">(</span>target<span class="tsd-signature-symbol">?: </span><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.display3d.textures.videotexture.html" class="tsd-signature-type">VideoTexture</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L50">lib/openfl/events/EventDispatcher.d.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Aggregates an instance of the EventDispatcher class.</p>
|
||||
</div>
|
||||
<p>The EventDispatcher class is generally used as a base class, which
|
||||
means that most developers do not need to use this constructor function.
|
||||
However, advanced developers who are implementing the IEventDispatcher
|
||||
interface need to use this constructor. If you are unable to extend the
|
||||
EventDispatcher class and must instead implement the IEventDispatcher
|
||||
interface, use this constructor to aggregate an instance of the
|
||||
EventDispatcher class.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The target object for events dispatched to the
|
||||
EventDispatcher object. This parameter is used when the
|
||||
EventDispatcher instance is aggregated by a class that
|
||||
implements IEventDispatcher; it is necessary so that the
|
||||
containing object can be the target for events. Do not use
|
||||
this parameter in simple cases in which a class extends
|
||||
EventDispatcher.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.display3d.textures.videotexture.html" class="tsd-signature-type">VideoTexture</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="videoheight" class="tsd-anchor"></a>
|
||||
<h3>video<wbr>Height</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">video<wbr>Height<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/VideoTexture.d.ts#L11">lib/openfl/display3D/textures/VideoTexture.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="videowidth" class="tsd-anchor"></a>
|
||||
<h3>video<wbr>Width</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">video<wbr>Width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/VideoTexture.d.ts#L12">lib/openfl/display3D/textures/VideoTexture.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="attachnetstream" class="tsd-anchor"></a>
|
||||
<h3>attach<wbr>Net<wbr>Stream</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">attach<wbr>Net<wbr>Stream<span class="tsd-signature-symbol">(</span>netStream<span class="tsd-signature-symbol">: </span><a href="openfl.net.netstream.html" class="tsd-signature-type">NetStream</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/VideoTexture.d.ts#L15">lib/openfl/display3D/textures/VideoTexture.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>netStream: <a href="openfl.net.netstream.html" class="tsd-signature-type">NetStream</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.display3d.textures.texturebase.html">TextureBase</a>.<a href="openfl.display3d.textures.texturebase.html#dispose">dispose</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/textures/TextureBase.d.ts#L10">lib/openfl/display3D/textures/TextureBase.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.cubetexture.html" class="tsd-kind-icon">Cube<wbr>Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.rectangletexture.html" class="tsd-kind-icon">Rectangle<wbr>Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texture.html" class="tsd-kind-icon">Texture</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-kind-icon">Texture<wbr>Base</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html" class="tsd-kind-icon">Video<wbr>Texture</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#videoheight" class="tsd-kind-icon">video<wbr>Height</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#videowidth" class="tsd-kind-icon">video<wbr>Width</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#attachnetstream" class="tsd-kind-icon">attach<wbr>Net<wbr>Stream</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.display3d.textures.videotexture.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
407
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.vertexbuffer3d.html
generated
vendored
Normal file
407
hGameTest/node_modules/openfl/docs/classes/openfl.display3d.vertexbuffer3d.html
generated
vendored
Normal file
@@ -0,0 +1,407 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>VertexBuffer3D | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.display3d.html">display3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.vertexbuffer3d.html">VertexBuffer3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class VertexBuffer3D</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">VertexBuffer3D</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.vertexbuffer3d.html#dispose" class="tsd-kind-icon">dispose</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.vertexbuffer3d.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.vertexbuffer3d.html#uploadfromtypedarray" class="tsd-kind-icon">upload<wbr>From<wbr>Typed<wbr>Array</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.display3d.vertexbuffer3d.html#uploadfromvector" class="tsd-kind-icon">upload<wbr>From<wbr>Vector</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="dispose" class="tsd-anchor"></a>
|
||||
<h3>dispose</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/VertexBuffer3D.d.ts#L12">lib/openfl/display3D/VertexBuffer3D.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfrombytearray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Byte<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a>, byteArrayOffset<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, startVertex<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, numVertices<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/VertexBuffer3D.d.ts#L13">lib/openfl/display3D/VertexBuffer3D.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.utils.bytearray.html" class="tsd-signature-type">ByteArray</a></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>byteArrayOffset: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>startVertex: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>numVertices: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfromtypedarray" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Typed<wbr>Array</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Typed<wbr>Array<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ArrayBufferView</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/VertexBuffer3D.d.ts#L14">lib/openfl/display3D/VertexBuffer3D.d.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <span class="tsd-signature-type">ArrayBufferView</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="uploadfromvector" class="tsd-anchor"></a>
|
||||
<h3>upload<wbr>From<wbr>Vector</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">upload<wbr>From<wbr>Vector<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span>, startVertex<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, numVertices<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/display3D/VertexBuffer3D.d.ts#L15">lib/openfl/display3D/VertexBuffer3D.d.ts:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>data: <a href="openfl.vector.html" class="tsd-signature-type">Vector</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">></span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>startVertex: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>numVertices: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.textures.html">textures</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dblendfactor.html" class="tsd-kind-icon">Context3DBlend<wbr>Factor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dbufferusage.html" class="tsd-kind-icon">Context3DBuffer<wbr>Usage</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dclearmask.html" class="tsd-kind-icon">Context3DClear<wbr>Mask</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dcomparemode.html" class="tsd-kind-icon">Context3DCompare<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dmipfilter.html" class="tsd-kind-icon">Context3DMip<wbr>Filter</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dprofile.html" class="tsd-kind-icon">Context3DProfile</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dprogramtype.html" class="tsd-kind-icon">Context3DProgram<wbr>Type</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3drendermode.html" class="tsd-kind-icon">Context3DRender<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dstencilaction.html" class="tsd-kind-icon">Context3DStencil<wbr>Action</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtexturefilter.html" class="tsd-kind-icon">Context3DTexture<wbr>Filter</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtextureformat.html" class="tsd-kind-icon">Context3DTexture<wbr>Format</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dtriangleface.html" class="tsd-kind-icon">Context3DTriangle<wbr>Face</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dvertexbufferformat.html" class="tsd-kind-icon">Context3DVertex<wbr>Buffer<wbr>Format</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.display3d.context3dwrapmode.html" class="tsd-kind-icon">Context3DWrap<wbr>Mode</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.context3d.html" class="tsd-kind-icon">Context3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.indexbuffer3d.html" class="tsd-kind-icon">Index<wbr>Buffer3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.program3d.html" class="tsd-kind-icon">Program3D</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.display3d.vertexbuffer3d.html" class="tsd-kind-icon">Vertex<wbr>Buffer3D</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.vertexbuffer3d.html#dispose" class="tsd-kind-icon">dispose</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.vertexbuffer3d.html#uploadfrombytearray" class="tsd-kind-icon">upload<wbr>From<wbr>Byte<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.vertexbuffer3d.html#uploadfromtypedarray" class="tsd-kind-icon">upload<wbr>From<wbr>Typed<wbr>Array</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.display3d.vertexbuffer3d.html#uploadfromvector" class="tsd-kind-icon">upload<wbr>From<wbr>Vector</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
374
hGameTest/node_modules/openfl/docs/classes/openfl.errors.argumenterror.html
generated
vendored
Normal file
374
hGameTest/node_modules/openfl/docs/classes/openfl.errors.argumenterror.html
generated
vendored
Normal file
@@ -0,0 +1,374 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>ArgumentError | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.argumenterror.html">ArgumentError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class ArgumentError</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.error.html" class="tsd-signature-type">Error</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">ArgumentError</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.argumenterror.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.argumenterror.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.argumenterror.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.argumenterror.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.argumenterror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Argument<wbr>Error<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span>, id<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.argumenterror.html" class="tsd-signature-type">ArgumentError</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> id: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.argumenterror.html" class="tsd-signature-type">ArgumentError</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#errorid">errorID</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#message">message</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#getstacktrace">getStackTrace</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
394
hGameTest/node_modules/openfl/docs/classes/openfl.errors.eoferror.html
generated
vendored
Normal file
394
hGameTest/node_modules/openfl/docs/classes/openfl.errors.eoferror.html
generated
vendored
Normal file
@@ -0,0 +1,394 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>EOFError | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.eoferror.html">EOFError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class EOFError</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>An EOFError exception is thrown when you attempt to read past the end of
|
||||
the available data. For example, an EOFError is thrown when one of the read
|
||||
methods in the IDataInput interface is called and there is insufficient
|
||||
data to satisfy the read request.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-signature-type">IOError</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">EOFError</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.errors.eoferror.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.eoferror.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.eoferror.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.eoferror.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.eoferror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new EOFError<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span>, id<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.eoferror.html" class="tsd-signature-type">EOFError</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.errors.ioerror.html">IOError</a>.<a href="openfl.errors.ioerror.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/EOFError.d.ts#L13">lib/openfl/errors/EOFError.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Creates a new EOFError object.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>A string associated with the error object.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> id: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.eoferror.html" class="tsd-signature-type">EOFError</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#errorid">errorID</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#message">message</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#getstacktrace">getStackTrace</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
384
hGameTest/node_modules/openfl/docs/classes/openfl.errors.error.html
generated
vendored
Normal file
384
hGameTest/node_modules/openfl/docs/classes/openfl.errors.error.html
generated
vendored
Normal file
@@ -0,0 +1,384 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Error | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.error.html">Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class Error</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">Error</span>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-signature-type">ArgumentError</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-signature-type">IOError</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-signature-type">IllegalOperationError</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-signature-type">RangeError</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-signature-type">SecurityError</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-signature-type">TypeError</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.errors.error.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.errors.error.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.errors.error.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="openfl.errors.error.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.errors.error.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Error<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span>, id<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.error.html" class="tsd-signature-type">Error</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> id: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.error.html" class="tsd-signature-type">Error</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.errors.error.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.errors.error.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.errors.error.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.errors.error.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.errors.error.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
405
hGameTest/node_modules/openfl/docs/classes/openfl.errors.illegaloperationerror.html
generated
vendored
Normal file
405
hGameTest/node_modules/openfl/docs/classes/openfl.errors.illegaloperationerror.html
generated
vendored
Normal file
@@ -0,0 +1,405 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IllegalOperationError | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.illegaloperationerror.html">IllegalOperationError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IllegalOperationError</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The IllegalOperationError exception is thrown when a method is not
|
||||
implemented or the implementation doesn't cover the current usage.</p>
|
||||
</div>
|
||||
<p>Examples of illegal operation error exceptions include:</p>
|
||||
<ul>
|
||||
<li>A base class, such as DisplayObjectContainer, provides more
|
||||
functionality than a Stage can support(such as masks)</li>
|
||||
<li>Certain accessibility methods are called when the player is compiled
|
||||
without accessibility support</li>
|
||||
<li>The mms.cfg setting prohibits a FileReference action</li>
|
||||
<li>ActionScript tries to run a <code>FileReference.browse()</code> call
|
||||
when a browse dialog box is already open</li>
|
||||
<li>ActionScript tries to use an unsupported protocol for a FileReference
|
||||
object(such as FTP)
|
||||
<li product="flash">Authoring-only features are invoked from a run-time
|
||||
player
|
||||
<li product="flash">An attempt is made to set the name of a Timeline-placed
|
||||
object</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.error.html" class="tsd-signature-type">Error</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IllegalOperationError</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.errors.illegaloperationerror.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.illegaloperationerror.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.illegaloperationerror.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.illegaloperationerror.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.illegaloperationerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Illegal<wbr>Operation<wbr>Error<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.illegaloperationerror.html" class="tsd-signature-type">IllegalOperationError</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/IllegalOperationError.d.ts#L29">lib/openfl/errors/IllegalOperationError.d.ts:29</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Creates a new IllegalOperationError object.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>A string associated with the error object.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.illegaloperationerror.html" class="tsd-signature-type">IllegalOperationError</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#errorid">errorID</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#message">message</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#getstacktrace">getStackTrace</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
376
hGameTest/node_modules/openfl/docs/classes/openfl.errors.ioerror.html
generated
vendored
Normal file
376
hGameTest/node_modules/openfl/docs/classes/openfl.errors.ioerror.html
generated
vendored
Normal file
@@ -0,0 +1,376 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IOError | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.ioerror.html">IOError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IOError</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.error.html" class="tsd-signature-type">Error</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IOError</span>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-signature-type">EOFError</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.errors.ioerror.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.ioerror.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.ioerror.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.ioerror.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.ioerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new IOError<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.ioerror.html" class="tsd-signature-type">IOError</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/IOError.d.ts#L7">lib/openfl/errors/IOError.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.ioerror.html" class="tsd-signature-type">IOError</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#errorid">errorID</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#message">message</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#getstacktrace">getStackTrace</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
371
hGameTest/node_modules/openfl/docs/classes/openfl.errors.rangeerror.html
generated
vendored
Normal file
371
hGameTest/node_modules/openfl/docs/classes/openfl.errors.rangeerror.html
generated
vendored
Normal file
@@ -0,0 +1,371 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>RangeError | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.rangeerror.html">RangeError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class RangeError</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.error.html" class="tsd-signature-type">Error</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">RangeError</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.errors.rangeerror.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.rangeerror.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.rangeerror.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.rangeerror.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.rangeerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Range<wbr>Error<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.rangeerror.html" class="tsd-signature-type">RangeError</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/RangeError.d.ts#L7">lib/openfl/errors/RangeError.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.rangeerror.html" class="tsd-signature-type">RangeError</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#errorid">errorID</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#message">message</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#getstacktrace">getStackTrace</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
371
hGameTest/node_modules/openfl/docs/classes/openfl.errors.securityerror.html
generated
vendored
Normal file
371
hGameTest/node_modules/openfl/docs/classes/openfl.errors.securityerror.html
generated
vendored
Normal file
@@ -0,0 +1,371 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>SecurityError | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.securityerror.html">SecurityError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class SecurityError</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.error.html" class="tsd-signature-type">Error</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">SecurityError</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.errors.securityerror.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.securityerror.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.securityerror.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.securityerror.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.securityerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Security<wbr>Error<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.securityerror.html" class="tsd-signature-type">SecurityError</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/SecurityError.d.ts#L7">lib/openfl/errors/SecurityError.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.securityerror.html" class="tsd-signature-type">SecurityError</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#errorid">errorID</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#message">message</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#getstacktrace">getStackTrace</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
371
hGameTest/node_modules/openfl/docs/classes/openfl.errors.typeerror.html
generated
vendored
Normal file
371
hGameTest/node_modules/openfl/docs/classes/openfl.errors.typeerror.html
generated
vendored
Normal file
@@ -0,0 +1,371 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>TypeError | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.errors.html">errors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.errors.typeerror.html">TypeError</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class TypeError</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.errors.error.html" class="tsd-signature-type">Error</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">TypeError</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.errors.typeerror.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Properties</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.typeerror.html#errorid" class="tsd-kind-icon">errorID</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.typeerror.html#message" class="tsd-kind-icon">message</a></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.typeerror.html#name" class="tsd-kind-icon">name</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.errors.typeerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Type<wbr>Error<span class="tsd-signature-symbol">(</span>message<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.errors.typeerror.html" class="tsd-signature-type">TypeError</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/TypeError.d.ts#L7">lib/openfl/errors/TypeError.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> message: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.errors.typeerror.html" class="tsd-signature-type">TypeError</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Properties</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="errorid" class="tsd-anchor"></a>
|
||||
<h3>errorID</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">errorID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#errorid">errorID</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L11">lib/openfl/errors/Error.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="message" class="tsd-anchor"></a>
|
||||
<h3>message</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#message">message</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L12">lib/openfl/errors/Error.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="name" class="tsd-anchor"></a>
|
||||
<h3>name</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L13">lib/openfl/errors/Error.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="getstacktrace" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Stack<wbr>Trace</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Stack<wbr>Trace<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.errors.error.html">Error</a>.<a href="openfl.errors.error.html#getstacktrace">getStackTrace</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/errors/Error.d.ts#L22">lib/openfl/errors/Error.d.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.argumenterror.html" class="tsd-kind-icon">Argument<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.eoferror.html" class="tsd-kind-icon">EOFError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.error.html" class="tsd-kind-icon">Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.ioerror.html" class="tsd-kind-icon">IOError</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.illegaloperationerror.html" class="tsd-kind-icon">Illegal<wbr>Operation<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.rangeerror.html" class="tsd-kind-icon">Range<wbr>Error</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.securityerror.html" class="tsd-kind-icon">Security<wbr>Error</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html" class="tsd-kind-icon">Type<wbr>Error</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html#errorid" class="tsd-kind-icon">errorID</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html#message" class="tsd-kind-icon">message</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html#name" class="tsd-kind-icon">name</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.errors.typeerror.html#getstacktrace" class="tsd-kind-icon">get<wbr>Stack<wbr>Trace</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
1653
hGameTest/node_modules/openfl/docs/classes/openfl.events.accelerometerevent.html
generated
vendored
Normal file
1653
hGameTest/node_modules/openfl/docs/classes/openfl.events.accelerometerevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1507
hGameTest/node_modules/openfl/docs/classes/openfl.events.activityevent.html
generated
vendored
Normal file
1507
hGameTest/node_modules/openfl/docs/classes/openfl.events.activityevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1618
hGameTest/node_modules/openfl/docs/classes/openfl.events.asyncerrorevent.html
generated
vendored
Normal file
1618
hGameTest/node_modules/openfl/docs/classes/openfl.events.asyncerrorevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1585
hGameTest/node_modules/openfl/docs/classes/openfl.events.dataevent.html
generated
vendored
Normal file
1585
hGameTest/node_modules/openfl/docs/classes/openfl.events.dataevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1662
hGameTest/node_modules/openfl/docs/classes/openfl.events.errorevent.html
generated
vendored
Normal file
1662
hGameTest/node_modules/openfl/docs/classes/openfl.events.errorevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1523
hGameTest/node_modules/openfl/docs/classes/openfl.events.event.html
generated
vendored
Normal file
1523
hGameTest/node_modules/openfl/docs/classes/openfl.events.event.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
883
hGameTest/node_modules/openfl/docs/classes/openfl.events.eventdispatcher.html
generated
vendored
Normal file
883
hGameTest/node_modules/openfl/docs/classes/openfl.events.eventdispatcher.html
generated
vendored
Normal file
@@ -0,0 +1,883 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>EventDispatcher | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.events.html">events</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.events.eventdispatcher.html">EventDispatcher</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class EventDispatcher</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The EventDispatcher class is the base class for all classes that dispatch
|
||||
events. The EventDispatcher class implements the IEventDispatcher interface
|
||||
and is the base class for the DisplayObject class. The EventDispatcher
|
||||
class allows any object on the display list to be an event target and as
|
||||
such, to use the methods of the IEventDispatcher interface.</p>
|
||||
</div>
|
||||
<p>Event targets are an important part of the Flash<sup>®</sup> Player and
|
||||
Adobe<sup>®</sup> AIR<sup>®</sup> event model. The event target serves as
|
||||
the focal point for how events flow through the display list hierarchy.
|
||||
When an event such as a mouse click or a keypress occurs, Flash Player or
|
||||
the AIR application dispatches an event object into the event flow from the
|
||||
root of the display list. The event object then makes its way through the
|
||||
display list until it reaches the event target, at which point it begins
|
||||
its return trip through the display list. This round-trip journey to the
|
||||
event target is conceptually divided into three phases: the capture phase
|
||||
comprises the journey from the root to the last node before the event
|
||||
target's node, the target phase comprises only the event target node, and
|
||||
the bubbling phase comprises any subsequent nodes encountered on the return
|
||||
trip to the root of the display list.</p>
|
||||
<p>In general, the easiest way for a user-defined class to gain event
|
||||
dispatching capabilities is to extend EventDispatcher. If this is
|
||||
impossible(that is, if the class is already extending another class), you
|
||||
can instead implement the IEventDispatcher interface, create an
|
||||
EventDispatcher member, and write simple hooks to route calls into the
|
||||
aggregated EventDispatcher.</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>:event</dt>
|
||||
<dd><p>activate [broadcast event] Dispatched when the Flash Player or AIR
|
||||
application gains operating system focus and becomes
|
||||
active. This event is a broadcast event, which means that
|
||||
it is dispatched by all EventDispatcher objects with a
|
||||
listener registered for this event. For more information
|
||||
about broadcast events, see the DisplayObject class.</p>
|
||||
</dd>
|
||||
<dt>:event</dt>
|
||||
<dd><p>deactivate [broadcast event] Dispatched when the Flash Player or AIR
|
||||
application operating loses system focus and is becoming
|
||||
inactive. This event is a broadcast event, which means
|
||||
that it is dispatched by all EventDispatcher objects with
|
||||
a listener registered for this event. For more
|
||||
information about broadcast events, see the DisplayObject
|
||||
class.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">EventDispatcher</span>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.events.uncaughterrorevents.html" class="tsd-signature-type">UncaughtErrorEvents</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.loaderinfo.html" class="tsd-signature-type">LoaderInfo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.netconnection.html" class="tsd-signature-type">NetConnection</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.netstream.html" class="tsd-signature-type">NetStream</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display3d.context3d.html" class="tsd-signature-type">Context3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.stage3d.html" class="tsd-signature-type">Stage3D</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.displayobject.html" class="tsd-signature-type">DisplayObject</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.framelabel.html" class="tsd-signature-type">FrameLabel</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.display.shaderjob.html" class="tsd-signature-type">ShaderJob</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.ui.gameinputcontrol.html" class="tsd-signature-type">GameInputControl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.media.soundchannel.html" class="tsd-signature-type">SoundChannel</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.media.sound.html" class="tsd-signature-type">Sound</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.filereference.html" class="tsd-signature-type">FileReference</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.filereferencelist.html" class="tsd-signature-type">FileReferenceList</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.sharedobject.html" class="tsd-signature-type">SharedObject</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.socket.html" class="tsd-signature-type">Socket</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.urlloader.html" class="tsd-signature-type">URLLoader</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.urlstream.html" class="tsd-signature-type">URLStream</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.net.xmlsocket.html" class="tsd-signature-type">XMLSocket</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.sensors.accelerometer.html" class="tsd-signature-type">Accelerometer</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.ui.gameinput.html" class="tsd-signature-type">GameInput</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.utils.timer.html" class="tsd-signature-type">Timer</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="openfl.events.eventdispatcher.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.eventdispatcher.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.eventdispatcher.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.eventdispatcher.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.eventdispatcher.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.eventdispatcher.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.eventdispatcher.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Event<wbr>Dispatcher<span class="tsd-signature-symbol">(</span>target<span class="tsd-signature-symbol">?: </span><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L50">lib/openfl/events/EventDispatcher.d.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Aggregates an instance of the EventDispatcher class.</p>
|
||||
</div>
|
||||
<p>The EventDispatcher class is generally used as a base class, which
|
||||
means that most developers do not need to use this constructor function.
|
||||
However, advanced developers who are implementing the IEventDispatcher
|
||||
interface need to use this constructor. If you are unable to extend the
|
||||
EventDispatcher class and must instead implement the IEventDispatcher
|
||||
interface, use this constructor to aggregate an instance of the
|
||||
EventDispatcher class.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> target: <a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>The target object for events dispatched to the
|
||||
EventDispatcher object. This parameter is used when the
|
||||
EventDispatcher instance is aggregated by a class that
|
||||
implements IEventDispatcher; it is necessary so that the
|
||||
containing object can be the target for events. Do not use
|
||||
this parameter in simple cases in which a class extends
|
||||
EventDispatcher.</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.events.eventphase.html" class="tsd-kind-icon">Event<wbr>Phase</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.accelerometerevent.html" class="tsd-kind-icon">Accelerometer<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.activityevent.html" class="tsd-kind-icon">Activity<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.asyncerrorevent.html" class="tsd-kind-icon">Async<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.dataevent.html" class="tsd-kind-icon">Data<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.errorevent.html" class="tsd-kind-icon">Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.event.html" class="tsd-kind-icon">Event</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-kind-icon">Event<wbr>Dispatcher</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.focusevent.html" class="tsd-kind-icon">Focus<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.fullscreenevent.html" class="tsd-kind-icon">Full<wbr>Screen<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.gameinputevent.html" class="tsd-kind-icon">Game<wbr>Input<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.httpstatusevent.html" class="tsd-kind-icon">HTTPStatus<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html" class="tsd-kind-icon">IEvent<wbr>Dispatcher</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.ioerrorevent.html" class="tsd-kind-icon">IOError<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.keyboardevent.html" class="tsd-kind-icon">Keyboard<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.mouseevent.html" class="tsd-kind-icon">Mouse<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.netstatusevent.html" class="tsd-kind-icon">Net<wbr>Status<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.progressevent.html" class="tsd-kind-icon">Progress<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.sampledataevent.html" class="tsd-kind-icon">Sample<wbr>Data<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.securityerrorevent.html" class="tsd-kind-icon">Security<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.textevent.html" class="tsd-kind-icon">Text<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.timerevent.html" class="tsd-kind-icon">Timer<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.touchevent.html" class="tsd-kind-icon">Touch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevent.html" class="tsd-kind-icon">Uncaught<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html" class="tsd-kind-icon">Uncaught<wbr>Error<wbr>Events</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
1695
hGameTest/node_modules/openfl/docs/classes/openfl.events.focusevent.html
generated
vendored
Normal file
1695
hGameTest/node_modules/openfl/docs/classes/openfl.events.focusevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1563
hGameTest/node_modules/openfl/docs/classes/openfl.events.fullscreenevent.html
generated
vendored
Normal file
1563
hGameTest/node_modules/openfl/docs/classes/openfl.events.fullscreenevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1557
hGameTest/node_modules/openfl/docs/classes/openfl.events.gameinputevent.html
generated
vendored
Normal file
1557
hGameTest/node_modules/openfl/docs/classes/openfl.events.gameinputevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1665
hGameTest/node_modules/openfl/docs/classes/openfl.events.httpstatusevent.html
generated
vendored
Normal file
1665
hGameTest/node_modules/openfl/docs/classes/openfl.events.httpstatusevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
542
hGameTest/node_modules/openfl/docs/classes/openfl.events.ieventdispatcher.html
generated
vendored
Normal file
542
hGameTest/node_modules/openfl/docs/classes/openfl.events.ieventdispatcher.html
generated
vendored
Normal file
@@ -0,0 +1,542 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>IEventDispatcher | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.events.html">events</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.events.ieventdispatcher.html">IEventDispatcher</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class IEventDispatcher</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">IEventDispatcher</span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implemented by</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.sensors.accelerometer.html" class="tsd-signature-type">Accelerometer</a></li>
|
||||
<li><a href="openfl.display.bitmap.html" class="tsd-signature-type">Bitmap</a></li>
|
||||
<li><a href="openfl.display3d.context3d.html" class="tsd-signature-type">Context3D</a></li>
|
||||
<li><a href="openfl.display3d.textures.cubetexture.html" class="tsd-signature-type">CubeTexture</a></li>
|
||||
<li><a href="openfl.display.domsprite.html" class="tsd-signature-type">DOMSprite</a></li>
|
||||
<li><a href="openfl.display.displayobject.html" class="tsd-signature-type">DisplayObject</a></li>
|
||||
<li><a href="openfl.display.displayobjectcontainer.html" class="tsd-signature-type">DisplayObjectContainer</a></li>
|
||||
<li><a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a></li>
|
||||
<li><a href="openfl.display.fps.html" class="tsd-signature-type">FPS</a></li>
|
||||
<li><a href="openfl.net.filereference.html" class="tsd-signature-type">FileReference</a></li>
|
||||
<li><a href="openfl.net.filereferencelist.html" class="tsd-signature-type">FileReferenceList</a></li>
|
||||
<li><a href="openfl.display.framelabel.html" class="tsd-signature-type">FrameLabel</a></li>
|
||||
<li><a href="openfl.ui.gameinput.html" class="tsd-signature-type">GameInput</a></li>
|
||||
<li><a href="openfl.ui.gameinputcontrol.html" class="tsd-signature-type">GameInputControl</a></li>
|
||||
<li><a href="openfl.display.interactiveobject.html" class="tsd-signature-type">InteractiveObject</a></li>
|
||||
<li><a href="openfl.display.loader.html" class="tsd-signature-type">Loader</a></li>
|
||||
<li><a href="openfl.display.loaderinfo.html" class="tsd-signature-type">LoaderInfo</a></li>
|
||||
<li><a href="openfl.display.movieclip.html" class="tsd-signature-type">MovieClip</a></li>
|
||||
<li><a href="openfl.net.netconnection.html" class="tsd-signature-type">NetConnection</a></li>
|
||||
<li><a href="openfl.net.netstream.html" class="tsd-signature-type">NetStream</a></li>
|
||||
<li><a href="openfl.display3d.textures.rectangletexture.html" class="tsd-signature-type">RectangleTexture</a></li>
|
||||
<li><a href="openfl.display.shaderjob.html" class="tsd-signature-type">ShaderJob</a></li>
|
||||
<li><a href="openfl.display.shape.html" class="tsd-signature-type">Shape</a></li>
|
||||
<li><a href="openfl.net.sharedobject.html" class="tsd-signature-type">SharedObject</a></li>
|
||||
<li><a href="openfl.display.simplebutton.html" class="tsd-signature-type">SimpleButton</a></li>
|
||||
<li><a href="openfl.net.socket.html" class="tsd-signature-type">Socket</a></li>
|
||||
<li><a href="openfl.media.sound.html" class="tsd-signature-type">Sound</a></li>
|
||||
<li><a href="openfl.media.soundchannel.html" class="tsd-signature-type">SoundChannel</a></li>
|
||||
<li><a href="openfl.display.sprite.html" class="tsd-signature-type">Sprite</a></li>
|
||||
<li><a href="openfl.display.stage.html" class="tsd-signature-type">Stage</a></li>
|
||||
<li><a href="openfl.display.stage3d.html" class="tsd-signature-type">Stage3D</a></li>
|
||||
<li><a href="openfl.text.textfield.html" class="tsd-signature-type">TextField</a></li>
|
||||
<li><a href="openfl.display3d.textures.texture.html" class="tsd-signature-type">Texture</a></li>
|
||||
<li><a href="openfl.display3d.textures.texturebase.html" class="tsd-signature-type">TextureBase</a></li>
|
||||
<li><a href="openfl.display.tilemap.html" class="tsd-signature-type">Tilemap</a></li>
|
||||
<li><a href="openfl.utils.timer.html" class="tsd-signature-type">Timer</a></li>
|
||||
<li><a href="openfl.net.urlloader.html" class="tsd-signature-type">URLLoader</a></li>
|
||||
<li><a href="openfl.net.urlstream.html" class="tsd-signature-type">URLStream</a></li>
|
||||
<li><a href="openfl.events.uncaughterrorevents.html" class="tsd-signature-type">UncaughtErrorEvents</a></li>
|
||||
<li><a href="openfl.media.video.html" class="tsd-signature-type">Video</a></li>
|
||||
<li><a href="openfl.display3d.textures.videotexture.html" class="tsd-signature-type">VideoTexture</a></li>
|
||||
<li><a href="openfl.net.xmlsocket.html" class="tsd-signature-type">XMLSocket</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.ieventdispatcher.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.ieventdispatcher.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.ieventdispatcher.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.ieventdispatcher.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="openfl.events.ieventdispatcher.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/IEventDispatcher.d.ts#L9">lib/openfl/events/IEventDispatcher.d.ts:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">any</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/IEventDispatcher.d.ts#L10">lib/openfl/events/IEventDispatcher.d.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/IEventDispatcher.d.ts#L11">lib/openfl/events/IEventDispatcher.d.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/IEventDispatcher.d.ts#L12">lib/openfl/events/IEventDispatcher.d.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">any</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/IEventDispatcher.d.ts#L13">lib/openfl/events/IEventDispatcher.d.ts:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.events.eventphase.html" class="tsd-kind-icon">Event<wbr>Phase</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.accelerometerevent.html" class="tsd-kind-icon">Accelerometer<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.activityevent.html" class="tsd-kind-icon">Activity<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.asyncerrorevent.html" class="tsd-kind-icon">Async<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.dataevent.html" class="tsd-kind-icon">Data<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.errorevent.html" class="tsd-kind-icon">Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.event.html" class="tsd-kind-icon">Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-kind-icon">Event<wbr>Dispatcher</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.focusevent.html" class="tsd-kind-icon">Focus<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.fullscreenevent.html" class="tsd-kind-icon">Full<wbr>Screen<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.gameinputevent.html" class="tsd-kind-icon">Game<wbr>Input<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.httpstatusevent.html" class="tsd-kind-icon">HTTPStatus<wbr>Event</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html" class="tsd-kind-icon">IEvent<wbr>Dispatcher</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.ioerrorevent.html" class="tsd-kind-icon">IOError<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.keyboardevent.html" class="tsd-kind-icon">Keyboard<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.mouseevent.html" class="tsd-kind-icon">Mouse<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.netstatusevent.html" class="tsd-kind-icon">Net<wbr>Status<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.progressevent.html" class="tsd-kind-icon">Progress<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.sampledataevent.html" class="tsd-kind-icon">Sample<wbr>Data<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.securityerrorevent.html" class="tsd-kind-icon">Security<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.textevent.html" class="tsd-kind-icon">Text<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.timerevent.html" class="tsd-kind-icon">Timer<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.touchevent.html" class="tsd-kind-icon">Touch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevent.html" class="tsd-kind-icon">Uncaught<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html" class="tsd-kind-icon">Uncaught<wbr>Error<wbr>Events</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
1666
hGameTest/node_modules/openfl/docs/classes/openfl.events.ioerrorevent.html
generated
vendored
Normal file
1666
hGameTest/node_modules/openfl/docs/classes/openfl.events.ioerrorevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1782
hGameTest/node_modules/openfl/docs/classes/openfl.events.keyboardevent.html
generated
vendored
Normal file
1782
hGameTest/node_modules/openfl/docs/classes/openfl.events.keyboardevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2255
hGameTest/node_modules/openfl/docs/classes/openfl.events.mouseevent.html
generated
vendored
Normal file
2255
hGameTest/node_modules/openfl/docs/classes/openfl.events.mouseevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1502
hGameTest/node_modules/openfl/docs/classes/openfl.events.netstatusevent.html
generated
vendored
Normal file
1502
hGameTest/node_modules/openfl/docs/classes/openfl.events.netstatusevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1613
hGameTest/node_modules/openfl/docs/classes/openfl.events.progressevent.html
generated
vendored
Normal file
1613
hGameTest/node_modules/openfl/docs/classes/openfl.events.progressevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1513
hGameTest/node_modules/openfl/docs/classes/openfl.events.sampledataevent.html
generated
vendored
Normal file
1513
hGameTest/node_modules/openfl/docs/classes/openfl.events.sampledataevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1673
hGameTest/node_modules/openfl/docs/classes/openfl.events.securityerrorevent.html
generated
vendored
Normal file
1673
hGameTest/node_modules/openfl/docs/classes/openfl.events.securityerrorevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1595
hGameTest/node_modules/openfl/docs/classes/openfl.events.textevent.html
generated
vendored
Normal file
1595
hGameTest/node_modules/openfl/docs/classes/openfl.events.textevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1576
hGameTest/node_modules/openfl/docs/classes/openfl.events.timerevent.html
generated
vendored
Normal file
1576
hGameTest/node_modules/openfl/docs/classes/openfl.events.timerevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2132
hGameTest/node_modules/openfl/docs/classes/openfl.events.touchevent.html
generated
vendored
Normal file
2132
hGameTest/node_modules/openfl/docs/classes/openfl.events.touchevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1615
hGameTest/node_modules/openfl/docs/classes/openfl.events.uncaughterrorevent.html
generated
vendored
Normal file
1615
hGameTest/node_modules/openfl/docs/classes/openfl.events.uncaughterrorevent.html
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
746
hGameTest/node_modules/openfl/docs/classes/openfl.events.uncaughterrorevents.html
generated
vendored
Normal file
746
hGameTest/node_modules/openfl/docs/classes/openfl.events.uncaughterrorevents.html
generated
vendored
Normal file
@@ -0,0 +1,746 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>UncaughtErrorEvents | openfl</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">openfl</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../index.html">openfl</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../modules/openfl.events.html">events</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="openfl.events.uncaughterrorevents.html">UncaughtErrorEvents</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Class UncaughtErrorEvents</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container container-main">
|
||||
<div class="row">
|
||||
<div class="col-8 col-content">
|
||||
<section class="tsd-panel tsd-hierarchy">
|
||||
<h3>Hierarchy</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-signature-type">EventDispatcher</a>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li>
|
||||
<span class="target">UncaughtErrorEvents</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel">
|
||||
<h3>Implements</h3>
|
||||
<ul class="tsd-hierarchy">
|
||||
<li><a href="openfl.events.ieventdispatcher.html" class="tsd-signature-type">IEventDispatcher</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-index-group">
|
||||
<h2>Index</h2>
|
||||
<section class="tsd-panel tsd-index-panel">
|
||||
<div class="tsd-index-content">
|
||||
<section class="tsd-index-section tsd-is-external">
|
||||
<h3>Constructors</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="openfl.events.uncaughterrorevents.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-index-section tsd-is-inherited tsd-is-external">
|
||||
<h3>Methods</h3>
|
||||
<ul class="tsd-index-list">
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.events.uncaughterrorevents.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.events.uncaughterrorevents.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.events.uncaughterrorevents.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.events.uncaughterrorevents.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.events.uncaughterrorevents.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="openfl.events.uncaughterrorevents.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-external">
|
||||
<h2>Constructors</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a name="constructor" class="tsd-anchor"></a>
|
||||
<h3>constructor</h3>
|
||||
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">new <wbr>Uncaught<wbr>Error<wbr>Events<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="openfl.events.uncaughterrorevents.html" class="tsd-signature-type">UncaughtErrorEvents</a></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/UncaughtErrorEvents.d.ts#L7">lib/openfl/events/UncaughtErrorEvents.d.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <a href="openfl.events.uncaughterrorevents.html" class="tsd-signature-type">UncaughtErrorEvents</a></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
|
||||
<h2>Methods</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="addeventlistener" class="tsd-anchor"></a>
|
||||
<h3>add<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, priority<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, useWeakReference<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#addeventlistener">addEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L168">lib/openfl/events/EventDispatcher.d.ts:168</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Registers an event listener object with an EventDispatcher object so that
|
||||
the listener receives notification of an event. You can register event
|
||||
listeners on all nodes in the display list for a specific type of event,
|
||||
phase, and priority.</p>
|
||||
</div>
|
||||
<p>After you successfully register an event listener, you cannot change
|
||||
its priority through additional calls to <code>addEventListener()</code>.
|
||||
To change a listener's priority, you must first call
|
||||
<code>removeListener()</code>. Then you can register the listener again
|
||||
with the new priority level.</p>
|
||||
<p>Keep in mind that after the listener is registered, subsequent calls to
|
||||
<code>addEventListener()</code> with a different <code>type</code> or
|
||||
<code>useCapture</code> value result in the creation of a separate
|
||||
listener registration. For example, if you first register a listener with
|
||||
<code>useCapture</code> set to <code>true</code>, it listens only during
|
||||
the capture phase. If you call <code>addEventListener()</code> again using
|
||||
the same listener object, but with <code>useCapture</code> set to
|
||||
<code>false</code>, you have two separate listeners: one that listens
|
||||
during the capture phase and another that listens during the target and
|
||||
bubbling phases.</p>
|
||||
<p>You cannot register an event listener for only the target phase or the
|
||||
bubbling phase. Those phases are coupled during registration because
|
||||
bubbling applies only to the ancestors of the target node.</p>
|
||||
<p>If you no longer need an event listener, remove it by calling
|
||||
<code>removeEventListener()</code>, or memory problems could result. Event
|
||||
listeners are not automatically removed from memory because the garbage
|
||||
collector does not remove the listener as long as the dispatching object
|
||||
exists(unless the <code>useWeakReference</code> parameter is set to
|
||||
<code>true</code>).</p>
|
||||
<p>Copying an EventDispatcher instance does not copy the event listeners
|
||||
attached to it.(If your newly created node needs an event listener, you
|
||||
must attach the listener after creating the node.) However, if you move an
|
||||
EventDispatcher instance, the event listeners attached to it move along
|
||||
with it.</p>
|
||||
<p>If the event listener is being registered on a node while an event is
|
||||
being processed on this node, the event listener is not triggered during
|
||||
the current phase but can be triggered during a later phase in the event
|
||||
flow, such as the bubbling phase.</p>
|
||||
<p>If an event listener is removed from a node while an event is being
|
||||
processed on the node, it is still triggered by the current actions. After
|
||||
it is removed, the event listener is never invoked again(unless
|
||||
registered again for future processing).</p>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>ArgumentError The <code>listener</code> specified is not a
|
||||
function.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the listener works in the
|
||||
capture phase or the target and bubbling phases.
|
||||
If <code>useCapture</code> is set to
|
||||
<code>true</code>, the listener processes the
|
||||
event only during the capture phase and not in the
|
||||
target or bubbling phase. If
|
||||
<code>useCapture</code> is <code>false</code>, the
|
||||
listener processes the event only during the
|
||||
target or bubbling phase. To listen for the event
|
||||
in all three phases, call
|
||||
<code>addEventListener</code> twice, once with
|
||||
<code>useCapture</code> set to <code>true</code>,
|
||||
then again with <code>useCapture</code> set to
|
||||
<code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> priority: <span class="tsd-signature-type">number</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The priority level of the event listener. The
|
||||
priority is designated by a signed 32-bit integer.
|
||||
The higher the number, the higher the priority.
|
||||
All listeners with priority <em>n</em> are processed
|
||||
before listeners of priority <em>n</em>-1. If two or
|
||||
more listeners share the same priority, they are
|
||||
processed in the order in which they were added.
|
||||
The default priority is 0.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useWeakReference: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Determines whether the reference to the listener
|
||||
is strong or weak. A strong reference(the
|
||||
default) prevents your listener from being
|
||||
garbage-collected. A weak reference does not.</p>
|
||||
<pre><code> Class-level member functions are not subject to
|
||||
garbage collection, so you can <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> <span class="hljs-keyword">class</span>-<span class="hljs-keyword">level</span> <span class="hljs-keyword">member</span> functions <span class="hljs-keyword">without</span>
|
||||
subjecting them <span class="hljs-keyword">to</span> garbage collection. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">set</span>
|
||||
<span class="hljs-string">`useWeakReference`</span> <span class="hljs-keyword">to</span> <span class="hljs-string">`true`</span>
|
||||
<span class="hljs-keyword">for</span> a listener that <span class="hljs-keyword">is</span> a <span class="hljs-keyword">nested</span> <span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>,
|
||||
the <span class="hljs-keyword">function</span> will be garbage-collected <span class="hljs-keyword">and</span> <span class="hljs-keyword">no</span>
|
||||
longer persistent. <span class="hljs-keyword">If</span> you <span class="hljs-keyword">create</span> <span class="hljs-keyword">references</span> <span class="hljs-keyword">to</span> the
|
||||
<span class="hljs-keyword">inner</span> <span class="hljs-keyword">function</span>(<span class="hljs-keyword">save</span> it <span class="hljs-keyword">in</span> another <span class="hljs-keyword">variable</span>) <span class="hljs-keyword">then</span>
|
||||
it <span class="hljs-keyword">is</span> <span class="hljs-keyword">not</span> garbage-collected <span class="hljs-keyword">and</span> stays
|
||||
persistent.
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="dispatchevent" class="tsd-anchor"></a>
|
||||
<h3>dispatch<wbr>Event</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><a href="openfl.events.event.html" class="tsd-signature-type">Event</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#dispatchevent">dispatchEvent</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L186">lib/openfl/events/EventDispatcher.d.ts:186</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Dispatches an event into the event flow. The event target is the
|
||||
EventDispatcher object upon which the <code>dispatchEvent()</code> method
|
||||
is called.</p>
|
||||
</div>
|
||||
<dl class="tsd-comment-tags">
|
||||
<dt>throws</dt>
|
||||
<dd><p>Error The event dispatch recursion limit has been reached.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <a href="openfl.events.event.html" class="tsd-signature-type">Event</a></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The Event object that is dispatched into the event flow. If
|
||||
the event is being redispatched, a clone of the event is
|
||||
created automatically. After an event is dispatched, its
|
||||
<code>target</code> property cannot be changed, so you must
|
||||
create a new copy of the event for redispatching to work.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if the event was successfully
|
||||
dispatched. A value of <code>false</code> indicates failure or
|
||||
that <code>preventDefault()</code> was called on the event.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="haseventlistener" class="tsd-anchor"></a>
|
||||
<h3>has<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">has<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#haseventlistener">hasEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L209">lib/openfl/events/EventDispatcher.d.ts:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether the EventDispatcher object has any listeners registered for
|
||||
a specific type of event. This allows you to determine where an
|
||||
EventDispatcher object has altered handling of an event type in the event
|
||||
flow hierarchy. To determine whether a specific event type actually
|
||||
triggers an event listener, use <code>willTrigger()</code>.</p>
|
||||
</div>
|
||||
<p>The difference between <code>hasEventListener()</code> and
|
||||
<code>willTrigger()</code> is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas
|
||||
<code>willTrigger()</code> examines the entire event flow for the event
|
||||
specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>hasEventListener()</code> is called from a LoaderInfo
|
||||
object, only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
is registered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="removeeventlistener" class="tsd-anchor"></a>
|
||||
<h3>remove<wbr>Event<wbr>Listener</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span>, useCapture<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#removeeventlistener">removeEventListener</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L227">lib/openfl/events/EventDispatcher.d.ts:227</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Removes a listener from the EventDispatcher object. If there is no
|
||||
matching listener registered with the EventDispatcher object, a call to
|
||||
this method has no effect.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<h5>listener: <span class="tsd-signature-type">function</span></h5>
|
||||
<ul class="tsd-parameters">
|
||||
<li class="tsd-parameter-siganture">
|
||||
<ul class="tsd-signatures tsd-kind-type-literal">
|
||||
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>event: <span class="tsd-signature-type">object</span></h5>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h5><span class="tsd-flag ts-flagOptional">Optional</span> useCapture: <span class="tsd-signature-type">boolean</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>Specifies whether the listener was registered for the
|
||||
capture phase or the target and bubbling phases. If the
|
||||
listener was registered for both the capture phase and
|
||||
the target and bubbling phases, two calls to
|
||||
<code>removeEventListener()</code> are required to
|
||||
remove both, one call with <code>useCapture()</code> set
|
||||
to <code>true</code>, and another call with
|
||||
<code>useCapture()</code> set to <code>false</code>.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="tostring" class="tsd-anchor"></a>
|
||||
<h3>to<wbr>String</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#tostring">toString</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L230">lib/openfl/events/EventDispatcher.d.ts:230</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a name="willtrigger" class="tsd-anchor"></a>
|
||||
<h3>will<wbr>Trigger</h3>
|
||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<li class="tsd-signature tsd-kind-icon">will<wbr>Trigger<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-descriptions">
|
||||
<li class="tsd-description">
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="openfl.events.eventdispatcher.html">EventDispatcher</a>.<a href="openfl.events.eventdispatcher.html#willtrigger">willTrigger</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/openfl/openfl/blob/9921d3bf/lib/openfl/events/EventDispatcher.d.ts#L253">lib/openfl/events/EventDispatcher.d.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Checks whether an event listener is registered with this EventDispatcher
|
||||
object or any of its ancestors for the specified event type. This method
|
||||
returns <code>true</code> if an event listener is triggered during any
|
||||
phase of the event flow when an event of the specified type is dispatched
|
||||
to this EventDispatcher object or any of its descendants.</p>
|
||||
</div>
|
||||
<p>The difference between the <code>hasEventListener()</code> and the
|
||||
<code>willTrigger()</code> methods is that <code>hasEventListener()</code>
|
||||
examines only the object to which it belongs, whereas the
|
||||
<code>willTrigger()</code> method examines the entire event flow for the
|
||||
event specified by the <code>type</code> parameter.</p>
|
||||
<p>When <code>willTrigger()</code> is called from a LoaderInfo object,
|
||||
only the listeners that the caller can access are considered.</p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<p>The type of event.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
||||
<p>A value of <code>true</code> if a listener of the specified type
|
||||
will be triggered; <code>false</code> otherwise.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation primary">
|
||||
<ul>
|
||||
<li class="label tsd-is-external">
|
||||
<span>Externals</span>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.desktop.html">openfl.desktop</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display.html">openfl.display</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.display3d.html">openfl.display3D</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.errors.html">openfl.errors</a>
|
||||
</li>
|
||||
<li class="current tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.events.html">openfl.events</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.external.html">openfl.external</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.filters.html">openfl.filters</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.geom.html">openfl.geom</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.media.html">openfl.media</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.net.html">openfl.net</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.profiler.html">openfl.profiler</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.sensors.html">openfl.sensors</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.system.html">openfl.system</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.text.html">openfl.text</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.ui.html">openfl.ui</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-module tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../modules/openfl.utils.html">openfl.utils</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-enum tsd-parent-kind-module tsd-is-external">
|
||||
<a href="../enums/openfl.events.eventphase.html" class="tsd-kind-icon">Event<wbr>Phase</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.accelerometerevent.html" class="tsd-kind-icon">Accelerometer<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.activityevent.html" class="tsd-kind-icon">Activity<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.asyncerrorevent.html" class="tsd-kind-icon">Async<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.dataevent.html" class="tsd-kind-icon">Data<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.errorevent.html" class="tsd-kind-icon">Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.event.html" class="tsd-kind-icon">Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.eventdispatcher.html" class="tsd-kind-icon">Event<wbr>Dispatcher</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.focusevent.html" class="tsd-kind-icon">Focus<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.fullscreenevent.html" class="tsd-kind-icon">Full<wbr>Screen<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.gameinputevent.html" class="tsd-kind-icon">Game<wbr>Input<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.httpstatusevent.html" class="tsd-kind-icon">HTTPStatus<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.ieventdispatcher.html" class="tsd-kind-icon">IEvent<wbr>Dispatcher</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.ioerrorevent.html" class="tsd-kind-icon">IOError<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.keyboardevent.html" class="tsd-kind-icon">Keyboard<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.mouseevent.html" class="tsd-kind-icon">Mouse<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.netstatusevent.html" class="tsd-kind-icon">Net<wbr>Status<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.progressevent.html" class="tsd-kind-icon">Progress<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.sampledataevent.html" class="tsd-kind-icon">Sample<wbr>Data<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.securityerrorevent.html" class="tsd-kind-icon">Security<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.textevent.html" class="tsd-kind-icon">Text<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.timerevent.html" class="tsd-kind-icon">Timer<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.touchevent.html" class="tsd-kind-icon">Touch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevent.html" class="tsd-kind-icon">Uncaught<wbr>Error<wbr>Event</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="current">
|
||||
<li class="current tsd-kind-class tsd-parent-kind-module tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html" class="tsd-kind-icon">Uncaught<wbr>Error<wbr>Events</a>
|
||||
<ul>
|
||||
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html#constructor" class="tsd-kind-icon">constructor</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html#haseventlistener" class="tsd-kind-icon">has<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
||||
</li>
|
||||
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
||||
<a href="openfl.events.uncaughterrorevents.html#willtrigger" class="tsd-kind-icon">will<wbr>Trigger</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="after-current">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="with-border-bottom">
|
||||
<div class="container">
|
||||
<h2>Legend</h2>
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container tsd-generator">
|
||||
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user