-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathRASceneGraphController.h
More file actions
32 lines (25 loc) · 991 Bytes
/
RASceneGraphController.h
File metadata and controls
32 lines (25 loc) · 991 Bytes
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
29
30
31
32
//
// RASceneGraphController.h
// RASceneGraphTest
//
// Created by Ross Anderson on 2/19/12.
// Copyright (c) 2012 Ross Anderson. All rights reserved.
//
#import <GLKit/GLKit.h>
#import "RANode.h"
#import "RACamera.h"
#import "RATilePager.h"
#import "RAManipulator.h"
@interface RASceneGraphController : UIViewController <GLKViewDelegate, UITextFieldDelegate>
@property (strong) EAGLContext * context;
@property (strong, nonatomic) IBOutlet GLKView * glView;
@property (strong, nonatomic) IBOutlet UITextField * flyToLocationField;
@property (strong, nonatomic) IBOutlet UILabel * statsLabel;
@property (strong, nonatomic) IBOutlet UISwitch * clippingEnable;
@property (strong, nonatomic) IBOutlet UISwitch * pagingEnable;
@property (strong, nonatomic) RANode * sceneRoot;
@property (strong, nonatomic) RACamera * camera;
@property (strong, nonatomic) RATilePager * pager;
@property (strong, nonatomic) RAManipulator * manipulator;
- (IBAction)flyToLocationFrom:(id)sender;
@end