blob: f1f6b6b726a5ecd840f14ddb75c48101a5770433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ Parsed from SpriteKit.framework SKLightNode.h }
{$ifdef TYPES}
type
SKLightNodePtr = ^SKLightNode;
{$endif}
{$ifdef CLASSES}
type
SKLightNode = objcclass external (SKNode)
public
procedure setEnabled(newValue: ObjCBOOL); message 'setEnabled:';
function isEnabled: ObjCBOOL; message 'isEnabled';
procedure setLightColor(newValue: SKColorPtr); message 'setLightColor:';
function lightColor: SKColorPtr; message 'lightColor';
procedure setAmbientColor(newValue: SKColorPtr); message 'setAmbientColor:';
function ambientColor: SKColorPtr; message 'ambientColor';
procedure setShadowColor(newValue: SKColorPtr); message 'setShadowColor:';
function shadowColor: SKColorPtr; message 'shadowColor';
procedure setFalloff(newValue: CGFloat); message 'setFalloff:';
function falloff: CGFloat; message 'falloff';
procedure setCategoryBitMask(newValue: cuint32); message 'setCategoryBitMask:';
function categoryBitMask: cuint32; message 'categoryBitMask';
end;
{$endif}
|