A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
T — Constant static property in class com.threerings.ui.KeyboardCodes |
| |
TAB — Constant static property in class com.threerings.ui.KeyboardCodes |
| |
takeOverPlayer(playerId) — Method in class com.whirled.game.GameSubControl |
|
Tells the system that the server agent will take over for the specified player. |
takeSnapshot() — Method in class com.threerings.display.CameraSnapshotter |
| |
target — Property in class com.whirled.ControlEvent |
|
Retrieve the event target, which will be the Control instance that
dispatched this event. |
TargetedSubControl — Class in package com.whirled |
|
Superclass for controls that are instantiated in association with a specific
target, e.g. |
TargetedSubControl(parent:com.whirled:AbstractControl, targetId) — Constructor in class com.whirled.TargetedSubControl |
| |
_targets — Static property in class com.threerings.util.Log |
| Other registered LogTargets, besides the trace log. |
_targetsToKeys — Property in class com.threerings.util.MultiLoader |
| |
taskCompleted — Event in class com.whirled.avrg.PlayerSubControlBase |
|
Dispatched when this player completes a task and receives a coin payout. |
TASK_COMPLETED — Constant static property in class com.whirled.avrg.AVRGamePlayerEvent |
|
An event type dispatched when the player receives some coins. |
testAndSet(propName, newValue, testValue) — Method in class com.whirled.game.NetSubControl |
|
Set a property that will be distributed, but only if it's equal to the specified test value. |
testAndSetProperty_v1(propName, value, testValue, index) — Method in class com.whirled.game.loopback.LoopbackGameControl |
|
Test and set a property. |
testing(... rest) — Static method in class com.threerings.util.Log |
|
A convenience function for quickly and easily inserting printy
statements during application development. |
text — Property in class com.threerings.text.ClearingTextField |
|
Set text that will not auto-clear. |
TextCharAnimation — Class in package com.threerings.display |
| |
TextCharAnimation(text, fn, textArgs) — Constructor in class com.threerings.display.TextCharAnimation |
| |
TextFieldUtil — Class in package com.threerings.text |
| |
_texts — Property in class com.threerings.display.TextCharAnimation |
| |
threshold(threshold, factor) — Method in class com.threerings.display.ColorMatrix |
| |
thresholdAlpha(threshold, factor) — Method in class com.threerings.display.ColorMatrix |
| |
Throttle — Class in package com.threerings.util |
|
A throttle is used to prevent code from attempting a particular operation too often. |
Throttle(operations, period) — Constructor in class com.threerings.util.Throttle |
|
Constructs a new throttle instance that will allow the specified number of operations to
proceed within the specified period (the period is measured in milliseconds). |
throttleOp() — Method in class com.threerings.util.Throttle |
|
Registers an attempt at an operation and returns false if the operation should be performed
or true if it should be throttled (meaning N operations have already been performed in the
last M seconds). |
throttleOpAt(timeStamp) — Method in class com.threerings.util.Throttle |
|
Registers an attempt at an operation and returns false if the operation should be performed
or true if it should be throttled (meaning N operations have already been performed in the
last M seconds). |
_throwErrors — Property in class com.threerings.util.ImmutableProxyObject |
| |
tickerFired(ticker) — Method in class com.whirled.game.loopback.LoopbackGameControl |
| |
_tickers — Static property in class com.whirled.game.loopback.LoopbackGameControl |
| |
TimeBuffer — Class in package com.threerings.util |
|
A data structure that keeps a list of objects, timestamped at the time they were added
to the buffer. |
TimeBuffer(maxAge, initialCapacity, timerFn) — Constructor in class com.threerings.util.TimeBuffer |
|
Constructs a new TimeBuffer. |
_timer — Property in class com.threerings.display.BackgroundJPGEncoder |
| |
_timer — Property in class com.threerings.text.ClearingTextField |
| |
timer — Event in class com.whirled.EntityControl |
|
Dispatched once per tick, only when this instance has control and only if tick interval is
registered. |
_timerFn — Property in class com.threerings.util.TimeBuffer |
| |
timerHandler(event) — Method in class com.threerings.display.BackgroundJPGEncoder |
| |
_timeSlice — Property in class com.threerings.display.BackgroundJPGEncoder |
| |
timestampAt(index) — Method in class com.threerings.util.TimeBuffer |
|
Returns the timestamp of the element at the specified index,
or -1 if index is out of bounds. |
tint(rgb, amount) — Method in class com.threerings.display.ColorMatrix |
|
Performs the same transformation as the FAT "Tint" function. |
tinyClassName(obj) — Static method in class com.threerings.util.ClassUtil |
|
Get just the class name, e.g. |
_to — Property in class com.threerings.display.LinearAnimation |
| |
TO_ALL — Constant static property in class com.whirled.game.NetSubControl |
|
Constant provided to sendMessage that will send a message to all subscribers. |
TO_ALL — Constant static property in class com.whirled.game.loopback.LoopbackGameControl |
| |
toArray() — Method in interface com.threerings.util.Set |
|
Returns all elements in the set in an Array. |
toArray() — Method in class com.threerings.util.sets.MapSet |
|
Returns all elements in the set in an Array. |
toBitmapData(spec) — Static method in class com.threerings.display.ImageUtil |
|
Takes a BitmapData, Bitmap, or Class that will turn into either, and returns
a reference to the BitmapData, or returns null. |
toByte() — Method in class com.threerings.util.ByteEnum |
|
Return the byte form of this enum. |
toBytes(s) — Static method in class com.threerings.util.StringUtil |
|
Turn the specified String, containing only ascii characters, into a ByteArray. |
toColorString(c, prefix) — Static method in class com.threerings.util.StringUtil |
|
Format the specified uint as a String color value, for example "0x000000". |
toDegrees(radians) — Static method in class com.threerings.util.MathUtil |
|
Converts radians to degrees. |
TO_EACH_THEIR_OWN — Constant static property in class com.whirled.game.GameSubControl |
| Each player receives a payout based only on their score and not influenced by the
scores of any other player. |
toHex(n, width) — Static method in class com.threerings.util.StringUtil |
|
Return a hexadecimal representation of an unsigned int, potentially left-padded with
zeroes to arrive at of precisely the requested width, e.g. |
toPoint() — Method in class com.threerings.geom.Vector2 |
|
Converts the Vector2 to a Point. |
toRadians(degrees) — Static method in class com.threerings.util.MathUtil |
|
Converts degrees to radians. |
TO_SERVER_AGENT — Constant static property in class com.whirled.game.NetSubControl |
|
Constant provided to sendMessage that will send a message to the game's server
agent, if there is one. |
toString() — Method in class com.threerings.geom.Vector2 |
| Returns a string representation of the Vector2. |
toString() — Method in class com.threerings.geom.Vector3 |
| |
toString() — Method in class com.threerings.media.MediaContainer |
| |
toString() — Method in class com.threerings.util.CommandEvent |
| |
toString() — Method in class com.threerings.util.Enum |
|
Return the String representation of this enum. |
toString() — Method in class com.threerings.util.ImmutableProxyObject |
| |
toString() — Method in class com.threerings.util.Joiner |
|
Turn this joiner into a String. |
toString(obj, refs) — Static method in class com.threerings.util.StringUtil |
|
Nicely format the specified object into a String. |
toString() — Method in class com.threerings.util.Throttle |
| |
toString(xml, settings) — Static method in class com.threerings.util.XmlUtil |
|
Call toString() on the specified XML object safely. |
toString() — Method in class com.whirled.ControlEvent |
| |
toString() — Method in class com.whirled.avrg.AVRGameControlEvent |
| |
toString() — Method in class com.whirled.avrg.AVRGamePlayerEvent |
| |
toString() — Method in class com.whirled.avrg.AVRGameRoomEvent |
| |
toString() — Method in class com.whirled.game.CoinsAwardedEvent |
| |
toString() — Method in class com.whirled.game.GameContentEvent |
| |
toString() — Method in class com.whirled.game.LobbyClosedEvent |
| |
toString() — Method in class com.whirled.game.OccupantChangedEvent |
| |
toString() — Method in class com.whirled.game.SizeChangedEvent |
| |
toString() — Method in class com.whirled.game.StateChangedEvent |
| |
toString() — Method in class com.whirled.game.UserChatEvent |
| |
toString() — Method in class com.whirled.net.ElementChangedEvent |
| |
toString() — Method in class com.whirled.net.MessageReceivedEvent |
| |
toString() — Method in class com.whirled.net.PropertyChangedEvent |
| |
toXMLString(xml, settings) — Static method in class com.threerings.util.XmlUtil |
|
Call toXMLString() on the specified XML object safely. |
ToyControl — Class in package com.whirled |
|
Used to create Toys: interactive furniture, usually with some shared state. |
ToyControl(disp) — Constructor in class com.whirled.ToyControl |
|
Create a ToyControl. |
TOY_SHOP — Constant static property in class com.whirled.game.GameControl |
| |
trackOnlyLinksMouseable(textField, on) — Static method in class com.threerings.text.TextFieldUtil |
|
Install listeners on the specified TextField such that the mouseEnabled property
is only true when the mouse is over a link. |
trackSingleSelectable(textField) — Static method in class com.threerings.text.TextFieldUtil |
|
Include the specified TextField in a set of TextFields in which only
one may have a selection at a time. |
_transactionCount — Property in class com.whirled.game.loopback.LoopbackGameControl |
| |
transformPoint(p, fromDisp, toDisp) — Static method in class com.threerings.display.DisplayUtil |
|
Transforms a point from one DisplayObject's coordinate space to another's. |
transformVector(values) — Method in class com.threerings.display.ColorMatrix |
| |
transpose(x, y, ... rest) — Static method in class com.threerings.util.ArrayUtil |
|
Returns an array whose nth element is an array of the nth elements of each of the passed
in arrays. |
triggerAction(name, arg) — Method in class com.whirled.EntityControl |
|
Triggers an action on this scene object. |
trim(str) — Static method in class com.threerings.util.StringUtil |
|
Utility function that strips whitespace from the beginning and end of a String. |
trimBeginning(str) — Static method in class com.threerings.util.StringUtil |
|
Utility function that strips whitespace from the beginning of a String. |
trimEnd(str) — Static method in class com.threerings.util.StringUtil |
|
Utility function that strips whitespace from the end of a String. |
truncate(s, maxLength, append) — Static method in class com.threerings.util.StringUtil |
|
Truncate the specified String if it is longer than maxLength. |
turnChanged() — Method in class com.whirled.game.loopback.LoopbackGameControl |
| |
TurnChanged — Event in class com.whirled.game.GameSubControl |
|
Dispatched when the turn changes in a turn-based game. |
TURN_CHANGED — Constant static property in class com.whirled.game.StateChangedEvent |
| Indicates that the turn has changed. |
_turnHolderId — Static property in class com.whirled.game.loopback.LoopbackGameControl |
| |
TWO_PI — Constant static property in class com.threerings.display.Siner |
| |
TYPE_AVATAR — Constant static property in class com.whirled.EntityControl |
| The type of avatar entities. |
TYPE_FURNI — Constant static property in class com.whirled.EntityControl |
| The type of furniture entities. |
TYPE_PET — Constant static property in class com.whirled.EntityControl |
| The type of pet entities. |
|
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |