EngineKit
Item.h
1 
2 
8 @interface Item : NSObject
10 @property (nonatomic, strong) SCNNode *node;
18 @property (nonatomic, strong) id position;
26 @property (nonatomic, strong) id rotation;
34 @property (nonatomic, strong) id scale;
38 @property (nonatomic, strong) SCNGeometry *geometry;
39 
45 + (instancetype)create;
46 @end
SCNNode * node
The node that this Item is wrapping.
Definition: Item.h:10
Definition: Item.h:8
id position
Definition: Item.h:18
SCNGeometry * geometry
Definition: Item.h:38
instancetype create()
Definition: Item.m:8
id rotation
Definition: Item.h:26
id scale
Definition: Item.h:34