diff --git a/Documentation/7. Working with Animations.md b/Documentation/7. Working with Animations.md
index 150e04046..d16a009a0 100644
--- a/Documentation/7. Working with Animations.md
+++ b/Documentation/7. Working with Animations.md
@@ -53,10 +53,10 @@ You can automatically play back a sequence of timelines by chaining them. You ca
To have a timeline play in sequence, click the *No chained timeline* text and select the timeline you want to play right after the current one.
### Playing Back Animations in Code
-To programmatically control the animations you create with SpriteBuilder you will need to retrieve the *CCBAnimationManager*. The animation manager will be assigned to the nodes *userObject* when the ccbi-file is loaded.
+To programmatically control the animations you create with SpriteBuilder you will need to retrieve the *CCAnimationManager*. The animation manager is assigned to the node when the ccbi-file is loaded.
CCNode* myNodeGraph = [CCBReader load:@"myFile.ccbi"];
- CCBAnimationManager* animationManager = myNodeGraph.userObject;
+ CCAnimationManager* animationManager = myNodeGraph.userObject;
The animation manager will be returned as an autoreleased object. To play back a specific timeline call the *runAnimationsForSequenceNamed:* method. If a timeline is currently playing, it will be immediately stopped when calling this method.
diff --git a/SpriteBuilder/Requirements.plist b/SpriteBuilder/Requirements.plist
index 3a99a6dea..2b353edf1 100644
--- a/SpriteBuilder/Requirements.plist
+++ b/SpriteBuilder/Requirements.plist
@@ -4,7 +4,7 @@
os
- 10.8
+ 10.9
diff --git a/SpriteBuilder/SpriteBuilder Tests/CCAnimation_Tests.m b/SpriteBuilder/SpriteBuilder Tests/CCAnimation_Tests.m
new file mode 100644
index 000000000..192527cd9
--- /dev/null
+++ b/SpriteBuilder/SpriteBuilder Tests/CCAnimation_Tests.m
@@ -0,0 +1,390 @@
+//
+// CCAnimation_Tests.m
+// SpriteBuilder
+//
+// Created by John Twigg on 6/9/14.
+//
+//
+
+#import
+#import "cocos2d.h"
+#import "CCBXCocos2diPhone.h"
+#import "PlugInManager.h"
+#import "PlugInExport.h"
+#import "CCBReader.h"
+#import "CCAnimationManager.h"
+#import "CCAnimationManager_Private.h"
+#import "CCBSequence.h"
+
+#define IS_NEAR(a,b,accuracy) (fabsf(a - b) < kAccuracy)
+
+
+@implementation CCAnimationManager (Test)
+
+-(CCBSequence*)runningSequence
+{
+ return _runningSequence;
+}
+
+@end
+
+typedef void (^CallbackBlock) ();
+@interface CCAnimationDelegateTester : NSObject
+{
+ CallbackBlock _sequenceFinished;
+}
+
+
+@end
+
+
+
+
+@implementation CCAnimationDelegateTester
+{
+ NSMutableDictionary * methodBlocks;
+
+}
+
+-(void)setSequenceFinishedCallback:(CallbackBlock)sequenceFinished
+{
+ _sequenceFinished = [sequenceFinished copy];
+}
+
+-(void)registerMethod:(NSString*)callback block:(CallbackBlock)block
+{
+ if(methodBlocks == nil)
+ {
+ methodBlocks = [NSMutableDictionary dictionary];
+ }
+
+ methodBlocks[callback] = [block copy];
+}
+
+void dynamicMethodIMP(CCAnimationDelegateTester * self, SEL _cmd)
+{
+ NSString * selectorName = NSStringFromSelector(_cmd);
+ if(self->methodBlocks[selectorName])
+ {
+ CallbackBlock block =self->methodBlocks[selectorName];
+ block();
+ }
+}
+
++(BOOL)resolveInstanceMethod:(SEL)sel
+{
+ if(![super resolveInstanceMethod:sel])
+ {
+ class_addMethod([self class], sel, (IMP) dynamicMethodIMP, "v@:");
+ return YES;
+ }
+
+
+ return YES;
+}
+
+
+- (void) completedAnimationSequenceNamed:(NSString*)name
+{
+ if(_sequenceFinished)
+ _sequenceFinished();
+}
+
+@end
+
+@interface CCAnimation_Tests : XCTestCase
+
+@end
+
+@implementation CCAnimation_Tests
+
+-(NSData*)readCCB:(NSString*)srcFileName
+{
+ NSBundle *bundle = [NSBundle bundleForClass:[self class]];
+ NSString *path = [bundle pathForResource:srcFileName ofType:@"ccb"];
+ NSDictionary * doc = [NSDictionary dictionaryWithContentsOfFile:path];
+
+ PlugInExport *plugIn = [[PlugInManager sharedManager] plugInExportForExtension:@"ccbi"];
+ NSData *data = [plugIn exportDocument:doc];
+ return data;
+}
+
+- (void)setUp
+{
+ [super setUp];
+
+
+
+
+ // Put setup code here. This method is called before the invocation of each test method in the class.
+}
+
+- (void)tearDown
+{
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
+ [super tearDown];
+}
+
+
+
+- (void)testAnimationSync1
+{
+
+ CCAnimationDelegateTester * callbackTest = [[CCAnimationDelegateTester alloc] init];
+
+
+
+ NSData * animData = [self readCCB:@"AnimationTest1"];
+ XCTAssertNotNil(animData, @"Can't find ccb File");
+
+ CCBReader * reader = [CCBReader reader];
+ CCNode * rootNode = [reader loadWithData:animData owner:callbackTest];
+
+ CCNode * node0 = rootNode.children[0];
+ CCNode * node1 = rootNode.children[1];
+ CCNode * node2 = rootNode.children[2];
+
+
+ XCTAssertTrue([node0.name isEqualToString:@"node0"]);
+ XCTAssertTrue([node1.name isEqualToString:@"node1"]);
+ XCTAssertTrue([node2.name isEqualToString:@"node2"]);
+
+
+ const float kDelta = 0.1f;//100ms;
+ const CGFloat kAccuracy = 0.01f;
+ const CGFloat kTranslation = 500.0f;
+
+
+ float totalElapsed = 0.0f;
+ __block float currentAnimElapsed = 0.0f;
+
+ CCBSequence * seq = rootNode.animationManager.sequences[0];
+
+ [rootNode.animationManager setCompletedAnimationCallbackBlock:^(CCAnimationManager * manager) {
+ XCTAssertTrue(fabsf(currentAnimElapsed - seq.duration) < kAccuracy, @"The animation should have taken 4 seconds. Possible divergenc.");
+
+ currentAnimElapsed = 0.0f;
+ }];
+
+ while(totalElapsed <= seq.duration * 20)
+ {
+ [rootNode.animationManager update:kDelta];
+
+ totalElapsed += kDelta;
+ currentAnimElapsed += kDelta;
+
+ float timeIntoSeq = rootNode.animationManager.runningSequence.time;
+
+ //This animation specifcally see's all three nodes translate after three seconds back to the root pos.
+ if(timeIntoSeq >= 3.0f)
+ {
+ //All final translations go from x=500 -> x=0 over 1 second.
+ float perentageIntroSyncedTranlation = 1.0f - (seq.duration - timeIntoSeq);
+ float desiredXCoord = (1.0f - perentageIntroSyncedTranlation) * kTranslation;
+
+ XCTAssertTrue(fabsf(node0.position.x - node1.position.x) < kAccuracy, @"They should all equal each other");
+ XCTAssertTrue(fabsf(node0.position.x - node2.position.x) < kAccuracy, @"They should all equal each other");
+ XCTAssertTrue(fabsf(node0.position.x - desiredXCoord) < kAccuracy, @"They should all equal each desiredXCoord. Possible divergenc. XPos:%0.2f DesiredPos:%0.2f totalElapsed:%0.2f", node0.position.x,desiredXCoord, totalElapsed);
+
+ }
+ }
+}
+
+-(void)testAnimationCallback1
+{
+
+ CCAnimationDelegateTester * callbackTest = [[CCAnimationDelegateTester alloc] init];
+
+ NSData * animData = [self readCCB:@"AnimationTest1"];
+ XCTAssertNotNil(animData, @"Can't find ccb File");
+
+ CCBReader * reader = [CCBReader reader];
+ CCNode * rootNode = [reader loadWithData:animData owner:callbackTest];
+
+ CCBSequence * seq = rootNode.animationManager.sequences[0];
+ rootNode.animationManager.delegate = callbackTest;
+
+ const float kDelta = 0.1f;//100ms;
+ const CGFloat kAccuracy = 0.01f;
+ const CGFloat kTranslation = 500.0f;
+
+ float totalElapsed = 0.0f;
+ __block float currentAnimElapsed = 0.0f;
+
+ [callbackTest setSequenceFinishedCallback:^{
+ currentAnimElapsed = 0.0f;
+ }];
+
+ [callbackTest registerMethod:@"onMiddleOfAnimation" block:^{
+ XCTAssertTrue(fabsf(currentAnimElapsed - seq.duration /2.0f) < kAccuracy, @"Not in the middle of the sequence");
+ }];
+
+ __block BOOL endCallbackWasCalled = NO;
+ [callbackTest registerMethod:@"onEndOfAnim1" block:^{
+ XCTAssertTrue(fabsf(currentAnimElapsed) < kAccuracy, @"Should be at the end of the frame, however its been looped so its Zero.");
+ endCallbackWasCalled = YES;
+ }];
+
+
+ while(totalElapsed <= seq.duration * 20)
+ {
+ [rootNode.animationManager update:kDelta];
+
+ totalElapsed += kDelta;
+ currentAnimElapsed += kDelta;
+
+ }
+
+ XCTAssert(endCallbackWasCalled, @"Should be called");
+
+}
+
+
+//This test file "AnimationTest2.ccb" has two animations. T1 and T2.
+//The test ensures that when T1 ends, we launch T2 with a tween of 100ms.
+-(void)testAnimationTween1
+{
+
+ CCAnimationDelegateTester * callbackTest = [[CCAnimationDelegateTester alloc] init];
+
+ NSData * animData = [self readCCB:@"AnimationTest2"];
+ XCTAssertNotNil(animData, @"Can't find ccb File");
+
+ CCBReader * reader = [CCBReader reader];
+ CCNode * rootNode = [reader loadWithData:animData owner:callbackTest];
+ CCNode * node0 = rootNode.children[0];
+
+ XCTAssertTrue([node0.name isEqualToString:@"node0"]);
+
+ CCBSequence * seq = rootNode.animationManager.sequences[0];
+ rootNode.animationManager.delegate = callbackTest;
+
+ const float kDelta = 0.1f;//100ms;
+ const CGFloat kAccuracy = 0.01f;
+ const CGFloat kXTranslation = 500.0f;
+ const CGFloat kYTranslation = 200.0f;
+ const CGFloat kTween = 1.0f;
+
+ float totalElapsed = 0.0f;
+ __block BOOL firstTime = YES;
+ __block float currentAnimElapsed = 0.0f;
+ __block BOOL playingDefaultAnimToggle = YES;
+
+ [callbackTest setSequenceFinishedCallback:^{
+
+ //When the animation finished, Toggle over to the next T1/T2 animation.
+ firstTime = NO;
+ playingDefaultAnimToggle = !playingDefaultAnimToggle;
+ [rootNode.animationManager runAnimationsForSequenceNamed:playingDefaultAnimToggle ? @"T1" : @"T2" tweenDuration:kTween];
+
+ //Reset clock.
+ currentAnimElapsed = 0.0f;
+ }];
+
+ //
+
+ typedef void (^ValidateAnimation) (float timeIntoAnimation);
+
+ ValidateAnimation validationAnimBlock =^(float timeIntoAnimation)
+ {
+ //We're in T1 + tween. Ensure valid
+ //Also, always skip frame 0.
+
+ if(timeIntoAnimation < 0.0f || IS_NEAR(timeIntoAnimation,0.0f,kAccuracy))
+ {
+ return;
+ }
+ else if(timeIntoAnimation < 1.0f || IS_NEAR(timeIntoAnimation,1.0f,kAccuracy))
+ {
+
+ float percentage = (timeIntoAnimation - kDelta);
+ float xCoord = kXTranslation * (percentage);
+ XCTAssertEqualWithAccuracy(node0.position.x, xCoord, kAccuracy, @"They should all equal each other");
+ }
+ else if(timeIntoAnimation < 3.0f || IS_NEAR(timeIntoAnimation,3.0f,kAccuracy))
+ {
+ int break_here = 1;
+
+ XCTAssertEqualWithAccuracy(node0.position.x, kXTranslation, kAccuracy, @"Error: timeIntoAnim:%0.2f", timeIntoAnimation);
+ }
+ else if(timeIntoAnimation < 4.0f || IS_NEAR(timeIntoAnimation,4.0f,kAccuracy))
+ {
+
+ float percentage = (timeIntoAnimation - 3.0f);
+ float xCoord = kXTranslation * (1.0f - percentage);
+ XCTAssertEqualWithAccuracy(node0.position.x, xCoord, kAccuracy, @"They should all equal each other");
+ }
+
+ };
+
+ bool alreadyDone = NO;
+
+ while(totalElapsed <= (seq.duration + kTween) * 20)
+ {
+ totalElapsed += kDelta;
+ currentAnimElapsed += kDelta;
+
+ [rootNode.animationManager update:kDelta];
+
+ if(firstTime)
+ {
+ validationAnimBlock(currentAnimElapsed);
+ continue;
+ }
+
+
+
+
+ if(!playingDefaultAnimToggle)
+ {
+ //Playing T2 animation.
+
+ //In tween and greather that the first frame, as the first frame stutters.
+ if(currentAnimElapsed < kTween || IS_NEAR(currentAnimElapsed, kTween,kAccuracy))
+ {
+ //Skip first frame as it halts for one frme.
+ if(currentAnimElapsed < kDelta)
+ continue;
+
+
+ //All final translations go from y=200 -> y=0
+ float percentage = (currentAnimElapsed - kDelta)/ kTween;
+ float yCoord = kYTranslation * (1.0f - percentage);
+
+ XCTAssertEqualWithAccuracy(node0.position.y, yCoord, kAccuracy, @"They should all equal each other");
+ }
+ else
+ {
+ float timeIntoAnimation = currentAnimElapsed - kTween;
+ validationAnimBlock(timeIntoAnimation);
+ }
+
+ }
+ else //Playing T1 animation.
+ {
+ //Ensure tween from T2(end) -> T1(start)
+ if(currentAnimElapsed < kTween)
+ {
+ //Skip first frame as it halts for one frme.
+ if(currentAnimElapsed < kDelta)
+ continue;
+
+ //Should interpolate from y= 0 -> y = 200;
+ float percentage = (currentAnimElapsed - kDelta)/ kTween;
+ float yCoord = kYTranslation * (percentage);
+
+ XCTAssertEqualWithAccuracy(node0.position.y, yCoord, kAccuracy, @"They should all equal each other");
+ }
+ else
+ {
+ float timeIntoAnimation = currentAnimElapsed - kTween;
+ validationAnimBlock(timeIntoAnimation);
+ }
+ }
+ }
+
+
+}
+
+
+@end
diff --git "a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/Icon\r" "b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/Icon\r"
new file mode 100644
index 000000000..e69de29bb
diff --git a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest1.ccb b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest1.ccb
new file mode 100644
index 000000000..a5bf0988d
--- /dev/null
+++ b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest1.ccb
@@ -0,0 +1,841 @@
+
+
+
+
+ SequencerJoints
+
+ hidden
+
+ locked
+
+
+ UUID
+ 8
+ centeredOrigin
+
+ currentResolution
+ 0
+ currentSequenceId
+ 0
+ docDimensionsType
+ 0
+ fileType
+ CocosBuilder
+ fileVersion
+ 4
+ gridspaceHeight
+ 64
+ gridspaceWidth
+ 64
+ guides
+
+ joints
+
+ jsControlled
+
+ nodeGraph
+
+ UUID
+ 1
+ baseClass
+ CCNode
+ children
+
+
+ UUID
+ 4
+ animatedProperties
+
+ 0
+
+ position
+
+ keyframes
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 0.0
+ type
+ 3
+ value
+
+ 0.0
+ 0.0
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 1
+ type
+ 3
+ value
+
+ 500
+ 0.0
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 3
+ type
+ 3
+ value
+
+ 500
+ 0.0
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 4
+ type
+ 3
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ position
+ type
+ 3
+
+
+
+ baseClass
+ CCNodeColor
+ children
+
+ customClass
+
+ displayName
+ node0
+ memberVarAssignmentName
+
+ memberVarAssignmentType
+ 1
+ properties
+
+
+ name
+ name
+ type
+ StringSimple
+ value
+ node0
+
+
+ baseValue
+
+ 0.0
+ 0.0
+
+ name
+ position
+ type
+ Position
+ value
+
+ 0.0
+ 0.0
+ 0
+ 0
+ 0
+
+
+
+ name
+ contentSize
+ type
+ Size
+ value
+
+ 50
+ 50
+ 0
+ 0
+
+
+
+ name
+ anchorPoint
+ type
+ Point
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ scale
+ type
+ ScaleLock
+ value
+
+ 1
+ 1
+
+ 0
+
+
+
+ name
+ color
+ type
+ Color3
+ value
+
+ 0.98594826459884644
+ 0.0
+ 0.026950567960739136
+ 1
+
+
+
+ name
+ opacity
+ type
+ Float
+ value
+ 1
+
+
+ seqExpanded
+
+
+
+ UUID
+ 5
+ animatedProperties
+
+ 0
+
+ color
+
+ keyframes
+
+
+ easing
+
+ type
+ 1
+
+ name
+ color
+ time
+ 0.0
+ type
+ 6
+ value
+
+ 0.99210119247436523
+ 0.60418778657913208
+ 0.034307416528463364
+ 1
+
+
+
+ name
+ color
+ type
+ 6
+
+ position
+
+ keyframes
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 1
+ type
+ 3
+ value
+
+ 0.0
+ 50
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 2
+ type
+ 3
+ value
+
+ 500
+ 50
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 3
+ type
+ 3
+ value
+
+ 500
+ 50
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 4
+ type
+ 3
+ value
+
+ 0.0
+ 50
+
+
+
+ name
+ position
+ type
+ 3
+
+
+
+ baseClass
+ CCNodeColor
+ children
+
+ customClass
+
+ displayName
+ node1
+ memberVarAssignmentName
+
+ memberVarAssignmentType
+ 1
+ properties
+
+
+ name
+ name
+ type
+ StringSimple
+ value
+ node1
+
+
+ baseValue
+
+ 0.0
+ 50
+
+ name
+ position
+ type
+ Position
+ value
+
+ 0.0
+ 50
+ 0
+ 0
+ 0
+
+
+
+ name
+ contentSize
+ type
+ Size
+ value
+
+ 50
+ 50
+ 0
+ 0
+
+
+
+ name
+ anchorPoint
+ type
+ Point
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ scale
+ type
+ ScaleLock
+ value
+
+ 1
+ 1
+
+ 0
+
+
+
+ baseValue
+
+ 0.99210119247436523
+ 0.60418778657913208
+ 0.034307416528463364
+ 1
+
+ name
+ color
+ type
+ Color3
+ value
+
+ 0.99210119247436523
+ 0.60418778657913208
+ 0.034307416528463364
+ 1
+
+
+
+ name
+ opacity
+ type
+ Float
+ value
+ 1
+
+
+ seqExpanded
+
+
+
+ UUID
+ 6
+ animatedProperties
+
+ 0
+
+ position
+
+ keyframes
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 2
+ type
+ 3
+ value
+
+ 0.0
+ 100
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 3
+ type
+ 3
+ value
+
+ 500
+ 100
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 4
+ type
+ 3
+ value
+
+ 0.0
+ 100
+
+
+
+ name
+ position
+ type
+ 3
+
+
+
+ baseClass
+ CCNodeColor
+ children
+
+ customClass
+
+ displayName
+ node2
+ memberVarAssignmentName
+
+ memberVarAssignmentType
+ 1
+ properties
+
+
+ name
+ name
+ type
+ StringSimple
+ value
+ node2
+
+
+ baseValue
+
+ 0.0
+ 100
+
+ name
+ position
+ type
+ Position
+ value
+
+ 0.0
+ 100
+ 0
+ 0
+ 0
+
+
+
+ name
+ contentSize
+ type
+ Size
+ value
+
+ 50
+ 50
+ 0
+ 0
+
+
+
+ name
+ anchorPoint
+ type
+ Point
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ scale
+ type
+ ScaleLock
+ value
+
+ 1
+ 1
+
+ 0
+
+
+
+ name
+ color
+ type
+ Color3
+ value
+
+ 0.60930913686752319
+ 1
+ 0.033254645764827728
+ 1
+
+
+
+ name
+ opacity
+ type
+ Float
+ value
+ 1
+
+
+ seqExpanded
+
+
+
+ customClass
+
+ displayName
+ CCNode
+ memberVarAssignmentName
+
+ memberVarAssignmentType
+ 1
+ properties
+
+
+ name
+ name
+ type
+ StringSimple
+ value
+
+
+
+ name
+ position
+ type
+ Position
+ value
+
+ 0.0
+ 0.0
+ 0
+ 0
+ 0
+
+
+
+ name
+ contentSize
+ type
+ Size
+ value
+
+ 1
+ 1
+ 2
+ 2
+
+
+
+ name
+ anchorPoint
+ type
+ Point
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ scale
+ type
+ ScaleLock
+ value
+
+ 1
+ 1
+
+ 0
+
+
+
+
+ notes
+
+ resolutions
+
+
+ centeredOrigin
+
+ ext
+ phone
+ height
+ 320
+ name
+ Phone Landscape
+ scale
+ 1
+ width
+ 568
+
+
+ centeredOrigin
+
+ ext
+ tablet phonehd
+ height
+ 384
+ name
+ Tablet Landscape
+ scale
+ 2
+ width
+ 512
+
+
+ centeredOrigin
+
+ ext
+ phone
+ height
+ 320
+ name
+ Phone Landscape (short)
+ scale
+ 1
+ width
+ 480
+
+
+ sequences
+
+
+ autoPlay
+
+ callbackChannel
+
+ keyframes
+
+
+ easing
+
+ type
+ 0
+
+ time
+ 2
+ type
+ 12
+ value
+
+ onMiddleOfAnimation
+ 2
+
+
+
+ easing
+
+ type
+ 0
+
+ time
+ 4
+ type
+ 12
+ value
+
+ onEndOfAnim1
+ 2
+
+
+
+ type
+ 11
+
+ chainedSequenceId
+ 0
+ length
+ 4
+ name
+ Default Timeline
+ offset
+ 0.0
+ position
+ 4
+ resolution
+ 30
+ scale
+ 75.125
+ sequenceId
+ 0
+ soundChannel
+
+ isExpanded
+
+ keyframes
+
+ type
+ 10
+
+
+
+ stageBorder
+ 0
+ stageColor
+ 0
+
+
diff --git a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest1.ccb.ppng b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest1.ccb.ppng
new file mode 100644
index 000000000..78631d9e5
Binary files /dev/null and b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest1.ccb.ppng differ
diff --git a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest2.ccb b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest2.ccb
new file mode 100644
index 000000000..c64ea941f
--- /dev/null
+++ b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest2.ccb
@@ -0,0 +1,590 @@
+
+
+
+
+ SequencerJoints
+
+ hidden
+
+ locked
+
+
+ UUID
+ 8
+ centeredOrigin
+
+ currentResolution
+ 0
+ currentSequenceId
+ 2
+ docDimensionsType
+ 0
+ fileType
+ CocosBuilder
+ fileVersion
+ 4
+ gridspaceHeight
+ 64
+ gridspaceWidth
+ 64
+ guides
+
+ joints
+
+ jsControlled
+
+ nodeGraph
+
+ UUID
+ 1
+ baseClass
+ CCNode
+ children
+
+
+ UUID
+ 4
+ animatedProperties
+
+ 1
+
+ position
+
+ keyframes
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 0.0
+ type
+ 3
+ value
+
+ 0.0
+ 200
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 1
+ type
+ 3
+ value
+
+ 500
+ 200
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 3
+ type
+ 3
+ value
+
+ 500
+ 200
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 4
+ type
+ 3
+ value
+
+ 0.0
+ 200
+
+
+
+ name
+ position
+ type
+ 3
+
+
+ 2
+
+ position
+
+ keyframes
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 0.0
+ type
+ 3
+ value
+
+ 0.0
+ 0.0
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 1
+ type
+ 3
+ value
+
+ 500
+ 0.0
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 3
+ type
+ 3
+ value
+
+ 500
+ 0.0
+
+
+
+ easing
+
+ type
+ 1
+
+ name
+ position
+ time
+ 4
+ type
+ 3
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ position
+ type
+ 3
+
+
+
+ baseClass
+ CCNodeColor
+ children
+
+ customClass
+
+ displayName
+ node0
+ memberVarAssignmentName
+
+ memberVarAssignmentType
+ 1
+ properties
+
+
+ name
+ name
+ type
+ StringSimple
+ value
+ node0
+
+
+ baseValue
+
+ 0.0
+ 0.0
+
+ name
+ position
+ type
+ Position
+ value
+
+ 0.0
+ 0.0
+ 0
+ 0
+ 0
+
+
+
+ name
+ contentSize
+ type
+ Size
+ value
+
+ 50
+ 50
+ 0
+ 0
+
+
+
+ name
+ anchorPoint
+ type
+ Point
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ scale
+ type
+ ScaleLock
+ value
+
+ 1
+ 1
+
+ 0
+
+
+
+ name
+ color
+ type
+ Color3
+ value
+
+ 0.98594826459884644
+ 0.0
+ 0.026950567960739136
+ 1
+
+
+
+ name
+ opacity
+ type
+ Float
+ value
+ 1
+
+
+ selected
+
+ seqExpanded
+
+
+
+ customClass
+
+ displayName
+ CCNode
+ memberVarAssignmentName
+
+ memberVarAssignmentType
+ 1
+ properties
+
+
+ name
+ name
+ type
+ StringSimple
+ value
+
+
+
+ name
+ position
+ type
+ Position
+ value
+
+ 0.0
+ 0.0
+ 0
+ 0
+ 0
+
+
+
+ name
+ contentSize
+ type
+ Size
+ value
+
+ 1
+ 1
+ 2
+ 2
+
+
+
+ name
+ anchorPoint
+ type
+ Point
+ value
+
+ 0.0
+ 0.0
+
+
+
+ name
+ scale
+ type
+ ScaleLock
+ value
+
+ 1
+ 1
+
+ 0
+
+
+
+
+ notes
+
+ resolutions
+
+
+ centeredOrigin
+
+ ext
+ phone
+ height
+ 320
+ name
+ Phone Landscape
+ scale
+ 1
+ width
+ 568
+
+
+ centeredOrigin
+
+ ext
+ tablet phonehd
+ height
+ 384
+ name
+ Tablet Landscape
+ scale
+ 2
+ width
+ 512
+
+
+ centeredOrigin
+
+ ext
+ phone
+ height
+ 320
+ name
+ Phone Landscape (short)
+ scale
+ 1
+ width
+ 480
+
+
+ sequences
+
+
+ autoPlay
+
+ callbackChannel
+
+ keyframes
+
+
+ easing
+
+ type
+ 0
+
+ time
+ 2
+ type
+ 12
+ value
+
+ onMiddleOfAnimation
+ 2
+
+
+
+ easing
+
+ type
+ 0
+
+ time
+ 4
+ type
+ 12
+ value
+
+ onEndOfAnim1
+ 2
+
+
+
+ type
+ 11
+
+ chainedSequenceId
+ -1
+ length
+ 4
+ name
+ T1
+ offset
+ 0.0
+ position
+ 4
+ resolution
+ 30
+ scale
+ 75.125
+ sequenceId
+ 1
+ soundChannel
+
+ isExpanded
+
+ keyframes
+
+ type
+ 10
+
+
+
+ autoPlay
+
+ callbackChannel
+
+ keyframes
+
+
+ easing
+
+ type
+ 0
+
+ time
+ 2
+ type
+ 12
+ value
+
+ onMiddleOfAnimation
+ 2
+
+
+
+ easing
+
+ type
+ 0
+
+ time
+ 4
+ type
+ 12
+ value
+
+ onEndOfAnim1
+ 2
+
+
+
+ type
+ 11
+
+ chainedSequenceId
+ -1
+ length
+ 4
+ name
+ T2
+ offset
+ 0.0
+ position
+ 0.0
+ resolution
+ 30
+ scale
+ 75.125
+ sequenceId
+ 2
+ soundChannel
+
+ isExpanded
+
+ keyframes
+
+ type
+ 10
+
+
+
+ stageBorder
+ 0
+ stageColor
+ 0
+
+
diff --git a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest2.ccb.ppng b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest2.ccb.ppng
new file mode 100644
index 000000000..09108a248
Binary files /dev/null and b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest2.ccb.ppng differ
diff --git a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/MainScene.ccb.ppng b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/MainScene.ccb.ppng
new file mode 100644
index 000000000..d8f590ed9
Binary files /dev/null and b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/MainScene.ccb.ppng differ
diff --git a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/Strings.ccbLang b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/Strings.ccbLang
new file mode 100644
index 000000000..d182ca545
--- /dev/null
+++ b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/Strings.ccbLang
@@ -0,0 +1,16 @@
+
+
+
+
+ activeLanguages
+
+ en
+
+ fileType
+ SpriteBuilderTranslations
+ fileVersion
+ 1
+ translations
+
+
+
diff --git a/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilderTestProject.ccbproj b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilderTestProject.ccbproj
new file mode 100644
index 000000000..1648d9903
--- /dev/null
+++ b/SpriteBuilder/SpriteBuilder Tests/SpriteBuilderTestProject.spritebuilder/SpriteBuilderTestProject.ccbproj
@@ -0,0 +1,96 @@
+
+
+
+
+ cocos2dUpdateIgnoredVersions
+
+ defaultOrientation
+ 0
+ designTarget
+ 0
+ deviceOrientationLandscapeLeft
+
+ deviceOrientationLandscapeRight
+
+ deviceOrientationPortrait
+
+ deviceOrientationUpsideDown
+
+ deviceScaling
+ 0
+ engine
+ 0
+ exporter
+ ccbi
+ fileType
+ CocosBuilderProject
+ fileVersion
+ 1
+ flattenPaths
+
+ needRepublish
+
+ onlyPublishCCBs
+
+ publishAudioQuality_android
+ 4
+ publishAudioQuality_ios
+ 4
+ publishDirectory
+ Source/Resources/Published-iOS
+ publishDirectoryAndroid
+ Source/Resources/Published-Android
+ publishEnabledAndroid
+
+ publishEnablediPhone
+
+ publishEnvironment
+ 0
+ publishResolution_android_phone
+
+ publishResolution_android_phonehd
+
+ publishResolution_android_tablet
+
+ publishResolution_android_tablethd
+
+ publishResolution_ios_phone
+
+ publishResolution_ios_phonehd
+
+ publishResolution_ios_tablet
+
+ publishResolution_ios_tablethd
+
+ publishToZipFile
+
+ resourceAutoScaleFactor
+ 4
+ resourcePaths
+
+
+ path
+ SpriteBuilder Resources
+
+
+ resourceProperties
+
+
+
+ previewFolderHidden
+
+
+ Sprites
+
+ ccbResources
+
+ previewFolderHidden
+
+
+
+ versionStr
+ Version: 0.9
+GitHub: 551c4795b8
+
+
+
diff --git a/SpriteBuilder/SpriteBuilder.xcodeproj/project.pbxproj b/SpriteBuilder/SpriteBuilder.xcodeproj/project.pbxproj
index da7915551..60b521784 100644
--- a/SpriteBuilder/SpriteBuilder.xcodeproj/project.pbxproj
+++ b/SpriteBuilder/SpriteBuilder.xcodeproj/project.pbxproj
@@ -129,6 +129,7 @@
8392007018ED91BC00B6C429 /* Cocos2dUpdater+Errors.m in Sources */ = {isa = PBXBuildFile; fileRef = 8392006E18ED91BC00B6C429 /* Cocos2dUpdater+Errors.m */; };
83DC65EA18D898D50028EF72 /* SBUserDefaultsKeys.m in Sources */ = {isa = PBXBuildFile; fileRef = 83DC65E918D898D50028EF72 /* SBUserDefaultsKeys.m */; };
83F8673418D1DCEA007441E4 /* SBErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 83F8673318D1DCEA007441E4 /* SBErrors.m */; };
+ 9203805B19465679000A8816 /* CCAnimation_Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9203805A19465679000A8816 /* CCAnimation_Tests.m */; };
92154AC718A5531800BD215C /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92154ABF18A5531800BD215C /* CCBPProperties.plist */; };
92154AC918A5531800BD215C /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 92154AC218A5531800BD215C /* InfoPlist.strings */; };
92154ACA18A5531800BD215C /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 92154AC418A5531800BD215C /* Icon.png */; };
@@ -176,6 +177,8 @@
921EEB2418ADB7EA00D864C2 /* GeometryUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 921EEB2318ADB7EA00D864C2 /* GeometryUtil.m */; };
921EEB2918ADE43700D864C2 /* InspectorNodeReference.xib in Resources */ = {isa = PBXBuildFile; fileRef = 921EEB2818ADE43700D864C2 /* InspectorNodeReference.xib */; };
921EEB2C18ADE5C600D864C2 /* InspectorNodeReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 921EEB2B18ADE5C600D864C2 /* InspectorNodeReference.m */; };
+ 922CC396194676B600B34854 /* AnimationTest1.ccb in Resources */ = {isa = PBXBuildFile; fileRef = 922CC395194676B600B34854 /* AnimationTest1.ccb */; };
+ 922CC3981946873A00B34854 /* AnimationTest2.ccb in Resources */ = {isa = PBXBuildFile; fileRef = 922CC3971946873A00B34854 /* AnimationTest2.ccb */; };
922E8EF718BFE47A008E1764 /* InspectorFloatCheck.m in Sources */ = {isa = PBXBuildFile; fileRef = 922E8EF518BFE47A008E1764 /* InspectorFloatCheck.m */; };
922E8EF818BFE47A008E1764 /* InspectorFloatCheck.xib in Resources */ = {isa = PBXBuildFile; fileRef = 922E8EF618BFE47A008E1764 /* InspectorFloatCheck.xib */; };
922E8EFE18C13666008E1764 /* OutletDrawWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 922E8EFD18C13666008E1764 /* OutletDrawWindow.m */; };
@@ -214,6 +217,8 @@
929C9FC0187E391C009ED9DF /* InspectorPopoverFloat.xib in Resources */ = {isa = PBXBuildFile; fileRef = 929C9FBD187E38AC009ED9DF /* InspectorPopoverFloat.xib */; };
92B1B9D5192429A400DB91F5 /* joint-pivot-range.png in Resources */ = {isa = PBXBuildFile; fileRef = 92B1B9D3192429A400DB91F5 /* joint-pivot-range.png */; };
92B1B9D6192429A400DB91F5 /* joint-pivot-range@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92B1B9D4192429A400DB91F5 /* joint-pivot-range@2x.png */; };
+ 92B6D0DA193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib in Resources */ = {isa = PBXBuildFile; fileRef = 92B6D0D9193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib */; };
+ 92B6D0DE193FE32100FD27F4 /* InspectorPhysicsUnavailable.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B6D0DD193FE32100FD27F4 /* InspectorPhysicsUnavailable.m */; };
92B7900518C808B7007DF895 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
92B792C918C92C60007DF895 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C018C92C60007DF895 /* CCBPProperties.plist */; };
92B792CA18C92C60007DF895 /* CCPhysicsSpringJoint-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C118C92C60007DF895 /* CCPhysicsSpringJoint-Info.plist */; };
@@ -834,6 +839,13 @@
remoteGlobalIDString = E01E663C121CA00A001A484F;
remoteInfo = cocos2d;
};
+ 9203806019465955000A8816 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E398C02114FB81A30078E771;
+ remoteInfo = "Cocos2D iPhone";
+ };
92154AE118A5567400BD215C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
@@ -1306,6 +1318,7 @@
83DC65E918D898D50028EF72 /* SBUserDefaultsKeys.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBUserDefaultsKeys.m; sourceTree = ""; };
83F8673218D1DCEA007441E4 /* SBErrors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBErrors.h; sourceTree = ""; };
83F8673318D1DCEA007441E4 /* SBErrors.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBErrors.m; sourceTree = ""; };
+ 9203805A19465679000A8816 /* CCAnimation_Tests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAnimation_Tests.m; sourceTree = ""; };
92101C2C1891F1BB0004F93B /* CCBPublishDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCBPublishDelegate.h; sourceTree = ""; };
92154ABD18A5531800BD215C /* CCBPhysicsPivotJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPhysicsPivotJoint.h; sourceTree = ""; };
92154ABE18A5531800BD215C /* CCBPhysicsPivotJoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPhysicsPivotJoint.m; sourceTree = ""; };
@@ -1357,6 +1370,8 @@
921EEB2818ADE43700D864C2 /* InspectorNodeReference.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorNodeReference.xib; sourceTree = ""; };
921EEB2A18ADE5C600D864C2 /* InspectorNodeReference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorNodeReference.h; sourceTree = ""; };
921EEB2B18ADE5C600D864C2 /* InspectorNodeReference.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorNodeReference.m; sourceTree = ""; };
+ 922CC395194676B600B34854 /* AnimationTest1.ccb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = AnimationTest1.ccb; path = "SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest1.ccb"; sourceTree = ""; };
+ 922CC3971946873A00B34854 /* AnimationTest2.ccb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = AnimationTest2.ccb; path = "SpriteBuilderTestProject.spritebuilder/SpriteBuilder Resources/AnimationTest2.ccb"; sourceTree = ""; };
922E8EF418BFE47A008E1764 /* InspectorFloatCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFloatCheck.h; sourceTree = ""; };
922E8EF518BFE47A008E1764 /* InspectorFloatCheck.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFloatCheck.m; sourceTree = ""; };
922E8EF618BFE47A008E1764 /* InspectorFloatCheck.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFloatCheck.xib; sourceTree = ""; };
@@ -1406,6 +1421,9 @@
929C9FBD187E38AC009ED9DF /* InspectorPopoverFloat.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverFloat.xib; sourceTree = ""; };
92B1B9D3192429A400DB91F5 /* joint-pivot-range.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-range.png"; sourceTree = ""; };
92B1B9D4192429A400DB91F5 /* joint-pivot-range@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-range@2x.png"; sourceTree = ""; };
+ 92B6D0D9193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPhysicsUnavailable.xib; sourceTree = ""; };
+ 92B6D0DC193FE32100FD27F4 /* InspectorPhysicsUnavailable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorPhysicsUnavailable.h; sourceTree = ""; };
+ 92B6D0DD193FE32100FD27F4 /* InspectorPhysicsUnavailable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorPhysicsUnavailable.m; sourceTree = ""; };
92B7900D18C808B7007DF895 /* CCPhysicsSpringJoint.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCPhysicsSpringJoint.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; };
92B792BC18C92C60007DF895 /* CCBPhyicsSpringJointPlaceholder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPhyicsSpringJointPlaceholder.h; sourceTree = ""; };
92B792BD18C92C60007DF895 /* CCBPhyicsSpringJointPlaceholder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPhyicsSpringJointPlaceholder.m; sourceTree = ""; };
@@ -3286,6 +3304,8 @@
833A5C4D192B48CB001837B3 /* SpriteBuilder Tests */ = {
isa = PBXGroup;
children = (
+ 922CC3941946769B00B34854 /* Resources */,
+ 9203805A19465679000A8816 /* CCAnimation_Tests.m */,
833A5C5B192B4981001837B3 /* CCBReader_Tests.m */,
833A5C4E192B48CB001837B3 /* Supporting Files */,
);
@@ -3359,6 +3379,15 @@
name = "Supporting Files";
sourceTree = "";
};
+ 922CC3941946769B00B34854 /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 922CC3971946873A00B34854 /* AnimationTest2.ccb */,
+ 922CC395194676B600B34854 /* AnimationTest1.ccb */,
+ );
+ name = Resources;
+ sourceTree = "";
+ };
926D13E718B57E1500582959 /* CCPhysicsPinJoint */ = {
isa = PBXGroup;
children = (
@@ -4466,6 +4495,9 @@
92B91021193412A600E346B5 /* InspectorAnimation.xib */,
92B91024193413F500E346B5 /* InspectorAnimation.h */,
92B91025193413F500E346B5 /* InspectorAnimation.m */,
+ 92B6D0D9193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib */,
+ 92B6D0DC193FE32100FD27F4 /* InspectorPhysicsUnavailable.h */,
+ 92B6D0DD193FE32100FD27F4 /* InspectorPhysicsUnavailable.m */,
);
name = "Inspector Properties";
sourceTree = "";
@@ -4702,6 +4734,7 @@
buildRules = (
);
dependencies = (
+ 9203806119465955000A8816 /* PBXTargetDependency */,
833A5C60192B4F00001837B3 /* PBXTargetDependency */,
833A5C57192B48CB001837B3 /* PBXTargetDependency */,
);
@@ -5489,6 +5522,7 @@
E3E8B4AA157D127300373983 /* seq-scaleslide-bg.png in Resources */,
92B1B9D5192429A400DB91F5 /* joint-pivot-range.png in Resources */,
E36ECD6415869779003C177E /* seq-btn-back.png in Resources */,
+ 92B6D0DA193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib in Resources */,
E36ECD6515869779003C177E /* seq-keyframe-sel.png in Resources */,
E36ECD6615869779003C177E /* seq-keyframe.png in Resources */,
E39B63A11587E56D009BDE38 /* seq-row-0-bg.png in Resources */,
@@ -5657,7 +5691,9 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ 922CC3981946873A00B34854 /* AnimationTest2.ccb in Resources */,
833A5C52192B48CB001837B3 /* InfoPlist.strings in Resources */,
+ 922CC396194676B600B34854 /* AnimationTest1.ccb in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -5997,6 +6033,7 @@
77E1992513858D78006C361B /* PSMRolloverButton.m in Sources */,
77E1992613858D78006C361B /* PSMTabBarCell.m in Sources */,
77E1992713858D78006C361B /* PSMTabBarControl.m in Sources */,
+ 92B6D0DE193FE32100FD27F4 /* InspectorPhysicsUnavailable.m in Sources */,
77E1992813858D78006C361B /* PSMTabBarController.m in Sources */,
77E1992913858D78006C361B /* PSMTabDragAssistant.m in Sources */,
77E1992A13858D78006C361B /* PSMTabDragView.m in Sources */,
@@ -6209,6 +6246,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ 9203805B19465679000A8816 /* CCAnimation_Tests.m in Sources */,
833A5C5C192B4981001837B3 /* CCBReader_Tests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
@@ -6455,6 +6493,11 @@
name = cocos2d;
targetProxy = 833A5C5F192B4F00001837B3 /* PBXContainerItemProxy */;
};
+ 9203806119465955000A8816 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = E398C02114FB81A30078E771 /* Cocos2D iPhone */;
+ targetProxy = 9203806019465955000A8816 /* PBXContainerItemProxy */;
+ };
92154AE218A5567400BD215C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 92154ACF18A5560B00BD215C /* CCPhysicsPivotJoint */;
@@ -6863,9 +6906,6 @@
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_ARC = YES;
- CODE_SIGN_ENTITLEMENTS = SpriteBuilder.entitlements;
- CODE_SIGN_IDENTITY = "Mac Developer";
- "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Mac Developer";
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
@@ -6893,10 +6933,9 @@
"\"$(SRCROOT)/libs/Tupac\"",
"\"$(SRCROOT)/libs/PVRTexTool\"",
);
- "OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--deep";
+ MACOSX_DEPLOYMENT_TARGET = 10.9;
OTHER_LDFLAGS = "-all_load";
PRODUCT_NAME = SpriteBuilder;
- PROVISIONING_PROFILE = "3C61F300-140F-4802-AB93-852E91DF6DEB";
WRAPPER_EXTENSION = app;
};
name = Debug;
@@ -6907,9 +6946,6 @@
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_ARC = YES;
- CODE_SIGN_ENTITLEMENTS = SpriteBuilder.entitlements;
- CODE_SIGN_IDENTITY = "Mac Developer";
- "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Mac Developer";
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
@@ -6937,10 +6973,9 @@
"\"$(SRCROOT)/libs/Tupac\"",
"\"$(SRCROOT)/libs/PVRTexTool\"",
);
- "OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--deep";
+ MACOSX_DEPLOYMENT_TARGET = 10.9;
OTHER_LDFLAGS = "-all_load";
PRODUCT_NAME = SpriteBuilder;
- PROVISIONING_PROFILE = "3C61F300-140F-4802-AB93-852E91DF6DEB";
WRAPPER_EXTENSION = app;
};
name = Release;
diff --git a/SpriteBuilder/SpriteBuilder.xcodeproj/project.pbxproj.orig b/SpriteBuilder/SpriteBuilder.xcodeproj/project.pbxproj.orig
new file mode 100644
index 000000000..2e4666012
--- /dev/null
+++ b/SpriteBuilder/SpriteBuilder.xcodeproj/project.pbxproj.orig
@@ -0,0 +1,9302 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 46;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 4D0C1E7618F4760800B028CA /* SnapLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D0C1E7318F472D600B028CA /* SnapLayer.m */; };
+ 4D0C1E7918F49A3700B028CA /* CCNode+PositionExtentions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D0C1E7818F49A3700B028CA /* CCNode+PositionExtentions.m */; };
+ 4DB7C95719083B9C00ECE19F /* NotificationNames.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DB7C95419083ACF00ECE19F /* NotificationNames.m */; };
+ 581130601639C52500A86D70 /* seq-startmarker.png in Resources */ = {isa = PBXBuildFile; fileRef = 5811305F1639C52000A86D70 /* seq-startmarker.png */; };
+ 581BCFE8162DADE7007DE600 /* CCBSplitHorizontalView.m in Sources */ = {isa = PBXBuildFile; fileRef = 581BCFE7162DADE7007DE600 /* CCBSplitHorizontalView.m */; };
+ 58FA2034162D73F3006B8856 /* TB_bottomPanel.png in Resources */ = {isa = PBXBuildFile; fileRef = 58FA2031162D73F3006B8856 /* TB_bottomPanel.png */; };
+ 58FA2035162D73F3006B8856 /* TB_leftPanel.png in Resources */ = {isa = PBXBuildFile; fileRef = 58FA2032162D73F3006B8856 /* TB_leftPanel.png */; };
+ 58FA2036162D73F3006B8856 /* TB_rightPanel.png in Resources */ = {isa = PBXBuildFile; fileRef = 58FA2033162D73F3006B8856 /* TB_rightPanel.png */; };
+ 5BA3DC35192110B90055DD96 /* GuideGridSizeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BA3DC30192108AB0055DD96 /* GuideGridSizeWindow.m */; };
+ 5BA3DC36192110BA0055DD96 /* GuideGridSizeWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5BA3DC31192108AB0055DD96 /* GuideGridSizeWindow.xib */; };
+ 77055FB513D0E5CA009DD63A /* logo-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 77055FB313D0E5CA009DD63A /* logo-icon.png */; };
+ 77055FB613D0E5CA009DD63A /* logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 77055FB413D0E5CA009DD63A /* logo.png */; };
+ 77156DB1137F0351005EF746 /* CCBSpriteSheetParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 77156DB0137F0351005EF746 /* CCBSpriteSheetParser.m */; };
+ 771B2B321353818200B260BA /* NewDocWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 771B2B311353818000B260BA /* NewDocWindowController.m */; };
+ 7729F03A1390215400CAA44F /* frame-iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7729F0391390215400CAA44F /* frame-iphone.png */; };
+ 7729F03D1390600200CAA44F /* frame-ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7729F03C1390600200CAA44F /* frame-ipad.png */; };
+ 772BE565133C06320009B5B9 /* NSFlippedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 772BE564133C06320009B5B9 /* NSFlippedView.m */; };
+ 772BE567133E40D60009B5B9 /* missing-texture.png in Resources */ = {isa = PBXBuildFile; fileRef = 772BE566133E40D60009B5B9 /* missing-texture.png */; };
+ 772BE572133E48350009B5B9 /* CCBGlobals.m in Sources */ = {isa = PBXBuildFile; fileRef = 772BE571133E48340009B5B9 /* CCBGlobals.m */; };
+ 772BE57C134398EE0009B5B9 /* NewDocWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 772BE57B134398EE0009B5B9 /* NewDocWindow.xib */; };
+ 772BE5801343A6EF0009B5B9 /* CCBWriterInternal.m in Sources */ = {isa = PBXBuildFile; fileRef = 772BE57F1343A6EE0009B5B9 /* CCBWriterInternal.m */; };
+ 772BE58E134BB6C00009B5B9 /* CCBDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 772BE58D134BB6BE0009B5B9 /* CCBDocument.m */; };
+ 772BE594134BC2BF0009B5B9 /* CCBReaderInternalV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 772BE593134BC2BA0009B5B9 /* CCBReaderInternalV1.m */; };
+ 774E4EC2136D98AB0025D0A8 /* select-bl.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4EBD136D98AB0025D0A8 /* select-bl.png */; };
+ 774E4EC3136D98AB0025D0A8 /* select-br.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4EBE136D98AB0025D0A8 /* select-br.png */; };
+ 774E4EC4136D98AB0025D0A8 /* select-pt.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4EBF136D98AB0025D0A8 /* select-pt.png */; };
+ 774E4EC5136D98AB0025D0A8 /* select-tl.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4EC0136D98AB0025D0A8 /* select-tl.png */; };
+ 774E4EC6136D98AB0025D0A8 /* select-tr.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4EC1136D98AB0025D0A8 /* select-tr.png */; };
+ 774E4ECE136DFFB70025D0A8 /* btn-move-hi.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4EC8136DFFB70025D0A8 /* btn-move-hi.png */; };
+ 774E4ECF136DFFB70025D0A8 /* btn-move.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4EC9136DFFB70025D0A8 /* btn-move.png */; };
+ 774E4ED0136DFFB70025D0A8 /* btn-rotate-hi.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4ECA136DFFB70025D0A8 /* btn-rotate-hi.png */; };
+ 774E4ED1136DFFB70025D0A8 /* btn-rotate.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4ECB136DFFB70025D0A8 /* btn-rotate.png */; };
+ 774E4ED2136DFFB70025D0A8 /* btn-scale-hi.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4ECC136DFFB70025D0A8 /* btn-scale-hi.png */; };
+ 774E4ED3136DFFB70025D0A8 /* btn-scale.png in Resources */ = {isa = PBXBuildFile; fileRef = 774E4ECD136DFFB70025D0A8 /* btn-scale.png */; };
+ 774F95C613638D74005D43EB /* missing-particle-texture.png in Resources */ = {isa = PBXBuildFile; fileRef = 774F95C513638D74005D43EB /* missing-particle-texture.png */; };
+ 776A370B139544A200960E94 /* TB_actualSize.png in Resources */ = {isa = PBXBuildFile; fileRef = 776A3706139544A200960E94 /* TB_actualSize.png */; };
+ 776A370C139544A200960E94 /* TB_grab.png in Resources */ = {isa = PBXBuildFile; fileRef = 776A3707139544A200960E94 /* TB_grab.png */; };
+ 776A370D139544A200960E94 /* TB_select.png in Resources */ = {isa = PBXBuildFile; fileRef = 776A3708139544A200960E94 /* TB_select.png */; };
+ 776A370E139544A200960E94 /* TB_zoomIn.png in Resources */ = {isa = PBXBuildFile; fileRef = 776A3709139544A200960E94 /* TB_zoomIn.png */; };
+ 776A370F139544A200960E94 /* TB_zoomOut.png in Resources */ = {isa = PBXBuildFile; fileRef = 776A370A139544A200960E94 /* TB_zoomOut.png */; };
+ 776A37161395925D00960E94 /* Quartz.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 776A37151395925D00960E94 /* Quartz.framework */; };
+ 776A37B61398D6BF00960E94 /* CCBGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 776A37B51398D6BD00960E94 /* CCBGLView.m */; };
+ 776A37B8139BCE3600960E94 /* TB_imageAssets.png in Resources */ = {isa = PBXBuildFile; fileRef = 776A37B7139BCE3600960E94 /* TB_imageAssets.png */; };
+ 776C683E1385C02000153214 /* CCBOutlineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 776C683D1385C02000153214 /* CCBOutlineView.m */; };
+ 776C68421385C4F100153214 /* CCBTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 776C68411385C4F100153214 /* CCBTextFieldCell.m */; };
+ 776C68451385D37E00153214 /* CCBTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 776C68441385D37D00153214 /* CCBTableView.m */; };
+ 776C68911388107400153214 /* missing-font.fnt in Resources */ = {isa = PBXBuildFile; fileRef = 776C688F1388107400153214 /* missing-font.fnt */; };
+ 776C68921388107400153214 /* missing-font.png in Resources */ = {isa = PBXBuildFile; fileRef = 776C68901388107400153214 /* missing-font.png */; };
+ 776C6896138874C200153214 /* dsa_pub.pem in Resources */ = {isa = PBXBuildFile; fileRef = 776C6895138874C200153214 /* dsa_pub.pem */; };
+ 7789ABC3133AA82000CEFCC7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ 7789ABCD133AA82000CEFCC7 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7789ABCB133AA82000CEFCC7 /* InfoPlist.strings */; };
+ 7789ABD0133AA82000CEFCC7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7789ABCF133AA82000CEFCC7 /* main.m */; };
+ 7789ABD3133AA82000CEFCC7 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 7789ABD1133AA82000CEFCC7 /* Credits.rtf */; };
+ 7789ABD6133AA82000CEFCC7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7789ABD5133AA82000CEFCC7 /* AppDelegate.m */; };
+ 7789ABD9133AA82000CEFCC7 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7789ABD7133AA82000CEFCC7 /* MainMenu.xib */; };
+ 7789ABE8133AB10500CEFCC7 /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABE7133AB10500CEFCC7 /* ApplicationServices.framework */; };
+ 7789ABEA133AB10E00CEFCC7 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABE9133AB10E00CEFCC7 /* QuartzCore.framework */; };
+ 7789ABEC133AB12000CEFCC7 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABEB133AB12000CEFCC7 /* OpenGL.framework */; };
+ 7789ABEE133AB12F00CEFCC7 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABED133AB12F00CEFCC7 /* libz.dylib */; };
+ 7789ACEA133AB47A00CEFCC7 /* CocosScene.m in Sources */ = {isa = PBXBuildFile; fileRef = 7789ACE9133AB47A00CEFCC7 /* CocosScene.m */; };
+ 7789ACEF133AB6A700CEFCC7 /* icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 7789ACED133AB6A700CEFCC7 /* icon.icns */; };
+ 7789ACF1133BD5E800CEFCC7 /* header-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7789ACF0133BD5E800CEFCC7 /* header-bg.png */; };
+ 77D33E95138E714700012A88 /* ExceptionHandling.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77D33E94138E714700012A88 /* ExceptionHandling.framework */; };
+ 77D33EAB138EA4F900012A88 /* CCBUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 77D33EAA138EA4F800012A88 /* CCBUtil.m */; };
+ 77D33EAD138EFBD800012A88 /* StageSizeWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 77D33EAC138EFBD800012A88 /* StageSizeWindow.xib */; };
+ 77E1992013858D78006C361B /* NSBezierPath_AMShading.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1990613858D78006C361B /* NSBezierPath_AMShading.m */; };
+ 77E1992113858D78006C361B /* NSString_AITruncation.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1990813858D78006C361B /* NSString_AITruncation.m */; };
+ 77E1992213858D78006C361B /* PSMMetalTabStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1990A13858D78006C361B /* PSMMetalTabStyle.m */; };
+ 77E1992313858D78006C361B /* PSMOverflowPopUpButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1990C13858D78006C361B /* PSMOverflowPopUpButton.m */; };
+ 77E1992413858D78006C361B /* PSMProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1990E13858D78006C361B /* PSMProgressIndicator.m */; };
+ 77E1992513858D78006C361B /* PSMRolloverButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991013858D78006C361B /* PSMRolloverButton.m */; };
+ 77E1992613858D78006C361B /* PSMTabBarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991213858D78006C361B /* PSMTabBarCell.m */; };
+ 77E1992713858D78006C361B /* PSMTabBarControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991413858D78006C361B /* PSMTabBarControl.m */; };
+ 77E1992813858D78006C361B /* PSMTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991613858D78006C361B /* PSMTabBarController.m */; };
+ 77E1992913858D78006C361B /* PSMTabDragAssistant.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991813858D78006C361B /* PSMTabDragAssistant.m */; };
+ 77E1992A13858D78006C361B /* PSMTabDragView.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991A13858D78006C361B /* PSMTabDragView.m */; };
+ 77E1992B13858D78006C361B /* PSMTabDragWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991C13858D78006C361B /* PSMTabDragWindow.m */; };
+ 77E1992C13858D78006C361B /* PSMTabDragWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1991E13858D78006C361B /* PSMTabDragWindowController.m */; };
+ 77E1995213858DE0006C361B /* overflowImage.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994613858DE0006C361B /* overflowImage.png */; };
+ 77E1995313858DE0006C361B /* overflowImagePressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994713858DE0006C361B /* overflowImagePressed.png */; };
+ 77E1995413858DE0006C361B /* pi.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994813858DE0006C361B /* pi.png */; };
+ 77E1995513858DE0006C361B /* TabClose_Dirty_Pressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994913858DE0006C361B /* TabClose_Dirty_Pressed.png */; };
+ 77E1995613858DE0006C361B /* TabClose_Dirty_Rollover.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994A13858DE0006C361B /* TabClose_Dirty_Rollover.png */; };
+ 77E1995713858DE0006C361B /* TabClose_Dirty.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994B13858DE0006C361B /* TabClose_Dirty.png */; };
+ 77E1995813858DE0006C361B /* TabClose_Front_Pressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994C13858DE0006C361B /* TabClose_Front_Pressed.png */; };
+ 77E1995913858DE0006C361B /* TabClose_Front_Rollover.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994D13858DE0006C361B /* TabClose_Front_Rollover.png */; };
+ 77E1995A13858DE0006C361B /* TabClose_Front.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994E13858DE0006C361B /* TabClose_Front.png */; };
+ 77E1995B13858DE0006C361B /* TabNewMetal.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1994F13858DE0006C361B /* TabNewMetal.png */; };
+ 77E1995C13858DE0006C361B /* TabNewMetalPressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1995013858DE0006C361B /* TabNewMetalPressed.png */; };
+ 77E1995D13858DE0006C361B /* TabNewMetalRollover.png in Resources */ = {isa = PBXBuildFile; fileRef = 77E1995113858DE0006C361B /* TabNewMetalRollover.png */; };
+ 77E7D04B138F777A00E8EE67 /* CCBModalSheetController.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E7D04A138F777A00E8EE67 /* CCBModalSheetController.m */; };
+ 77E7D04F138F78F600E8EE67 /* StageSizeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E7D04E138F78F600E8EE67 /* StageSizeWindow.m */; };
+ 7B5135C21947CC2500DE177D /* LocalizationInAppPurchasesPIDs.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7B5135C11947CC2500DE177D /* LocalizationInAppPurchasesPIDs.plist */; };
+ 7BCC1C0D194904190062DF38 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7BCC1C0C194904190062DF38 /* StoreKit.framework */; };
+ 7BF55303193F8A7500183F09 /* LocalizationTranslateWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BF55302193F8A7500183F09 /* LocalizationTranslateWindow.xib */; };
+ 7BF55307193F912200183F09 /* LocalizationTranslateWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF55306193F912200183F09 /* LocalizationTranslateWindow.m */; };
+ 80271CCC1862478D00917BC0 /* InspectorStringSimple.m in Sources */ = {isa = PBXBuildFile; fileRef = 8076F94D18624318003C4153 /* InspectorStringSimple.m */; };
+ 80279C7F183A8EAB005C6050 /* WarningCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E97F6318370F400052647D /* WarningCell.m */; };
+ 8045F136183ADA900082BD94 /* seq-visible.png in Resources */ = {isa = PBXBuildFile; fileRef = 8045F12C183AD6D30082BD94 /* seq-visible.png */; };
+ 8045F137183ADA900082BD94 /* seq-notset.png in Resources */ = {isa = PBXBuildFile; fileRef = 8045F12D183AD6D30082BD94 /* seq-notset.png */; };
+ 8045F138183ADA900082BD94 /* seq-locked.png in Resources */ = {isa = PBXBuildFile; fileRef = 8045F134183AD9B90082BD94 /* seq-locked.png */; };
+ 8045F13D183AF3FF0082BD94 /* SequencerButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8045F13B183AF1DC0082BD94 /* SequencerButtonCell.m */; };
+ 8076F9531862459A003C4153 /* InspectorStringSimple.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8076F9521862459A003C4153 /* InspectorStringSimple.xib */; };
+ 8098525A182C40170054BBF3 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80985259182C40170054BBF3 /* CoreMedia.framework */; };
+ 80AD79A21863878B00B653B7 /* libPVRTexLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 80AD79A01863871200B653B7 /* libPVRTexLib.a */; };
+ 80B149C9183D73930085935B /* SoundFileImageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 80B149C7183D55E60085935B /* SoundFileImageController.m */; };
+ 80E95C5A1836E44900D864CA /* select-locked.png in Resources */ = {isa = PBXBuildFile; fileRef = 80E95C541836E41C00D864CA /* select-locked.png */; };
+ 80F90905183C188400A714FC /* seq-visible-faint.png in Resources */ = {isa = PBXBuildFile; fileRef = 80F908FF183C186200A714FC /* seq-visible-faint.png */; };
+ 80FBACC31833FAE000C4BB69 /* WarningTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D06081183317F2001F27F9 /* WarningTableView.m */; };
+ 80FBACC41833FAE000C4BB69 /* WarningTableViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 80F936F11833F8970032454F /* WarningTableViewHandler.m */; };
+ 80FBACCD183423F800C4BB69 /* inspector-warning@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 80FBACC9183422BD00C4BB69 /* inspector-warning@2x.png */; };
+ 80FBACCE183423F800C4BB69 /* inspector-warning.png in Resources */ = {isa = PBXBuildFile; fileRef = 80FBACCA183422BD00C4BB69 /* inspector-warning.png */; };
+ 80FBACD91834553000C4BB69 /* visible-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 80FBACD71834530100C4BB69 /* visible-icon.png */; };
+ 833A5C4C192B48CB001837B3 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 833A5C4B192B48CB001837B3 /* XCTest.framework */; };
+ 833A5C52192B48CB001837B3 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 833A5C50192B48CB001837B3 /* InfoPlist.strings */; };
+ 833A5C5C192B4981001837B3 /* CCBReader_Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 833A5C5B192B4981001837B3 /* CCBReader_Tests.m */; };
+ 8341326B18DADF9E0088FFAB /* optipng in Resources */ = {isa = PBXBuildFile; fileRef = 8341326A18DADF9E0088FFAB /* optipng */; };
+ 835DB0CB17156421003A2F7B /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 835DB0CA17156421003A2F7B /* Security.framework */; };
+ 8392006F18ED91BC00B6C429 /* Cocos2dUpdater.m in Sources */ = {isa = PBXBuildFile; fileRef = 8392006C18ED91BC00B6C429 /* Cocos2dUpdater.m */; };
+ 8392007018ED91BC00B6C429 /* Cocos2dUpdater+Errors.m in Sources */ = {isa = PBXBuildFile; fileRef = 8392006E18ED91BC00B6C429 /* Cocos2dUpdater+Errors.m */; };
+ 83DC65EA18D898D50028EF72 /* SBUserDefaultsKeys.m in Sources */ = {isa = PBXBuildFile; fileRef = 83DC65E918D898D50028EF72 /* SBUserDefaultsKeys.m */; };
+ 83F8673418D1DCEA007441E4 /* SBErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 83F8673318D1DCEA007441E4 /* SBErrors.m */; };
+ 9203805B19465679000A8816 /* CCAnimation_Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9203805A19465679000A8816 /* CCAnimation_Tests.m */; };
+ 92154AC718A5531800BD215C /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92154ABF18A5531800BD215C /* CCBPProperties.plist */; };
+ 92154AC918A5531800BD215C /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 92154AC218A5531800BD215C /* InfoPlist.strings */; };
+ 92154ACA18A5531800BD215C /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 92154AC418A5531800BD215C /* Icon.png */; };
+ 92154ACB18A5531800BD215C /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92154AC518A5531800BD215C /* Icon@2x.png */; };
+ 92154AD318A5560B00BD215C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ 92154ADE18A5565C00BD215C /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92154ABF18A5531800BD215C /* CCBPProperties.plist */; };
+ 92154ADF18A5565C00BD215C /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 92154AC218A5531800BD215C /* InfoPlist.strings */; };
+ 92154AE018A5565C00BD215C /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 92154AC418A5531800BD215C /* Icon.png */; };
+ 92154AE318A55A4200BD215C /* CCPhysicsPivotJoint.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 92154ADB18A5560B00BD215C /* CCPhysicsPivotJoint.ccbPlugNode */; };
+ 9218DF291919B04D0033851E /* joint-pivot-handle-min.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF0F1919B04D0033851E /* joint-pivot-handle-min.png */; };
+ 9218DF2A1919B04D0033851E /* joint-pivot-handle-ratchet.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF101919B04D0033851E /* joint-pivot-handle-ratchet.png */; };
+ 9218DF2B1919B04D0033851E /* joint-pivot-handle-ratchetmark.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF111919B04D0033851E /* joint-pivot-handle-ratchetmark.png */; };
+ 9218DF2C1919B04D0033851E /* joint-pivot-handle-ref.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF121919B04D0033851E /* joint-pivot-handle-ref.png */; };
+ 9218DF2D1919B04D0033851E /* joint-pivot-mode-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF131919B04D0033851E /* joint-pivot-mode-bg.png */; };
+ 9218DF2E1919B04D0033851E /* joint-pivot-mode-l-off.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF141919B04D0033851E /* joint-pivot-mode-l-off.png */; };
+ 9218DF2F1919B04D0033851E /* joint-pivot-mode-l-on.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF151919B04D0033851E /* joint-pivot-mode-l-on.png */; };
+ 9218DF301919B04D0033851E /* joint-pivot-mode-r-off.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF161919B04D0033851E /* joint-pivot-mode-r-off.png */; };
+ 9218DF311919B04D0033851E /* joint-pivot-mode-r-on.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF171919B04D0033851E /* joint-pivot-mode-r-on.png */; };
+ 9218DF321919B04D0033851E /* joint-pivot-mode-s-off.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF181919B04D0033851E /* joint-pivot-mode-s-off.png */; };
+ 9218DF331919B04D0033851E /* joint-pivot-mode-s-on.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF191919B04D0033851E /* joint-pivot-mode-s-on.png */; };
+ 9218DF341919B04D0033851E /* joint-pivot-motor.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF1A1919B04D0033851E /* joint-pivot-motor.png */; };
+ 9218DF351919B04D0033851E /* joint-pivot-handle-max.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF1B1919B04D0033851E /* joint-pivot-handle-max.png */; };
+ 9218DF361919B04D0033851E /* joint-pivot-mode-r-on@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF1C1919B04D0033851E /* joint-pivot-mode-r-on@2x.png */; };
+ 9218DF371919B04D0033851E /* joint-pivot-mode-l-on@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF1D1919B04D0033851E /* joint-pivot-mode-l-on@2x.png */; };
+ 9218DF381919B04D0033851E /* joint-pivot-mode-s-on@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF1E1919B04D0033851E /* joint-pivot-mode-s-on@2x.png */; };
+ 9218DF391919B04D0033851E /* joint-pivot-mode-r-off@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF1F1919B04D0033851E /* joint-pivot-mode-r-off@2x.png */; };
+ 9218DF3A1919B04D0033851E /* joint-pivot-mode-l-off@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF201919B04D0033851E /* joint-pivot-mode-l-off@2x.png */; };
+ 9218DF3B1919B04D0033851E /* joint-pivot-mode-s-off@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF211919B04D0033851E /* joint-pivot-mode-s-off@2x.png */; };
+ 9218DF3C1919B04D0033851E /* joint-pivot-mode-bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF221919B04D0033851E /* joint-pivot-mode-bg@2x.png */; };
+ 9218DF3D1919B04D0033851E /* joint-pivot-handle-ratchetmark@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF231919B04D0033851E /* joint-pivot-handle-ratchetmark@2x.png */; };
+ 9218DF3E1919B04D0033851E /* joint-pivot-handle-ratchet@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF241919B04D0033851E /* joint-pivot-handle-ratchet@2x.png */; };
+ 9218DF3F1919B04D0033851E /* joint-pivot-handle-min@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF251919B04D0033851E /* joint-pivot-handle-min@2x.png */; };
+ 9218DF401919B04D0033851E /* joint-pivot-handle-max@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF261919B04D0033851E /* joint-pivot-handle-max@2x.png */; };
+ 9218DF411919B04D0033851E /* joint-pivot-handle-ref@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF271919B04D0033851E /* joint-pivot-handle-ref@2x.png */; };
+ 9218DF421919B04D0033851E /* joint-pivot-motor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9218DF281919B04D0033851E /* joint-pivot-motor@2x.png */; };
+ 921EEAD618A5760700D864C2 /* joint-anchor-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEACE18A5760700D864C2 /* joint-anchor-sel.png */; };
+ 921EEAD718A5760700D864C2 /* joint-anchor-sel@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEACF18A5760700D864C2 /* joint-anchor-sel@2x.png */; };
+ 921EEAD818A5760700D864C2 /* joint-anchor.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEAD018A5760700D864C2 /* joint-anchor.png */; };
+ 921EEAD918A5760700D864C2 /* joint-anchor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEAD118A5760700D864C2 /* joint-anchor@2x.png */; };
+ 921EEADA18A5760700D864C2 /* joint-pivot-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEAD218A5760700D864C2 /* joint-pivot-sel.png */; };
+ 921EEADB18A5760700D864C2 /* joint-pivot-sel@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEAD318A5760700D864C2 /* joint-pivot-sel@2x.png */; };
+ 921EEADC18A5760700D864C2 /* joint-pivot.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEAD418A5760700D864C2 /* joint-pivot.png */; };
+ 921EEADD18A5760700D864C2 /* joint-pivot@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 921EEAD518A5760700D864C2 /* joint-pivot@2x.png */; };
+ 921EEAE018A5884300D864C2 /* SequencerJoints.m in Sources */ = {isa = PBXBuildFile; fileRef = 921EEADF18A5884300D864C2 /* SequencerJoints.m */; };
+ 921EEB2418ADB7EA00D864C2 /* GeometryUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 921EEB2318ADB7EA00D864C2 /* GeometryUtil.m */; };
+ 921EEB2918ADE43700D864C2 /* InspectorNodeReference.xib in Resources */ = {isa = PBXBuildFile; fileRef = 921EEB2818ADE43700D864C2 /* InspectorNodeReference.xib */; };
+ 921EEB2C18ADE5C600D864C2 /* InspectorNodeReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 921EEB2B18ADE5C600D864C2 /* InspectorNodeReference.m */; };
+ 922CC396194676B600B34854 /* AnimationTest1.ccb in Resources */ = {isa = PBXBuildFile; fileRef = 922CC395194676B600B34854 /* AnimationTest1.ccb */; };
+ 922CC3981946873A00B34854 /* AnimationTest2.ccb in Resources */ = {isa = PBXBuildFile; fileRef = 922CC3971946873A00B34854 /* AnimationTest2.ccb */; };
+ 922E8EF718BFE47A008E1764 /* InspectorFloatCheck.m in Sources */ = {isa = PBXBuildFile; fileRef = 922E8EF518BFE47A008E1764 /* InspectorFloatCheck.m */; };
+ 922E8EF818BFE47A008E1764 /* InspectorFloatCheck.xib in Resources */ = {isa = PBXBuildFile; fileRef = 922E8EF618BFE47A008E1764 /* InspectorFloatCheck.xib */; };
+ 922E8EFE18C13666008E1764 /* OutletDrawWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 922E8EFD18C13666008E1764 /* OutletDrawWindow.m */; };
+ 9249983218B7E1F500DE9ADA /* SceneGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 9249983118B7E1F500DE9ADA /* SceneGraph.m */; };
+ 9254805618D7706F00236DED /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C318C92C60007DF895 /* InfoPlist.strings */; };
+ 9254805A18D913C500236DED /* seq-locked-faint.png in Resources */ = {isa = PBXBuildFile; fileRef = 9254805918D913C500236DED /* seq-locked-faint.png */; };
+ 9266089118B581BC007A0A05 /* CCPhysicsPinJoint.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 926D13E318B57B9500582959 /* CCPhysicsPinJoint.ccbPlugNode */; };
+ 926D139518B2DC2E00582959 /* NSDictionary+Query.m in Sources */ = {isa = PBXBuildFile; fileRef = 926D139418B2DC2E00582959 /* NSDictionary+Query.m */; };
+ 926D13C018B5778300582959 /* joint-distance-handle-long.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13B418B5778300582959 /* joint-distance-handle-long.png */; };
+ 926D13C118B5778300582959 /* joint-distance-handle-long@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13B518B5778300582959 /* joint-distance-handle-long@2x.png */; };
+ 926D13C218B5778300582959 /* joint-distance-handle-short.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13B618B5778300582959 /* joint-distance-handle-short.png */; };
+ 926D13C318B5778300582959 /* joint-distance-handle-short@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13B718B5778300582959 /* joint-distance-handle-short@2x.png */; };
+ 926D13C418B5778300582959 /* joint-distance-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13B818B5778300582959 /* joint-distance-sel.png */; };
+ 926D13C518B5778300582959 /* joint-distance-sel@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13B918B5778300582959 /* joint-distance-sel@2x.png */; };
+ 926D13C618B5778300582959 /* joint-distance-slide-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13BA18B5778300582959 /* joint-distance-slide-sel.png */; };
+ 926D13C718B5778300582959 /* joint-distance-slide-sel@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13BB18B5778300582959 /* joint-distance-slide-sel@2x.png */; };
+ 926D13C818B5778300582959 /* joint-distance-slide.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13BC18B5778300582959 /* joint-distance-slide.png */; };
+ 926D13C918B5778300582959 /* joint-distance-slide@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13BD18B5778300582959 /* joint-distance-slide@2x.png */; };
+ 926D13CA18B5778300582959 /* joint-distance.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13BE18B5778300582959 /* joint-distance.png */; };
+ 926D13CB18B5778300582959 /* joint-distance@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13BF18B5778300582959 /* joint-distance@2x.png */; };
+ 926D13D318B57A4900582959 /* CCScaleFreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 926D13D218B57A4900582959 /* CCScaleFreeNode.m */; };
+ 926D13DB18B57B9500582959 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ 926D13F218B57E1600582959 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = 926D13EA18B57E1500582959 /* CCBPProperties.plist */; };
+ 926D13F418B57E1600582959 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 926D13ED18B57E1600582959 /* InfoPlist.strings */; };
+ 926D13F518B57E1600582959 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 926D13EF18B57E1600582959 /* Icon.png */; };
+ 9294EC8E18C65EC10059014C /* CCBPhysicsPinJoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 926D13F918B57E7F00582959 /* CCBPhysicsPinJoint.m */; };
+ 9294EC8F18C65EC10059014C /* CCBPhysicsPivotJoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 92154ABE18A5531800BD215C /* CCBPhysicsPivotJoint.m */; };
+ 9294EC9018C65EC10059014C /* CCBPhysicsJoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 926D13D518B57A8100582959 /* CCBPhysicsJoint.m */; };
+ 9294EC9318C660480059014C /* CCBPhyicsPivotJointPlaceholder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9294EC9218C660480059014C /* CCBPhyicsPivotJointPlaceholder.m */; };
+ 9294EC9618C6606F0059014C /* CCBPhysicsPinJointPlacefolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9294EC9518C6606F0059014C /* CCBPhysicsPinJointPlacefolder.m */; };
+ 9297636B187775A0008F997B /* ResourceManagerPreviewAudio.xib in Resources */ = {isa = PBXBuildFile; fileRef = 92976369187775A0008F997B /* ResourceManagerPreviewAudio.xib */; };
+ 9297636D18777BAF008F997B /* ResourceManagerPreviewAudio.m in Sources */ = {isa = PBXBuildFile; fileRef = 92976368187775A0008F997B /* ResourceManagerPreviewAudio.m */; };
+ 9297AC2118A2C0D2003C3705 /* PolyDecomposition.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9297AC0618A1BE94003C3705 /* PolyDecomposition.mm */; };
+ 9297AC3018A43BCA003C3705 /* NSArray+Query.m in Sources */ = {isa = PBXBuildFile; fileRef = 9297AC2F18A43BCA003C3705 /* NSArray+Query.m */; };
+ 929C9FBE187E38AC009ED9DF /* InspectorPopoverFloat.xib in Resources */ = {isa = PBXBuildFile; fileRef = 929C9FBD187E38AC009ED9DF /* InspectorPopoverFloat.xib */; };
+ 929C9FC0187E391C009ED9DF /* InspectorPopoverFloat.xib in Resources */ = {isa = PBXBuildFile; fileRef = 929C9FBD187E38AC009ED9DF /* InspectorPopoverFloat.xib */; };
+ 92B1B9D5192429A400DB91F5 /* joint-pivot-range.png in Resources */ = {isa = PBXBuildFile; fileRef = 92B1B9D3192429A400DB91F5 /* joint-pivot-range.png */; };
+ 92B1B9D6192429A400DB91F5 /* joint-pivot-range@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92B1B9D4192429A400DB91F5 /* joint-pivot-range@2x.png */; };
+ 92B6D0DA193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib in Resources */ = {isa = PBXBuildFile; fileRef = 92B6D0D9193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib */; };
+ 92B6D0DE193FE32100FD27F4 /* InspectorPhysicsUnavailable.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B6D0DD193FE32100FD27F4 /* InspectorPhysicsUnavailable.m */; };
+ 92B7900518C808B7007DF895 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ 92B792C918C92C60007DF895 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C018C92C60007DF895 /* CCBPProperties.plist */; };
+ 92B792CA18C92C60007DF895 /* CCPhysicsSpringJoint-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C118C92C60007DF895 /* CCPhysicsSpringJoint-Info.plist */; };
+ 92B792CB18C92C60007DF895 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C318C92C60007DF895 /* InfoPlist.strings */; };
+ 92B792CC18C92C60007DF895 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C518C92C60007DF895 /* Icon.png */; };
+ 92B792CD18C92C60007DF895 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C618C92C60007DF895 /* Icon@2x.png */; };
+ 92B792CE18C92CA1007DF895 /* CCBPhyicsSpringJointPlaceholder.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B792BD18C92C60007DF895 /* CCBPhyicsSpringJointPlaceholder.m */; };
+ 92B792D218C92FE7007DF895 /* CCBPhysicsSpringJoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B792BF18C92C60007DF895 /* CCBPhysicsSpringJoint.m */; };
+ 92B792D318C92FEF007DF895 /* CCBPhysicsTwoBodyJoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B792D018C92D80007DF895 /* CCBPhysicsTwoBodyJoint.m */; };
+ 92B792D518C9333E007DF895 /* CCPhysicsSpringJoint.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 92B7900D18C808B7007DF895 /* CCPhysicsSpringJoint.ccbPlugNode */; };
+ 92B792D718C9339E007DF895 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C518C92C60007DF895 /* Icon.png */; };
+ 92B792D918C933B7007DF895 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = 92B792C018C92C60007DF895 /* CCBPProperties.plist */; };
+ 92B8A32818E1063600EE52FC /* seq-locked-faint.png in Resources */ = {isa = PBXBuildFile; fileRef = 9254805918D913C500236DED /* seq-locked-faint.png */; };
+ 92B91022193412A600E346B5 /* InspectorAnimation.xib in Resources */ = {isa = PBXBuildFile; fileRef = 92B91021193412A600E346B5 /* InspectorAnimation.xib */; };
+ 92B91026193413F500E346B5 /* InspectorAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B91025193413F500E346B5 /* InspectorAnimation.m */; };
+ 92BF5E5B187B43F00072C3A1 /* ResourceManagerPreviewAudio.xib in Resources */ = {isa = PBXBuildFile; fileRef = 92976369187775A0008F997B /* ResourceManagerPreviewAudio.xib */; };
+ 92BF5E5D187B658D0072C3A1 /* InspectorStringSimple.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8076F9521862459A003C4153 /* InspectorStringSimple.xib */; };
+ 92BF8AB2192BCDF300C1BC28 /* InspectorButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 92BF8AB1192BCDF300C1BC28 /* InspectorButton.m */; };
+ 92BF8AB7192BCE8D00C1BC28 /* InspectorButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = 92BF8AB6192BCE8D00C1BC28 /* InspectorButton.xib */; };
+ 92D9D48018F8AB3800F167C1 /* joint-connection-connected.png in Resources */ = {isa = PBXBuildFile; fileRef = 92D9D47A18F8AB3800F167C1 /* joint-connection-connected.png */; };
+ 92D9D48118F8AB3800F167C1 /* joint-connection-connected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92D9D47B18F8AB3800F167C1 /* joint-connection-connected@2x.png */; };
+ 92D9D48218F8AB3800F167C1 /* joint-connection-disconnected.png in Resources */ = {isa = PBXBuildFile; fileRef = 92D9D47C18F8AB3800F167C1 /* joint-connection-disconnected.png */; };
+ 92D9D48318F8AB3800F167C1 /* joint-connection-disconnected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92D9D47D18F8AB3800F167C1 /* joint-connection-disconnected@2x.png */; };
+ 92D9D48418F8AB3800F167C1 /* joint-connection-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 92D9D47E18F8AB3800F167C1 /* joint-connection-bg.png */; };
+ 92D9D48518F8AB3800F167C1 /* joint-connection-bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92D9D47F18F8AB3800F167C1 /* joint-connection-bg@2x.png */; };
+ 92DC215F188073C500C8DCCD /* select-scale.png in Resources */ = {isa = PBXBuildFile; fileRef = 800C005E1846A40D00544BD2 /* select-scale.png */; };
+ 92DC2160188073C500C8DCCD /* select-crosshair.png in Resources */ = {isa = PBXBuildFile; fileRef = 800C006F1848178D00544BD2 /* select-crosshair.png */; };
+ 92DC2161188073C500C8DCCD /* select-skew.png in Resources */ = {isa = PBXBuildFile; fileRef = 80E158A018441FF1007242F6 /* select-skew.png */; };
+ 92DC2162188073C500C8DCCD /* select-rotation.png in Resources */ = {isa = PBXBuildFile; fileRef = 80E158941843DEDC007242F6 /* select-rotation.png */; };
+ 92F0960518F8851300D47A94 /* inspector-body-connected.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F095F918F8851200D47A94 /* inspector-body-connected.png */; };
+ 92F0960618F8851300D47A94 /* inspector-body-disconnected.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F095FA18F8851200D47A94 /* inspector-body-disconnected.png */; };
+ 92F0960718F8851300D47A94 /* inspector-body-remove-dis.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F095FB18F8851200D47A94 /* inspector-body-remove-dis.png */; };
+ 92F0960818F8851300D47A94 /* inspector-body-remove-hi.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F095FC18F8851200D47A94 /* inspector-body-remove-hi.png */; };
+ 92F0960918F8851300D47A94 /* inspector-body-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F095FD18F8851200D47A94 /* inspector-body-bg.png */; };
+ 92F0960A18F8851300D47A94 /* inspector-body-remove.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F095FE18F8851200D47A94 /* inspector-body-remove.png */; };
+ 92F0960B18F8851300D47A94 /* inspector-body-remove-hi@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F095FF18F8851200D47A94 /* inspector-body-remove-hi@2x.png */; };
+ 92F0960C18F8851300D47A94 /* inspector-body-remove-dis@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0960018F8851200D47A94 /* inspector-body-remove-dis@2x.png */; };
+ 92F0960D18F8851300D47A94 /* inspector-body-remove@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0960118F8851200D47A94 /* inspector-body-remove@2x.png */; };
+ 92F0960E18F8851300D47A94 /* inspector-body-connected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0960218F8851200D47A94 /* inspector-body-connected@2x.png */; };
+ 92F0960F18F8851300D47A94 /* inspector-body-disconnected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0960318F8851300D47A94 /* inspector-body-disconnected@2x.png */; };
+ 92F0961018F8851300D47A94 /* inspector-body-bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0960418F8851300D47A94 /* inspector-body-bg@2x.png */; };
+ 92F0961618F8855A00D47A94 /* inspector-body-goto-hi.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0961218F8855A00D47A94 /* inspector-body-goto-hi.png */; };
+ 92F0961718F8855A00D47A94 /* inspector-body-goto.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0961318F8855A00D47A94 /* inspector-body-goto.png */; };
+ 92F0961818F8855A00D47A94 /* inspector-body-goto-hi@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0961418F8855A00D47A94 /* inspector-body-goto-hi@2x.png */; };
+ 92F0961918F8855A00D47A94 /* inspector-body-goto@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 92F0961518F8855A00D47A94 /* inspector-body-goto@2x.png */; };
+ 92F0961D18F891A900D47A94 /* InspectorEnabledFloat.m in Sources */ = {isa = PBXBuildFile; fileRef = 92F0961B18F891A900D47A94 /* InspectorEnabledFloat.m */; };
+ 92F0961E18F891A900D47A94 /* InspectorEnabledFloat.xib in Resources */ = {isa = PBXBuildFile; fileRef = 92F0961C18F891A900D47A94 /* InspectorEnabledFloat.xib */; };
+ 92F12E4E18847BC800AB8F32 /* seq-keyframe-x4-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 80B149BC183D4D280085935B /* seq-keyframe-x4-sel.png */; };
+ 92F12E4F18847BC800AB8F32 /* seq-keyframe-x4.png in Resources */ = {isa = PBXBuildFile; fileRef = 80B149BD183D4D280085935B /* seq-keyframe-x4.png */; };
+ A09AB6F714E993AA009C8B91 /* fps_images.png in Resources */ = {isa = PBXBuildFile; fileRef = A09AB6F614E993AA009C8B91 /* fps_images.png */; };
+ B7083DF317B1C363006628C7 /* LocalizationEditorWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B7083DF217B1C363006628C7 /* LocalizationEditorWindow.xib */; };
+ B7083DF617B1CB88006628C7 /* LocalizationEditorWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = B7083DF517B1CB88006628C7 /* LocalizationEditorWindow.m */; };
+ B7083DF917B1CBC8006628C7 /* LocalizationEditorHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B7083DF817B1CBC8006628C7 /* LocalizationEditorHandler.m */; };
+ B7083DFB17B2CC65006628C7 /* LocaliztaionEditorLanguageList.plist in Resources */ = {isa = PBXBuildFile; fileRef = B7083DFA17B2CC65006628C7 /* LocaliztaionEditorLanguageList.plist */; };
+ B7083DFE17B2CDA0006628C7 /* LocalizationEditorLanguage.m in Sources */ = {isa = PBXBuildFile; fileRef = B7083DFD17B2CDA0006628C7 /* LocalizationEditorLanguage.m */; };
+ B7083E0117B2F992006628C7 /* LocalizationEditorTranslation.m in Sources */ = {isa = PBXBuildFile; fileRef = B7083E0017B2F992006628C7 /* LocalizationEditorTranslation.m */; };
+ B7083E0417B32623006628C7 /* LocalizationEditorLanguageTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7083E0317B32623006628C7 /* LocalizationEditorLanguageTableView.m */; };
+ B7083E0717B32DAD006628C7 /* LocalizationEditorTranslationTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7083E0617B32DAD006628C7 /* LocalizationEditorTranslationTableView.m */; };
+ B7083E0A17B567E5006628C7 /* StringPropertySetter.m in Sources */ = {isa = PBXBuildFile; fileRef = B7083E0917B567E5006628C7 /* StringPropertySetter.m */; };
+ B7096E26180CD98E00164A8A /* doc-layer.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E1D180CD98E00164A8A /* doc-layer.png */; };
+ B7096E27180CD98E00164A8A /* doc-layer@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E1E180CD98E00164A8A /* doc-layer@2x.png */; };
+ B7096E28180CD98E00164A8A /* doc-node.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E1F180CD98E00164A8A /* doc-node.png */; };
+ B7096E29180CD98E00164A8A /* doc-node@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E20180CD98E00164A8A /* doc-node@2x.png */; };
+ B7096E2A180CD98E00164A8A /* doc-particlesystem.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E21180CD98E00164A8A /* doc-particlesystem.png */; };
+ B7096E2B180CD98E00164A8A /* doc-scene.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E22180CD98E00164A8A /* doc-scene.png */; };
+ B7096E2C180CD98E00164A8A /* doc-scene@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E23180CD98E00164A8A /* doc-scene@2x.png */; };
+ B7096E2D180CD98E00164A8A /* doc-sprite.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E24180CD98E00164A8A /* doc-sprite.png */; };
+ B7096E2E180CD98E00164A8A /* doc-sprite@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7096E25180CD98E00164A8A /* doc-sprite@2x.png */; };
+ B71706CD184ECD660081720A /* select-crosshair@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B71706C7184ECD660081720A /* select-crosshair@2x.png */; };
+ B71706CE184ECD660081720A /* select-move.png in Resources */ = {isa = PBXBuildFile; fileRef = B71706C8184ECD660081720A /* select-move.png */; };
+ B71706CF184ECD660081720A /* select-move@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B71706C9184ECD660081720A /* select-move@2x.png */; };
+ B71706D0184ECD660081720A /* select-rotation@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B71706CA184ECD660081720A /* select-rotation@2x.png */; };
+ B71706D1184ECD660081720A /* select-scale@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B71706CB184ECD660081720A /* select-scale@2x.png */; };
+ B71706D2184ECD660081720A /* select-skew@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B71706CC184ECD660081720A /* select-skew@2x.png */; };
+ B729AC53181F091800BA0D9C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B729AC59181F091800BA0D9C /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B729AC57181F091800BA0D9C /* InfoPlist.strings */; };
+ B729AC65181F0B5000BA0D9C /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B729AC62181F0B5000BA0D9C /* CCBPProperties.plist */; };
+ B729AC66181F0B5000BA0D9C /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B729AC63181F0B5000BA0D9C /* Icon.png */; };
+ B729AC67181F0B5000BA0D9C /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B729AC64181F0B5000BA0D9C /* Icon@2x.png */; };
+ B729AC6A181F0C2200BA0D9C /* CCBPSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = B729AC69181F0C2200BA0D9C /* CCBPSlider.m */; };
+ B729AC6D181F0D2300BA0D9C /* CCSlider.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B729AC52181F091800BA0D9C /* CCSlider.ccbPlugNode */; };
+ B72D1DC0186125E80091252F /* Requirements.plist in Resources */ = {isa = PBXBuildFile; fileRef = B72D1DBF186125E80091252F /* Requirements.plist */; };
+ B72D1DC318612CA70091252F /* CCBPControl.m in Sources */ = {isa = PBXBuildFile; fileRef = B72D1DC218612CA70091252F /* CCBPControl.m */; };
+ B72D1DC618612CD50091252F /* CCBPLabelBMFont.m in Sources */ = {isa = PBXBuildFile; fileRef = B72D1DC518612CD50091252F /* CCBPLabelBMFont.m */; };
+ B72D1DC918612CF50091252F /* CCBPLayoutBox.m in Sources */ = {isa = PBXBuildFile; fileRef = B72D1DC818612CF50091252F /* CCBPLayoutBox.m */; };
+ B72D1DCC18612D100091252F /* CCBPNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B72D1DCB18612D100091252F /* CCBPNode.m */; };
+ B72D1DCF18612D340091252F /* CCBPScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = B72D1DCE18612D340091252F /* CCBPScrollView.m */; };
+ B72D1DD218612D570091252F /* CCBPSprite.m in Sources */ = {isa = PBXBuildFile; fileRef = B72D1DD118612D570091252F /* CCBPSprite.m */; };
+ B72D1DD518612D790091252F /* CCBPSprite9Slice.m in Sources */ = {isa = PBXBuildFile; fileRef = B72D1DD418612D790091252F /* CCBPSprite9Slice.m */; };
+ B72D1DEB186393AE0091252F /* HockeySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B72D1DEA186393AE0091252F /* HockeySDK.framework */; };
+ B72D1DEC186393C80091252F /* HockeySDK.framework in Copy Files (Sparkle framework) */ = {isa = PBXBuildFile; fileRef = B72D1DEA186393AE0091252F /* HockeySDK.framework */; };
+ B732A1841799736500333C56 /* TB_build.png in Resources */ = {isa = PBXBuildFile; fileRef = B732A1821799736500333C56 /* TB_build.png */; };
+ B732A1851799736500333C56 /* TB_build@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B732A1831799736500333C56 /* TB_build@2x.png */; };
+ B73788DA1804AC5E0076A88C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B73788E01804AC5E0076A88C /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B73788DE1804AC5E0076A88C /* InfoPlist.strings */; };
+ B73788EB1804AD5C0076A88C /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B73788E91804AD5C0076A88C /* CCBPProperties.plist */; };
+ B73788EC1804AD5C0076A88C /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B73788EA1804AD5C0076A88C /* Icon.png */; };
+ B73788EF1804AF6D0076A88C /* CCScrollView.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B73788D91804AC5D0076A88C /* CCScrollView.ccbPlugNode */; };
+ B73788F51804D80B0076A88C /* ccb.icns in Resources */ = {isa = PBXBuildFile; fileRef = B73788F41804D80B0076A88C /* ccb.icns */; };
+ B73788F71804D8200076A88C /* ccbproj.icns in Resources */ = {isa = PBXBuildFile; fileRef = B73788F61804D8200076A88C /* ccbproj.icns */; };
+ B73788F91804D8690076A88C /* ccbi.icns in Resources */ = {isa = PBXBuildFile; fileRef = B73788F81804D8690076A88C /* ccbi.icns */; };
+ B759E4B51880B4D000E8166C /* help-logo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B759E4B41880B4D000E8166C /* help-logo@2x.png */; };
+ B759E4B81880B60B00E8166C /* logo-white.png in Resources */ = {isa = PBXBuildFile; fileRef = B759E4B61880B60B00E8166C /* logo-white.png */; };
+ B759E4B91880B60B00E8166C /* logo-white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B759E4B71880B60B00E8166C /* logo-white@2x.png */; };
+ B75CB46518468FA70036259F /* seq-btn-loop.png in Resources */ = {isa = PBXBuildFile; fileRef = B75CB46318468FA70036259F /* seq-btn-loop.png */; };
+ B75CB46618468FA70036259F /* seq-btn-loop@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B75CB46418468FA70036259F /* seq-btn-loop@2x.png */; };
+ B75CB48B184D31270036259F /* UsageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B75CB48A184D31270036259F /* UsageManager.m */; };
+ B7737D4F17CC102D005F775A /* InspectorColor4.m in Sources */ = {isa = PBXBuildFile; fileRef = B7737D4D17CC102D005F775A /* InspectorColor4.m */; };
+ B7737D5017CC102D005F775A /* InspectorColor4.xib in Resources */ = {isa = PBXBuildFile; fileRef = B7737D4E17CC102D005F775A /* InspectorColor4.xib */; };
+ B77EC96618087011004C09FF /* CCBProjCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = B77EC96518087011004C09FF /* CCBProjCreator.m */; };
+ B78AE44B17E263B20028BE0B /* CCBPNodeColor.m in Sources */ = {isa = PBXBuildFile; fileRef = B78AE44A17E263B20028BE0B /* CCBPNodeColor.m */; };
+ B78AE44E17E263FC0028BE0B /* CCBPNodeGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = B78AE44D17E263FC0028BE0B /* CCBPNodeGradient.m */; };
+ B78AE45217E3B1600028BE0B /* scale-2.png in Resources */ = {isa = PBXBuildFile; fileRef = B78AE44F17E3B1600028BE0B /* scale-2.png */; };
+ B78AE45317E3B1600028BE0B /* scale-3.png in Resources */ = {isa = PBXBuildFile; fileRef = B78AE45017E3B1600028BE0B /* scale-3.png */; };
+ B78AE45417E3B1600028BE0B /* scale-4.png in Resources */ = {isa = PBXBuildFile; fileRef = B78AE45117E3B1600028BE0B /* scale-4.png */; };
+ B78B8B10185FF982006ADBBE /* Folder.icns in Resources */ = {isa = PBXBuildFile; fileRef = B78B8B0F185FF982006ADBBE /* Folder.icns */; };
+ B78DA3641773A89B00B85CC0 /* CCBButtonUnclickable.m in Sources */ = {isa = PBXBuildFile; fileRef = B78DA3631773A89B00B85CC0 /* CCBButtonUnclickable.m */; };
+ B78DA3691773EA0E00B85CC0 /* NSPasteboard+CCB.m in Sources */ = {isa = PBXBuildFile; fileRef = B78DA3681773EA0E00B85CC0 /* NSPasteboard+CCB.m */; };
+ B794AB91177A30EB004FF493 /* ui-nopreview.png in Resources */ = {isa = PBXBuildFile; fileRef = B794AB90177A30EB004FF493 /* ui-nopreview.png */; };
+ B794AB99177CE09D004FF493 /* FCFormatConverter.mm in Sources */ = {isa = PBXBuildFile; fileRef = B794AB98177CE09D004FF493 /* FCFormatConverter.mm */; };
+ B79F90D917FF30DC00908504 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B79F90DF17FF30DC00908504 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B79F90DD17FF30DC00908504 /* InfoPlist.strings */; };
+ B79F90E617FF31B600908504 /* CCPhysicsNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B79F90D817FF30DB00908504 /* CCPhysicsNode.ccbPlugNode */; };
+ B79F90EA17FF33BB00908504 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B79F90E817FF33BB00908504 /* CCBPProperties.plist */; };
+ B79F90EB17FF33BB00908504 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B79F90E917FF33BB00908504 /* Icon.png */; };
+ B79F90EE17FF366C00908504 /* CCBPPhysicsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B79F90ED17FF366C00908504 /* CCBPPhysicsNode.m */; };
+ B7AC6969179E03BF0041B8BD /* select-corner.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC6968179E03BF0041B8BD /* select-corner.png */; };
+ B7AC6980179F50850041B8BD /* BFColorPickerPopover.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC696E179F50850041B8BD /* BFColorPickerPopover.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC6981179F50850041B8BD /* BFColorPickerPopover_LICENSE.txt in Resources */ = {isa = PBXBuildFile; fileRef = B7AC696F179F50850041B8BD /* BFColorPickerPopover_LICENSE.txt */; };
+ B7AC6982179F50850041B8BD /* BFPopoverColorWell.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC6971179F50850041B8BD /* BFPopoverColorWell.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC6983179F50850041B8BD /* NSColor+BFColorPickerPopover.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC6974179F50850041B8BD /* NSColor+BFColorPickerPopover.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC6984179F50850041B8BD /* NSColorPanel+BFColorPickerPopover.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC6976179F50850041B8BD /* NSColorPanel+BFColorPickerPopover.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC6985179F50850041B8BD /* NSColorWell+BFColorPickerPopover.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC6978179F50850041B8BD /* NSColorWell+BFColorPickerPopover.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC6986179F50850041B8BD /* BFColorPickerPopoverView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC697B179F50850041B8BD /* BFColorPickerPopoverView.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC6987179F50850041B8BD /* BFColorPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC697D179F50850041B8BD /* BFColorPickerViewController.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC6988179F50850041B8BD /* BFIconTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC697F179F50850041B8BD /* BFIconTabBar.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC699C17A079C80041B8BD /* NSDictionary+SMKeyValueObserving.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC699317A079C80041B8BD /* NSDictionary+SMKeyValueObserving.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC699D17A079C80041B8BD /* SMBar.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC699517A079C80041B8BD /* SMBar.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC699E17A079C80041B8BD /* SMTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC699717A079C80041B8BD /* SMTabBar.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC699F17A079C80041B8BD /* SMTabBarButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC699917A079C80041B8BD /* SMTabBarButtonCell.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC69A017A079C80041B8BD /* SMTabBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC699B17A079C80041B8BD /* SMTabBarItem.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ B7AC69A517A07DAD0041B8BD /* inspector-folder.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69A317A07DAD0041B8BD /* inspector-folder.png */; };
+ B7AC69A617A07DAD0041B8BD /* inspector-objects.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69A417A07DAD0041B8BD /* inspector-objects.png */; };
+ B7AC69A917A0923B0041B8BD /* inspector-nodes.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69A817A0923B0041B8BD /* inspector-nodes.png */; };
+ B7AC69AD17A0938C0041B8BD /* inspector-nodes@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69AC17A0938C0041B8BD /* inspector-nodes@2x.png */; };
+ B7AC69B017A0A10E0041B8BD /* ResourceManagerTilelessEditorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69AF17A0A10E0041B8BD /* ResourceManagerTilelessEditorManager.m */; };
+ B7AC69B217A1969E0041B8BD /* header-bg2.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69B117A1969E0041B8BD /* header-bg2.png */; };
+ B7AC69B417A1A2040041B8BD /* header-bg2-crop.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69B317A1A2040041B8BD /* header-bg2-crop.png */; };
+ B7AC69B717A1B9930041B8BD /* CCBImageBrowserView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69B617A1B9930041B8BD /* CCBImageBrowserView.m */; };
+ B7AC69BA17A2F4470041B8BD /* PlugInNodeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69B917A2F4470041B8BD /* PlugInNodeViewHandler.m */; };
+ B7AC69C017A3129C0041B8BD /* PlugInNodeCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69BF17A3129C0041B8BD /* PlugInNodeCollectionView.m */; };
+ B7AC69C317A320E30041B8BD /* CCBColorView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69C217A320E30041B8BD /* CCBColorView.m */; };
+ B7AC69C917A70A4B0041B8BD /* inspector-codeconnections.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69C417A70A4A0041B8BD /* inspector-codeconnections.png */; };
+ B7AC69CA17A70A4B0041B8BD /* inspector-codeconnections@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69C517A70A4A0041B8BD /* inspector-codeconnections@2x.png */; };
+ B7AC69CB17A70A4B0041B8BD /* inspector-props.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69C617A70A4A0041B8BD /* inspector-props.png */; };
+ B7AC69CC17A70A4B0041B8BD /* inspector-props@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69C717A70A4B0041B8BD /* inspector-props@2x.png */; };
+ B7AC69CD17A70A4B0041B8BD /* inspector-template.png in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69C817A70A4B0041B8BD /* inspector-template.png */; };
+ B7AC69D117A758A40041B8BD /* PropertyInspectorHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69D017A758A40041B8BD /* PropertyInspectorHandler.m */; };
+ B7AC69D417A75E7E0041B8BD /* PropertyInspectorTemplateCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69D317A75E7E0041B8BD /* PropertyInspectorTemplateCollectionView.m */; };
+ B7AC69D717A827470041B8BD /* PropertyInspectorTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AC69D617A827470041B8BD /* PropertyInspectorTemplate.m */; };
+ B7AC69DC17A9D9700041B8BD /* defaultTemplates.zip in Resources */ = {isa = PBXBuildFile; fileRef = B7AC69DB17A9D9700041B8BD /* defaultTemplates.zip */; };
+ B7C3532317F65547005697C1 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B7C3532917F65547005697C1 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B7C3532717F65547005697C1 /* InfoPlist.strings */; };
+ B7C3532F17F65585005697C1 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B7C3532E17F65585005697C1 /* CCBPProperties.plist */; };
+ B7C3533117F655B5005697C1 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B7C3533017F655B5005697C1 /* Icon.png */; };
+ B7C3533417F6565F005697C1 /* CCSprite9Slice.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B7C3532217F65547005697C1 /* CCSprite9Slice.ccbPlugNode */; };
+ B7C3533717FA0FEF005697C1 /* inspector-physics.png in Resources */ = {isa = PBXBuildFile; fileRef = B7C3533517FA0FEF005697C1 /* inspector-physics.png */; };
+ B7C3533817FA0FEF005697C1 /* inspector-physics@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7C3533617FA0FEF005697C1 /* inspector-physics@2x.png */; };
+ B7C3533A17FA2EDA005697C1 /* select-physics-corner.png in Resources */ = {isa = PBXBuildFile; fileRef = B7C3533917FA2EDA005697C1 /* select-physics-corner.png */; };
+ B7C3533E17FA30BB005697C1 /* NodePhysicsBody.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C3533D17FA30BB005697C1 /* NodePhysicsBody.m */; };
+ B7C3534117FA3DF1005697C1 /* PhysicsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C3534017FA3DF1005697C1 /* PhysicsHandler.m */; };
+ B7C623B317F383CE00928F91 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B7C623B917F383CE00928F91 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B7C623B717F383CE00928F91 /* InfoPlist.strings */; };
+ B7C623C017F384E400928F91 /* CCButton.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B7C623B117F383CE00928F91 /* CCButton.ccbPlugNode */; };
+ B7C623C217F3860A00928F91 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B7C623C117F3860A00928F91 /* Icon.png */; };
+ B7C623C417F3868C00928F91 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B7C623C317F3868C00928F91 /* CCBPProperties.plist */; };
+ B7C623C717F3870A00928F91 /* CCBPButton.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C623C617F3870A00928F91 /* CCBPButton.m */; };
+ B7C623CE17F38B7800928F91 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B7C623D417F38B7800928F91 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B7C623D217F38B7800928F91 /* InfoPlist.strings */; };
+ B7C623DB17F3903900928F91 /* CCControl.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B7C623CD17F38B7800928F91 /* CCControl.ccbPlugNode */; };
+ B7C623DD17F392FE00928F91 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B7C623DC17F392FE00928F91 /* CCBPProperties.plist */; };
+ B7D0918A17C2C17D0007FE7F /* libcocos2d.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B7D0918417C2C12B0007FE7F /* libcocos2d.a */; };
+ B7DE848D1937A8030039FB72 /* RegistrationWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B7DE848C1937A8030039FB72 /* RegistrationWindow.xib */; };
+ B7DE84901937A8390039FB72 /* RegistrationWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = B7DE848F1937A8390039FB72 /* RegistrationWindow.m */; };
+ B7DE84931937B18B0039FB72 /* signup-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = B7DE84911937B18B0039FB72 /* signup-bg.png */; };
+ B7DE84941937B18B0039FB72 /* signup-bottom.png in Resources */ = {isa = PBXBuildFile; fileRef = B7DE84921937B18B0039FB72 /* signup-bottom.png */; };
+ B7DE84961937C6380039FB72 /* SpriteBuilder-logo.png in Resources */ = {isa = PBXBuildFile; fileRef = B7DE84951937C6380039FB72 /* SpriteBuilder-logo.png */; };
+ B7DEBD6417D113B800942E4D /* SpriteBuilder.icns in Resources */ = {isa = PBXBuildFile; fileRef = B7DEBD6317D113B800942E4D /* SpriteBuilder.icns */; };
+ B7E1EFDD185F8D3D00C9E6E0 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7E1EFDC185F8D3D00C9E6E0 /* WebKit.framework */; };
+ B7E775E218563F8C004221AA /* frame-fixed.png in Resources */ = {isa = PBXBuildFile; fileRef = B7E775E118563F8C004221AA /* frame-fixed.png */; };
+ B7EE699618188E0900B983FE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B7EE699C18188E0900B983FE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B7EE699A18188E0900B983FE /* InfoPlist.strings */; };
+ B7EE69A718188ECC00B983FE /* CCTextField.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B7EE699518188E0800B983FE /* CCTextField.ccbPlugNode */; };
+ B7EE69AA18188EF900B983FE /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B7EE69A818188EF900B983FE /* Icon.png */; };
+ B7EE69AB18188EF900B983FE /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7EE69A918188EF900B983FE /* Icon@2x.png */; };
+ B7EE69AD18188F2800B983FE /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B7EE69AC18188F2800B983FE /* CCBPProperties.plist */; };
+ B7EE69B01819822500B983FE /* CCBPTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EE69AF1819822500B983FE /* CCBPTextField.m */; };
+ B7EE69F91819EE0D00B983FE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7C623B217F383CE00928F91 /* CoreFoundation.framework */; };
+ B7EE69FF1819EE0D00B983FE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B7EE69FD1819EE0D00B983FE /* InfoPlist.strings */; };
+ B7EE6A0A1819EE6E00B983FE /* CCLayoutBox.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = B7EE69F81819EE0D00B983FE /* CCLayoutBox.ccbPlugNode */; };
+ B7EE6A0E1819EF1500B983FE /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = B7EE6A0B1819EF1500B983FE /* CCBPProperties.plist */; };
+ B7EE6A0F1819EF1500B983FE /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B7EE6A0C1819EF1500B983FE /* Icon.png */; };
+ B7EE6A101819EF1500B983FE /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7EE6A0D1819EF1500B983FE /* Icon@2x.png */; };
+ B7F02D4817D12DB1008A2E2D /* about-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = B7F02D4617D12DB1008A2E2D /* about-bg.png */; };
+ B7F02D4917D12DB1008A2E2D /* about-bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7F02D4717D12DB1008A2E2D /* about-bg@2x.png */; };
+ B7F02D4C17D13332008A2E2D /* CCBTransparentWindowDraggable.m in Sources */ = {isa = PBXBuildFile; fileRef = B7F02D4B17D13332008A2E2D /* CCBTransparentWindowDraggable.m */; };
+ D2E0168118D7838F00927430 /* SpriteBuilderCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E0167618D782CC00927430 /* SpriteBuilderCommand.m */; };
+ D2E0168518D783C900927430 /* AppleScriptKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2E0168418D783C900927430 /* AppleScriptKit.framework */; };
+ D2E0168A18D789E700927430 /* SpriteBuilder.sdef in Resources */ = {isa = PBXBuildFile; fileRef = D2E0168618D783F800927430 /* SpriteBuilder.sdef */; };
+ D2E0168B18D789E800927430 /* SpriteBuilder.sdef in Resources */ = {isa = PBXBuildFile; fileRef = D2E0168618D783F800927430 /* SpriteBuilder.sdef */; };
+ D35E589E18E391DA008571EC /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D35E589D18E391DA008571EC /* GLKit.framework */; };
+ DC05E77B18D0ACCB00592A1E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ DC05E78818D0ACE000592A1E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ DC05E79118D0AD7800592A1E /* CCBPluginSBButtonNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC05E76918D0A9BD00592A1E /* CCBPluginSBButtonNode.m */; };
+ DC05E79218D0AD7800592A1E /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = DC05E76A18D0A9BD00592A1E /* CCBPProperties.plist */; };
+ DC05E79318D0AD7800592A1E /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = DC05E76B18D0A9BD00592A1E /* Icon.png */; };
+ DC05E79418D0AD7800592A1E /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DC05E76C18D0A9BD00592A1E /* Icon@2x.png */; };
+ DC05E79518D0AD8100592A1E /* CCBPluginSBControlNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC05E76F18D0A9BD00592A1E /* CCBPluginSBControlNode.m */; };
+ DC05E79618D0AD8100592A1E /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = DC05E77018D0A9BD00592A1E /* CCBPProperties.plist */; };
+ DC05E79B18D0ADF800592A1E /* SBControlNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = DC05E78318D0ACCB00592A1E /* SBControlNode.ccbPlugNode */; };
+ DC05E79C18D0ADF800592A1E /* SBButtonNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = DC05E79018D0ACE000592A1E /* SBButtonNode.ccbPlugNode */; };
+ DC2AF0AB18C8C38A00508967 /* SpriteKitTextureAtlasToolPath.txt in Resources */ = {isa = PBXBuildFile; fileRef = DC0A8D3E18C8C274009A619D /* SpriteKitTextureAtlasToolPath.txt */; };
+ DC5129C11891450D0091873D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ DC6802F9189145840060BE39 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = DC6802F5189145840060BE39 /* CCBPProperties.plist */; };
+ DC6802FA189145840060BE39 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = DC6802F6189145840060BE39 /* Icon.png */; };
+ DC6802FB189145840060BE39 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DC6802F7189145840060BE39 /* Icon@2x.png */; };
+ DC6803001891466C0060BE39 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ DC68030F189146900060BE39 /* CCBPluginSKLabelNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC68030B189146900060BE39 /* CCBPluginSKLabelNode.m */; };
+ DC680310189146900060BE39 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = DC68030C189146900060BE39 /* CCBPProperties.plist */; };
+ DC680311189146900060BE39 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = DC68030D189146900060BE39 /* Icon.png */; };
+ DC680312189146900060BE39 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DC68030E189146900060BE39 /* Icon@2x.png */; };
+ DC680317189146FE0060BE39 /* SKSpriteNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = DC5129C91891450D0091873D /* SKSpriteNode.ccbPlugNode */; };
+ DC680318189146FE0060BE39 /* SKLabelNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = DC6803081891466C0060BE39 /* SKLabelNode.ccbPlugNode */; };
+ DC680321189156310060BE39 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ DC680333189156A60060BE39 /* CCBPluginSKColorSpriteNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC68032F189156A60060BE39 /* CCBPluginSKColorSpriteNode.m */; };
+ DC680334189156A60060BE39 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = DC680330189156A60060BE39 /* CCBPProperties.plist */; };
+ DC680335189156A60060BE39 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = DC680331189156A60060BE39 /* Icon.png */; };
+ DC680336189156A60060BE39 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DC680332189156A60060BE39 /* Icon@2x.png */; };
+ DC680339189157B90060BE39 /* SKColorSpriteNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = DC680329189156310060BE39 /* SKColorSpriteNode.ccbPlugNode */; };
+ DC68033C189169510060BE39 /* CCNode+SKNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC68031A18914E650060BE39 /* CCNode+SKNode.m */; };
+ DC680341189169D50060BE39 /* CCBPluginSKNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DCB9F15C1890607D00128D78 /* CCBPluginSKNode.m */; };
+ DC680343189169E10060BE39 /* CCBPluginSKSpriteNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6802F4189145830060BE39 /* CCBPluginSKSpriteNode.m */; };
+ DCB9F1501890600D00128D78 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ DCB9F1651890607D00128D78 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = DCB9F15D1890607D00128D78 /* CCBPProperties.plist */; };
+ DCB9F1671890607D00128D78 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = DCB9F1601890607D00128D78 /* Icon.png */; };
+ DCB9F1681890607D00128D78 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DCB9F1611890607D00128D78 /* Icon@2x.png */; };
+ DCB9F16C189060E900128D78 /* SKNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = DCB9F1581890600D00128D78 /* SKNode.ccbPlugNode */; };
+ DCFB063718E32B7500DF02A0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ DCFB064918E32BBD00DF02A0 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = DCFB064518E32BBD00DF02A0 /* CCBPProperties.plist */; };
+ DCFB064A18E32BBD00DF02A0 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = DCFB064618E32BBD00DF02A0 /* Icon.png */; };
+ DCFB064B18E32BBD00DF02A0 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DCFB064718E32BBD00DF02A0 /* Icon@2x.png */; };
+ DCFB064E18E32BFA00DF02A0 /* CCBPluginSKFile.m in Sources */ = {isa = PBXBuildFile; fileRef = DCFB064D18E32BFA00DF02A0 /* CCBPluginSKFile.m */; };
+ DCFB065118E32C3900DF02A0 /* SKFile.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = DCFB063F18E32B7500DF02A0 /* SKFile.ccbPlugNode */; };
+ E312972E16CC33B200A09155 /* SequencerPopoverBlock.xib in Resources */ = {isa = PBXBuildFile; fileRef = E312972D16CC33B200A09155 /* SequencerPopoverBlock.xib */; };
+ E312973316CC377700A09155 /* SequencerPopoverBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = E312973216CC377700A09155 /* SequencerPopoverBlock.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ E312973516CC677400A09155 /* SequencerPopoverSound.xib in Resources */ = {isa = PBXBuildFile; fileRef = E312973416CC677400A09155 /* SequencerPopoverSound.xib */; };
+ E312973816CC67CB00A09155 /* SequencerPopoverSound.m in Sources */ = {isa = PBXBuildFile; fileRef = E312973716CC67CA00A09155 /* SequencerPopoverSound.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
+ E312EDC616AF71FE000778C8 /* CCBReaderInternalRenamedProps.plist in Resources */ = {isa = PBXBuildFile; fileRef = E312EDC516AF71FE000778C8 /* CCBReaderInternalRenamedProps.plist */; };
+ E318CB3916D83F3B00348E0D /* InspectorPopoverFloatXY.xib in Resources */ = {isa = PBXBuildFile; fileRef = E318CB3816D83F3B00348E0D /* InspectorPopoverFloatXY.xib */; };
+ E3214C4115D3BF4D002413A7 /* CustomPropSettingsWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3214C4015D3BF4D002413A7 /* CustomPropSettingsWindow.xib */; };
+ E3214C4415D3C29D002413A7 /* CustomPropSettingsWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3214C4315D3C29D002413A7 /* CustomPropSettingsWindow.m */; };
+ E3214C4715D3C3AF002413A7 /* CustomPropSetting.m in Sources */ = {isa = PBXBuildFile; fileRef = E3214C4615D3C3AF002413A7 /* CustomPropSetting.m */; };
+ E3214C4B15D40F01002413A7 /* InspectorCustom.m in Sources */ = {isa = PBXBuildFile; fileRef = E3214C4915D40F01002413A7 /* InspectorCustom.m */; };
+ E3214C4C15D40F01002413A7 /* InspectorCustom.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3214C4A15D40F01002413A7 /* InspectorCustom.xib */; };
+ E3214C5D15D54356002413A7 /* InspectorCustomEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = E3214C5B15D54355002413A7 /* InspectorCustomEdit.m */; };
+ E3214C5E15D54356002413A7 /* InspectorCustomEdit.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3214C5C15D54355002413A7 /* InspectorCustomEdit.xib */; };
+ E325F64514F531F500D29BCF /* InspectorFloatVar.xib in Resources */ = {isa = PBXBuildFile; fileRef = E325F64414F531F500D29BCF /* InspectorFloatVar.xib */; };
+ E325F64814F5336E00D29BCF /* InspectorFloatVar.m in Sources */ = {isa = PBXBuildFile; fileRef = E325F64714F5336E00D29BCF /* InspectorFloatVar.m */; };
+ E325F64A14F53FD000D29BCF /* InspectorColor4FVar.xib in Resources */ = {isa = PBXBuildFile; fileRef = E325F64914F53FD000D29BCF /* InspectorColor4FVar.xib */; };
+ E325F64D14F53FF100D29BCF /* InspectorColor4FVar.m in Sources */ = {isa = PBXBuildFile; fileRef = E325F64C14F53FF000D29BCF /* InspectorColor4FVar.m */; };
+ E325F64F14F5622200D29BCF /* InspectorSeparatorSub.xib in Resources */ = {isa = PBXBuildFile; fileRef = E325F64E14F5622200D29BCF /* InspectorSeparatorSub.xib */; };
+ E325F65214F5669600D29BCF /* InspectorSeparatorSub.m in Sources */ = {isa = PBXBuildFile; fileRef = E325F65114F5669600D29BCF /* InspectorSeparatorSub.m */; };
+ E325F65514F5749800D29BCF /* CCBPParticleSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = E325F65414F5749800D29BCF /* CCBPParticleSystem.m */; };
+ E326EFB615C84123006D6CE6 /* seq-endmarker.png in Resources */ = {isa = PBXBuildFile; fileRef = E326EFB515C84123006D6CE6 /* seq-endmarker.png */; };
+ E32BBCB11561361200C58395 /* HashValue.m in Sources */ = {isa = PBXBuildFile; fileRef = E32BBCB01561361200C58395 /* HashValue.m */; };
+ E32D8CC514EC257000F4BD5E /* InspectorCodeConnections.xib in Resources */ = {isa = PBXBuildFile; fileRef = E32D8CC414EC257000F4BD5E /* InspectorCodeConnections.xib */; };
+ E32D8CC814EC25D800F4BD5E /* InspectorCodeConnections.m in Sources */ = {isa = PBXBuildFile; fileRef = E32D8CC714EC25D800F4BD5E /* InspectorCodeConnections.m */; };
+ E32FA2F816D5781600254653 /* seq-row-channel-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E32FA2F716D5781600254653 /* seq-row-channel-bg.png */; };
+ E334069715517225000FBD0B /* InspectorFloatScale.xib in Resources */ = {isa = PBXBuildFile; fileRef = E334069615517225000FBD0B /* InspectorFloatScale.xib */; };
+ E334069B1551725F000FBD0B /* InspectorFloatScale.m in Sources */ = {isa = PBXBuildFile; fileRef = E334069A1551725F000FBD0B /* InspectorFloatScale.m */; };
+ E334741C169DC5A7000737CC /* APIDocsWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E334741A169DC5A6000737CC /* APIDocsWindow.m */; };
+ E334741D169DC5A7000737CC /* APIDocsWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E334741B169DC5A6000737CC /* APIDocsWindow.xib */; };
+ E334A4DE170CF475001604F7 /* seq-btn-end.png in Resources */ = {isa = PBXBuildFile; fileRef = E334A4DC170CF475001604F7 /* seq-btn-end.png */; };
+ E334A4DF170CF475001604F7 /* toolbar-bottom-noborder.png in Resources */ = {isa = PBXBuildFile; fileRef = E334A4DD170CF475001604F7 /* toolbar-bottom-noborder.png */; };
+ E334A4E4170CFDE3001604F7 /* CCBTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = E334A4E3170CFDE3001604F7 /* CCBTextField.m */; };
+ E334A4E6170D0020001604F7 /* debugger-bug.png in Resources */ = {isa = PBXBuildFile; fileRef = E334A4E5170D0020001604F7 /* debugger-bug.png */; };
+ E335CAEB15751C0D00A612EE /* seq-ctrl-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E335CAEA15751C0D00A612EE /* seq-ctrl-bg.png */; };
+ E335CAF3157603C200A612EE /* SequencerHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CAF2157603C200A612EE /* SequencerHandler.m */; };
+ E335CAF6157649F900A612EE /* SequencerExpandBtnCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CAF5157649F900A612EE /* SequencerExpandBtnCell.m */; };
+ E335CAF815764E6B00A612EE /* seq-btn-expand.png in Resources */ = {isa = PBXBuildFile; fileRef = E335CAF715764E6B00A612EE /* seq-btn-expand.png */; };
+ E335CAFB1576592600A612EE /* SequencerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CAFA1576592600A612EE /* SequencerCell.m */; };
+ E335CAFD15765BB700A612EE /* seq-vseparator.png in Resources */ = {isa = PBXBuildFile; fileRef = E335CAFC15765BB700A612EE /* seq-vseparator.png */; };
+ E335CB001576702300A612EE /* MainWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CAFF1576702300A612EE /* MainWindow.m */; };
+ E335CB031577838800A612EE /* SequencerOutlineView.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CB021577838800A612EE /* SequencerOutlineView.m */; };
+ E335CB061577995F00A612EE /* CCBSplitView.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CB051577995F00A612EE /* CCBSplitView.m */; };
+ E335CB0A1577C5FB00A612EE /* CCNode+NodeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CB091577C5FB00A612EE /* CCNode+NodeInfo.m */; };
+ E335CB0C1577D64C00A612EE /* seq-btn-collapse.png in Resources */ = {isa = PBXBuildFile; fileRef = E335CB0B1577D64C00A612EE /* seq-btn-collapse.png */; };
+ E335CB0F1578C2C600A612EE /* SequencerStructureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E335CB0E1578C2C600A612EE /* SequencerStructureCell.m */; };
+ E33BC1B81510E4B6009AE29A /* NodeGraphPropertySetter.m in Sources */ = {isa = PBXBuildFile; fileRef = E33BC1B71510E4B6009AE29A /* NodeGraphPropertySetter.m */; };
+ E33C2AAC15C987EB0043EF9B /* ResourceManagerOutlineView.m in Sources */ = {isa = PBXBuildFile; fileRef = E33C2AAB15C987EB0043EF9B /* ResourceManagerOutlineView.m */; };
+ E33C2AAF15C9A0D40043EF9B /* SequencerUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E33C2AAE15C9A0D40043EF9B /* SequencerUtil.m */; };
+ E33C2AB515CAE2590043EF9B /* SequencerStretchWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E33C2AB415CAE2580043EF9B /* SequencerStretchWindow.xib */; };
+ E33C2AB815CAE3980043EF9B /* SequencerStretchWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E33C2AB715CAE3960043EF9B /* SequencerStretchWindow.m */; };
+ E33C2ABA15CBF2580043EF9B /* seq-keyframe-hint.png in Resources */ = {isa = PBXBuildFile; fileRef = E33C2AB915CBF2580043EF9B /* seq-keyframe-hint.png */; };
+ E34039BE1624BF610067C7B8 /* CCBDocumentController.m in Sources */ = {isa = PBXBuildFile; fileRef = E34039BD1624BF610067C7B8 /* CCBDocumentController.m */; };
+ E3462867155BF6C50043EAB1 /* ResourceManagerOutlineHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E3462866155BF6C50043EAB1 /* ResourceManagerOutlineHandler.m */; };
+ E346286B155C18D80043EAB1 /* SavePanelLimiter.m in Sources */ = {isa = PBXBuildFile; fileRef = E346286A155C18D80043EAB1 /* SavePanelLimiter.m */; };
+ E3462870155D22290043EAB1 /* CCBPublisher.m in Sources */ = {isa = PBXBuildFile; fileRef = E346286F155D22290043EAB1 /* CCBPublisher.m */; };
+ E3462873155D22FC0043EAB1 /* CCBWarnings.m in Sources */ = {isa = PBXBuildFile; fileRef = E3462872155D22FC0043EAB1 /* CCBWarnings.m */; };
+ E34E5D6615357CF2000201FB /* RulersLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = E34E5D6515357CF2000201FB /* RulersLayer.m */; };
+ E34E5D6A153585EC000201FB /* ruler-bg-horizontal.png in Resources */ = {isa = PBXBuildFile; fileRef = E34E5D68153585EC000201FB /* ruler-bg-horizontal.png */; };
+ E34E5D6B153585EC000201FB /* ruler-bg-vertical.png in Resources */ = {isa = PBXBuildFile; fileRef = E34E5D69153585EC000201FB /* ruler-bg-vertical.png */; };
+ E34E5D6E1535AA78000201FB /* ruler-mark-major.png in Resources */ = {isa = PBXBuildFile; fileRef = E34E5D6C1535AA78000201FB /* ruler-mark-major.png */; };
+ E34E5D6F1535AA78000201FB /* ruler-mark-minor.png in Resources */ = {isa = PBXBuildFile; fileRef = E34E5D6D1535AA78000201FB /* ruler-mark-minor.png */; };
+ E34E5D711535B34F000201FB /* ruler-mark-origin.png in Resources */ = {isa = PBXBuildFile; fileRef = E34E5D701535B34F000201FB /* ruler-mark-origin.png */; };
+ E34E5D731535BC5E000201FB /* ruler-numbers.png in Resources */ = {isa = PBXBuildFile; fileRef = E34E5D721535BC5E000201FB /* ruler-numbers.png */; };
+ E3583FB01756C228002DF0B0 /* ResourceManagerPreviewView.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3583FAF1756C228002DF0B0 /* ResourceManagerPreviewView.xib */; };
+ E35A135F15B038D700C9AA15 /* ThoMoClientStub.m in Sources */ = {isa = PBXBuildFile; fileRef = E35A135115B038D700C9AA15 /* ThoMoClientStub.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
+ E35A136015B038D700C9AA15 /* ThoMoNetworkStub.m in Sources */ = {isa = PBXBuildFile; fileRef = E35A135615B038D700C9AA15 /* ThoMoNetworkStub.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
+ E35A136115B038D700C9AA15 /* ThoMoServerStub.m in Sources */ = {isa = PBXBuildFile; fileRef = E35A135915B038D700C9AA15 /* ThoMoServerStub.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
+ E35A136215B038D700C9AA15 /* ThoMoTCPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = E35A135D15B038D700C9AA15 /* ThoMoTCPConnection.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
+ E35A2D8D1540111A00F78B72 /* position-0.png in Resources */ = {isa = PBXBuildFile; fileRef = E35A2D871540111A00F78B72 /* position-0.png */; };
+ E35A2D8E1540111A00F78B72 /* position-1.png in Resources */ = {isa = PBXBuildFile; fileRef = E35A2D881540111A00F78B72 /* position-1.png */; };
+ E35A2D8F1540111A00F78B72 /* position-2.png in Resources */ = {isa = PBXBuildFile; fileRef = E35A2D891540111A00F78B72 /* position-2.png */; };
+ E35A2D901540111A00F78B72 /* position-3.png in Resources */ = {isa = PBXBuildFile; fileRef = E35A2D8A1540111A00F78B72 /* position-3.png */; };
+ E35A2D9C1540207000F78B72 /* PositionPropertySetter.m in Sources */ = {isa = PBXBuildFile; fileRef = E35A2D9B1540207000F78B72 /* PositionPropertySetter.m */; };
+ E35D78D516826C0100A53BEF /* SpriteSheetSettingsWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E35D78D316826C0100A53BEF /* SpriteSheetSettingsWindow.m */; };
+ E35D78D616826C0100A53BEF /* SpriteSheetSettingsWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35D78D416826C0100A53BEF /* SpriteSheetSettingsWindow.xib */; };
+ E35DBB8114F225D30070A6E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E35DBB8714F225D30070A6E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E35DBB8514F225D30070A6E4 /* InfoPlist.strings */; };
+ E35DBB8C14F226190070A6E4 /* CCNodeColor.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E35DBB8014F225D30070A6E4 /* CCNodeColor.ccbPlugNode */; };
+ E35DBB9014F226560070A6E4 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E35DBB8F14F226560070A6E4 /* CCBPProperties.plist */; };
+ E35DBB9914F244BC0070A6E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E35DBB9F14F244BC0070A6E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E35DBB9D14F244BC0070A6E4 /* InfoPlist.strings */; };
+ E35DBBA614F245030070A6E4 /* CCNodeGradient.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E35DBB9814F244BB0070A6E4 /* CCNodeGradient.ccbPlugNode */; };
+ E35DBBA814F245490070A6E4 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBA714F245490070A6E4 /* CCBPProperties.plist */; };
+ E35DBBBF14F29E9D0070A6E4 /* InspectorFntFile.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBBE14F29E9D0070A6E4 /* InspectorFntFile.xib */; };
+ E35DBBC214F29EF80070A6E4 /* InspectorFntFile.m in Sources */ = {isa = PBXBuildFile; fileRef = E35DBBC114F29EF80070A6E4 /* InspectorFntFile.m */; };
+ E35DBBC414F2A2900070A6E4 /* InspectorText.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBC314F2A2900070A6E4 /* InspectorText.xib */; };
+ E35DBBC714F2A2A50070A6E4 /* InspectorText.m in Sources */ = {isa = PBXBuildFile; fileRef = E35DBBC614F2A2A50070A6E4 /* InspectorText.m */; };
+ E35DBBCD14F2AA360070A6E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E35DBBD314F2AA360070A6E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBD114F2AA360070A6E4 /* InfoPlist.strings */; };
+ E35DBBDA14F2AA7C0070A6E4 /* CCLabelBMFont.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E35DBBCC14F2AA350070A6E4 /* CCLabelBMFont.ccbPlugNode */; };
+ E35DBBDC14F2AB740070A6E4 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBDB14F2AB740070A6E4 /* CCBPProperties.plist */; };
+ E35DBBDF14F3D1B60070A6E4 /* FontListTTF.plist in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBDE14F3D1B60070A6E4 /* FontListTTF.plist */; };
+ E35DBBE114F3DCDF0070A6E4 /* InspectorFontTTF.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBE014F3DCDE0070A6E4 /* InspectorFontTTF.xib */; };
+ E35DBBE414F3DD0B0070A6E4 /* InspectorFontTTF.m in Sources */ = {isa = PBXBuildFile; fileRef = E35DBBE314F3DD0A0070A6E4 /* InspectorFontTTF.m */; };
+ E35DBBEA14F3E2390070A6E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E35DBBF014F3E2390070A6E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBEE14F3E2390070A6E4 /* InfoPlist.strings */; };
+ E35DBBF714F3E2750070A6E4 /* CCLabelTTF.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E35DBBE914F3E2390070A6E4 /* CCLabelTTF.ccbPlugNode */; };
+ E35DBBF914F3E29E0070A6E4 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBF814F3E29E0070A6E4 /* CCBPProperties.plist */; };
+ E35DBBFB14F3EE210070A6E4 /* InspectorFloat.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35DBBFA14F3EE210070A6E4 /* InspectorFloat.xib */; };
+ E35DBBFE14F3EE410070A6E4 /* InspectorFloat.m in Sources */ = {isa = PBXBuildFile; fileRef = E35DBBFD14F3EE400070A6E4 /* InspectorFloat.m */; };
+ E35DBC0A14F4D72B0070A6E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E35DBC1014F4D72B0070A6E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E35DBC0E14F4D72B0070A6E4 /* InfoPlist.strings */; };
+ E35DBC1714F4D79C0070A6E4 /* CCParticleSystem.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E35DBC0914F4D72B0070A6E4 /* CCParticleSystem.ccbPlugNode */; };
+ E35DBC1914F4D7D50070A6E4 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E35DBC1814F4D7D50070A6E4 /* CCBPProperties.plist */; };
+ E35DBC1B14F4DED00070A6E4 /* InspectorStartStop.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35DBC1A14F4DED00070A6E4 /* InspectorStartStop.xib */; };
+ E35DBC1E14F4DF050070A6E4 /* InspectorStartStop.m in Sources */ = {isa = PBXBuildFile; fileRef = E35DBC1D14F4DF040070A6E4 /* InspectorStartStop.m */; };
+ E35DBC2014F4ED0E0070A6E4 /* InspectorIntegerLabeled.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35DBC1F14F4ED0D0070A6E4 /* InspectorIntegerLabeled.xib */; };
+ E35DBC2314F4ED980070A6E4 /* InspectorIntegerLabeled.m in Sources */ = {isa = PBXBuildFile; fileRef = E35DBC2214F4ED970070A6E4 /* InspectorIntegerLabeled.m */; };
+ E35DBC2514F4FEF90070A6E4 /* InspectorTexture.xib in Resources */ = {isa = PBXBuildFile; fileRef = E35DBC2414F4FEF80070A6E4 /* InspectorTexture.xib */; };
+ E35DBC2814F4FF410070A6E4 /* InspectorTexture.m in Sources */ = {isa = PBXBuildFile; fileRef = E35DBC2714F4FF3F0070A6E4 /* InspectorTexture.m */; };
+ E360789015EBA5420040A172 /* sel-frame.png in Resources */ = {isa = PBXBuildFile; fileRef = E360788F15EBA5420040A172 /* sel-frame.png */; };
+ E36078BC15EE0B2C0040A172 /* sel-round.png in Resources */ = {isa = PBXBuildFile; fileRef = E36078BB15EE0B2C0040A172 /* sel-round.png */; };
+ E3618D5616655041009F5805 /* CCBPublisherTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = E3618D5516655041009F5805 /* CCBPublisherTemplate.m */; };
+ E367E32016384F0C00247F12 /* orientation-landscapeleft.png in Resources */ = {isa = PBXBuildFile; fileRef = E367E31C16384F0C00247F12 /* orientation-landscapeleft.png */; };
+ E367E32116384F0C00247F12 /* orientation-landscaperight.png in Resources */ = {isa = PBXBuildFile; fileRef = E367E31D16384F0C00247F12 /* orientation-landscaperight.png */; };
+ E367E32316384F0C00247F12 /* orientation-upsidedown.png in Resources */ = {isa = PBXBuildFile; fileRef = E367E31F16384F0C00247F12 /* orientation-upsidedown.png */; };
+ E367E32516384F3600247F12 /* orientation-portrait.png in Resources */ = {isa = PBXBuildFile; fileRef = E367E32416384F3600247F12 /* orientation-portrait.png */; };
+ E36ECCE5158648EE003C177E /* SequencerNodeProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = E36ECCE4158648EE003C177E /* SequencerNodeProperty.m */; };
+ E36ECD0D15868F57003C177E /* SequencerKeyframe.m in Sources */ = {isa = PBXBuildFile; fileRef = E36ECD0C15868F57003C177E /* SequencerKeyframe.m */; };
+ E36ECD6415869779003C177E /* seq-btn-back.png in Resources */ = {isa = PBXBuildFile; fileRef = E36ECD6115869779003C177E /* seq-btn-back.png */; };
+ E36ECD6515869779003C177E /* seq-keyframe-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = E36ECD6215869779003C177E /* seq-keyframe-sel.png */; };
+ E36ECD6615869779003C177E /* seq-keyframe.png in Resources */ = {isa = PBXBuildFile; fileRef = E36ECD6315869779003C177E /* seq-keyframe.png */; };
+ E36F3C3D152C756D00AAD805 /* NSString+RelativePath.m in Sources */ = {isa = PBXBuildFile; fileRef = E36F3C3C152C756D00AAD805 /* NSString+RelativePath.m */; };
+ E370BA0C1549B2460048ED73 /* scale-0.png in Resources */ = {isa = PBXBuildFile; fileRef = E370BA0A1549B2460048ED73 /* scale-0.png */; };
+ E370BA0D1549B2460048ED73 /* scale-1.png in Resources */ = {isa = PBXBuildFile; fileRef = E370BA0B1549B2460048ED73 /* scale-1.png */; };
+ E3748303171F83A300486659 /* editor-jump.png in Resources */ = {isa = PBXBuildFile; fileRef = E3748302171F83A300486659 /* editor-jump.png */; };
+ E3799EAD155979BF00196B4A /* ProjectSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = E3799EAC155979BF00196B4A /* ProjectSettings.m */; };
+ E37FCAEE175D2704009F81D6 /* ui-cogs.png in Resources */ = {isa = PBXBuildFile; fileRef = E37FCAEC175D2704009F81D6 /* ui-cogs.png */; };
+ E37FCAEF175D2704009F81D6 /* ui-cogs@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E37FCAED175D2704009F81D6 /* ui-cogs@2x.png */; };
+ E37FCAF4175D68FF009F81D6 /* ResourceManagerPreviewView.m in Sources */ = {isa = PBXBuildFile; fileRef = E37FCAF3175D68FF009F81D6 /* ResourceManagerPreviewView.m */; };
+ E37FCAF9175FF70F009F81D6 /* CCBImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = E37FCAF8175FF70F009F81D6 /* CCBImageView.m */; };
+ E3808DB41641C45B00398456 /* PublishSettingsWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3808DB31641C45B00398456 /* PublishSettingsWindow.xib */; };
+ E3808DB71641CB6400398456 /* PublishSettingsWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3808DB61641CB6400398456 /* PublishSettingsWindow.m */; };
+ E3808DBA1641D4B800398456 /* CCBTextFieldLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = E3808DB91641D4B800398456 /* CCBTextFieldLabel.m */; };
+ E380B2521642FC3C0006D31C /* TexturePacker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E380B24D1642FC3C0006D31C /* TexturePacker.cpp */; };
+ E380B2531642FC3C0006D31C /* Tupac.mm in Sources */ = {isa = PBXBuildFile; fileRef = E380B2501642FC3C0006D31C /* Tupac.mm */; };
+ E3850809150AA9AE007E162A /* ImageAndTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E3850808150AA9AE007E162A /* ImageAndTextCell.m */; };
+ E385080B150AB232007E162A /* segmctrl-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E385080A150AB232007E162A /* segmctrl-bg.png */; };
+ E385A42014F69FF300DFB12D /* InspectorBlock.xib in Resources */ = {isa = PBXBuildFile; fileRef = E385A41F14F69FF300DFB12D /* InspectorBlock.xib */; };
+ E385A42314F6A01900DFB12D /* InspectorBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = E385A42214F6A01900DFB12D /* InspectorBlock.m */; };
+ E388FD19171F03C7002548ED /* editor-border.png in Resources */ = {isa = PBXBuildFile; fileRef = E388FD18171F03C7002548ED /* editor-border.png */; };
+ E38DAB22165AC18800EA24E4 /* reshandler-spritesheet-folder.png in Resources */ = {isa = PBXBuildFile; fileRef = E38DAB21165AC18800EA24E4 /* reshandler-spritesheet-folder.png */; };
+ E38F79361715FD8D00E299E4 /* editor-warning.png in Resources */ = {isa = PBXBuildFile; fileRef = E38F79351715FD8D00E299E4 /* editor-warning.png */; };
+ E390C77E170A2C9B003E9E92 /* AboutWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E390C77C170A2C9B003E9E92 /* AboutWindow.m */; };
+ E390C77F170A2C9B003E9E92 /* AboutWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E390C77D170A2C9B003E9E92 /* AboutWindow.xib */; };
+ E390C781170A371E003E9E92 /* Generated in Resources */ = {isa = PBXBuildFile; fileRef = E390C780170A371E003E9E92 /* Generated */; };
+ E39108081679365600391C3B /* MaxRectsBinPack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E39108041679365600391C3B /* MaxRectsBinPack.cpp */; };
+ E39108091679365600391C3B /* Rect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E39108061679365600391C3B /* Rect.cpp */; };
+ E3926188159C69D20034FF1D /* SequencerKeyframeEasing.m in Sources */ = {isa = PBXBuildFile; fileRef = E3926187159C69D20034FF1D /* SequencerKeyframeEasing.m */; };
+ E392618F159CAAA10034FF1D /* seq-keyframe-interpol-vis.png in Resources */ = {isa = PBXBuildFile; fileRef = E392618A159CAAA10034FF1D /* seq-keyframe-interpol-vis.png */; };
+ E3926190159CAAA10034FF1D /* seq-keyframe-l-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = E392618B159CAAA10034FF1D /* seq-keyframe-l-sel.png */; };
+ E3926191159CAAA10034FF1D /* seq-keyframe-l.png in Resources */ = {isa = PBXBuildFile; fileRef = E392618C159CAAA10034FF1D /* seq-keyframe-l.png */; };
+ E3926192159CAAA10034FF1D /* seq-keyframe-r-sel.png in Resources */ = {isa = PBXBuildFile; fileRef = E392618D159CAAA10034FF1D /* seq-keyframe-r-sel.png */; };
+ E3926193159CAAA10034FF1D /* seq-keyframe-r.png in Resources */ = {isa = PBXBuildFile; fileRef = E392618E159CAAA10034FF1D /* seq-keyframe-r.png */; };
+ E398C02314FB81A30078E771 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E398C02914FB81A30078E771 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E398C02714FB81A30078E771 /* InfoPlist.strings */; };
+ E398C03014FB82170078E771 /* Cocos2D iPhone.ccbPlugExport in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E398C02214FB81A30078E771 /* Cocos2D iPhone.ccbPlugExport */; };
+ E398C03314FB86D20078E771 /* PlugInExport.m in Sources */ = {isa = PBXBuildFile; fileRef = E398C03214FB86D20078E771 /* PlugInExport.m */; };
+ E398C03814FB8A430078E771 /* CCBX.m in Sources */ = {isa = PBXBuildFile; fileRef = E398C03614FB8A430078E771 /* CCBX.m */; };
+ E398C03B14FB8F850078E771 /* CCBXCocos2diPhone.m in Sources */ = {isa = PBXBuildFile; fileRef = E398C03A14FB8F850078E771 /* CCBXCocos2diPhone.m */; };
+ E398C04014FBC9D00078E771 /* PublishTypeAccessoryView.xib in Resources */ = {isa = PBXBuildFile; fileRef = E398C03F14FBC9CF0078E771 /* PublishTypeAccessoryView.xib */; };
+ E398C04314FBCA620078E771 /* PublishTypeAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = E398C04214FBCA620078E771 /* PublishTypeAccessoryView.m */; };
+ E39B63A11587E56D009BDE38 /* seq-row-0-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E39B639E1587E56D009BDE38 /* seq-row-0-bg.png */; };
+ E39B63A21587E56D009BDE38 /* seq-row-1-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E39B639F1587E56D009BDE38 /* seq-row-1-bg.png */; };
+ E39B63A31587E56D009BDE38 /* seq-row-n-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E39B63A01587E56D009BDE38 /* seq-row-n-bg.png */; };
+ E39C917B174C134C00092BD1 /* toolbar-btn-add.png in Resources */ = {isa = PBXBuildFile; fileRef = E39C917A174C134C00092BD1 /* toolbar-btn-add.png */; };
+ E3A0ED52158FE3AB000BDF4B /* btn-dropdown.png in Resources */ = {isa = PBXBuildFile; fileRef = E3A0ED51158FE3AB000BDF4B /* btn-dropdown.png */; };
+ E3A0ED55158FEAC0000BDF4B /* btn-dropdown-arrows.png in Resources */ = {isa = PBXBuildFile; fileRef = E3A0ED54158FEAC0000BDF4B /* btn-dropdown-arrows.png */; };
+ E3A0ED57159118F3000BDF4B /* SequencerSettingsWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3A0ED56159118F3000BDF4B /* SequencerSettingsWindow.xib */; };
+ E3A0ED5A159119E7000BDF4B /* SequencerSettingsWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A0ED59159119E7000BDF4B /* SequencerSettingsWindow.m */; };
+ E3A16AF01536C885004B528A /* ruler-guide.png in Resources */ = {isa = PBXBuildFile; fileRef = E3A16AEF1536C885004B528A /* ruler-guide.png */; };
+ E3A16AF31536D096004B528A /* GuidesLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A16AF21536D096004B528A /* GuidesLayer.m */; };
+ E3A16AF61536D69A004B528A /* CCBPLabelTTF.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A16AF51536D69A004B528A /* CCBPLabelTTF.m */; };
+ E3A4747816D43B5800DB0D61 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E3A4747716D43B5800DB0D61 /* AudioToolbox.framework */; };
+ E3A4747A16D43BEA00DB0D61 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E3A4747916D43BEA00DB0D61 /* OpenAL.framework */; };
+ E3A4747C16D43BF300DB0D61 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E3A4747B16D43BF300DB0D61 /* AVFoundation.framework */; };
+ E3AF6CD815F0A7E10048DB2A /* HelpWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3AF6CD715F0A7E10048DB2A /* HelpWindow.xib */; };
+ E3AF6CDB15F0A9BC0048DB2A /* HelpWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3AF6CDA15F0A9BC0048DB2A /* HelpWindow.m */; };
+ E3AF6CDF15F0CF8B0048DB2A /* libMMMarkdown-Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E3AF6CDD15F0CF8B0048DB2A /* libMMMarkdown-Mac.a */; };
+ E3AF6CE115F0CFAE0048DB2A /* Documentation in Resources */ = {isa = PBXBuildFile; fileRef = E3AF6CE015F0CFAE0048DB2A /* Documentation */; };
+ E3AF6CE415F0DBA90048DB2A /* HelpPage.m in Sources */ = {isa = PBXBuildFile; fileRef = E3AF6CE315F0DBA90048DB2A /* HelpPage.m */; };
+ E3AF6CE615F0F5760048DB2A /* help-logo.png in Resources */ = {isa = PBXBuildFile; fileRef = E3AF6CE515F0F5760048DB2A /* help-logo.png */; };
+ E3B19F6B15E62ADA000B023E /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E3B19F6A15E62ADA000B023E /* Carbon.framework */; };
+ E3B19F6D15E65229000B023E /* DefaultResourcesList.plist in Resources */ = {isa = PBXBuildFile; fileRef = E3B19F6C15E65229000B023E /* DefaultResourcesList.plist */; };
+ E3B4221114E49DEB004547D6 /* InspectorInteger.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4221014E49DEB004547D6 /* InspectorInteger.m */; };
+ E3B4221314E4A350004547D6 /* InspectorCheck.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B4221214E4A350004547D6 /* InspectorCheck.xib */; };
+ E3B4221614E4A381004547D6 /* InspectorCheck.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4221514E4A381004547D6 /* InspectorCheck.m */; };
+ E3B4221814E4BE6B004547D6 /* InspectorSpriteFrame.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B4221714E4BE6B004547D6 /* InspectorSpriteFrame.xib */; };
+ E3B4221B14E4BE87004547D6 /* InspectorSpriteFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4221A14E4BE87004547D6 /* InspectorSpriteFrame.m */; };
+ E3B4221D14E58C35004547D6 /* InspectorByte.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B4221C14E58C35004547D6 /* InspectorByte.xib */; };
+ E3B4222014E58C75004547D6 /* InspectorByte.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4221F14E58C75004547D6 /* InspectorByte.m */; };
+ E3B4222214E58FEE004547D6 /* InspectorColor3.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B4222114E58FEE004547D6 /* InspectorColor3.xib */; };
+ E3B4222514E59035004547D6 /* InspectorColor3.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4222414E59035004547D6 /* InspectorColor3.m */; };
+ E3B4222714E5992F004547D6 /* InspectorFlip.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B4222614E5992F004547D6 /* InspectorFlip.xib */; };
+ E3B4222A14E59F5D004547D6 /* InspectorFlip.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4222914E59F5C004547D6 /* InspectorFlip.m */; };
+ E3B4222C14E5A828004547D6 /* InspectorBlendmode.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B4222B14E5A828004547D6 /* InspectorBlendmode.xib */; };
+ E3B4222F14E5A849004547D6 /* InspectorBlendmode.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4222E14E5A849004547D6 /* InspectorBlendmode.m */; };
+ E3B4223214E5CF97004547D6 /* NodeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4223114E5CF97004547D6 /* NodeInfo.m */; };
+ E3B4223414E5E68B004547D6 /* InspectorSeparator.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B4223314E5E68A004547D6 /* InspectorSeparator.xib */; };
+ E3B4223714E5E6AD004547D6 /* InspectorSeparator.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B4223614E5E6AC004547D6 /* InspectorSeparator.m */; };
+ E3B5EE8916D6E0AA00C07990 /* InspectorFloatXY.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B5EE8716D6E0A900C07990 /* InspectorFloatXY.m */; };
+ E3B5EE8A16D6E0AA00C07990 /* InspectorFloatXY.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B5EE8816D6E0AA00C07990 /* InspectorFloatXY.xib */; };
+ E3B7AEC614E3193500DFD402 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E3B7AECC14E3193500DFD402 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E3B7AECA14E3193500DFD402 /* InfoPlist.strings */; };
+ E3B7AED514E31E6C00DFD402 /* CCNode.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E3B7AEC514E3193500DFD402 /* CCNode.ccbPlugNode */; };
+ E3B7AEDD14E3246100DFD402 /* PlugInManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B7AEDC14E3246100DFD402 /* PlugInManager.m */; };
+ E3B7AEE014E32E7F00DFD402 /* PlugInNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B7AEDF14E32E7F00DFD402 /* PlugInNode.m */; };
+ E3B7AEE214E336C300DFD402 /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E3B7AEE114E336C300DFD402 /* CCBPProperties.plist */; };
+ E3B7AEE914E33F4C00DFD402 /* InspectorPosition.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3B7AEE814E33F4C00DFD402 /* InspectorPosition.xib */; };
+ E3B7AEEC14E342E200DFD402 /* InspectorPosition.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B7AEEB14E342E200DFD402 /* InspectorPosition.m */; };
+ E3B7AEEF14E34A4D00DFD402 /* InspectorValue.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B7AEEE14E34A4D00DFD402 /* InspectorValue.m */; };
+ E3B7BC9C15E3B7F100CF95EF /* NodePlugInsList.plist in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BC9B15E3B7F100CF95EF /* NodePlugInsList.plist */; };
+ E3B7BCA015E3BCFE00CF95EF /* MainToolbarDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B7BC9F15E3BCFE00CF95EF /* MainToolbarDelegate.m */; };
+ E3B7BCA215E4166000CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCA115E4166000CF95EF /* Icon.png */; };
+ E3B7BCA415E4167900CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCA315E4167900CF95EF /* Icon.png */; };
+ E3B7BCA615E4168D00CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCA515E4168D00CF95EF /* Icon.png */; };
+ E3B7BCAA15E416BF00CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCA915E416BF00CF95EF /* Icon.png */; };
+ E3B7BCAC15E416D200CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCAB15E416D200CF95EF /* Icon.png */; };
+ E3B7BCB015E4170400CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCAF15E4170400CF95EF /* Icon.png */; };
+ E3B7BCB215E4171700CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCB115E4171700CF95EF /* Icon.png */; };
+ E3B7BCBA15E4E14200CF95EF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCB915E4E14200CF95EF /* Icon.png */; };
+ E3B7BCBE15E505CC00CF95EF /* TB_plugins.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B7BCBD15E505CC00CF95EF /* TB_plugins.png */; };
+ E3B9AF431538612200489438 /* ruler-xy.png in Resources */ = {isa = PBXBuildFile; fileRef = E3B9AF421538612200489438 /* ruler-xy.png */; };
+ E3B9AF4B153C150D00489438 /* CCBTransparentWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B9AF4A153C150D00489438 /* CCBTransparentWindow.m */; };
+ E3B9AF4E153C48E300489438 /* CCBTransparentView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B9AF4D153C48E300489438 /* CCBTransparentView.m */; };
+ E3C12B1B171DD386001EEDDB /* NSWindow+CCBAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C12B1A171DD386001EEDDB /* NSWindow+CCBAccessoryView.m */; };
+ E3C12B1F171E0DE7001EEDDB /* editor-check.png in Resources */ = {isa = PBXBuildFile; fileRef = E3C12B1E171E0DE7001EEDDB /* editor-check.png */; };
+ E3C365EC14E9E4D1007CD5FF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E3C365F214E9E4D1007CD5FF /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E3C365F014E9E4D1007CD5FF /* InfoPlist.strings */; };
+ E3C365FA14E9E599007CD5FF /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E3C365F914E9E599007CD5FF /* CCBPProperties.plist */; };
+ E3C365FE14E9F147007CD5FF /* CCSprite.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E3C365EB14E9E4D1007CD5FF /* CCSprite.ccbPlugNode */; };
+ E3C3660114EA0507007CD5FF /* TexturePropertySetter.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C3660014EA0507007CD5FF /* TexturePropertySetter.m */; };
+ E3C3660414EB2C1B007CD5FF /* CCBReaderInternal.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C3660314EB2C1B007CD5FF /* CCBReaderInternal.m */; };
+ E3C5C1A41504D17E000CF6F3 /* ResourceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C5C1A31504D17E000CF6F3 /* ResourceManager.m */; };
+ E3C5C1AC1504D30C000CF6F3 /* SCEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C5C1A81504D30C000CF6F3 /* SCEvent.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
+ E3C5C1AD1504D30C000CF6F3 /* SCEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C5C1AB1504D30C000CF6F3 /* SCEvents.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
+ E3C5C1B515075CDD000CF6F3 /* ResourceManagerUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C5C1B415075CDD000CF6F3 /* ResourceManagerUtil.m */; };
+ E3C5C1C91508F35E000CF6F3 /* CCBAnimationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C5C1C81508F35E000CF6F3 /* CCBAnimationParser.m */; };
+ E3C65106151A3B7C00D639C0 /* InspectorString.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3C65105151A3B7C00D639C0 /* InspectorString.xib */; };
+ E3C6510A151A65ED00D639C0 /* InspectorString.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C65109151A65ED00D639C0 /* InspectorString.m */; };
+ E3C65128151C7B9000D639C0 /* InspectorBlockCCControl.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3C65127151C7B8F00D639C0 /* InspectorBlockCCControl.xib */; };
+ E3C6512B151C7E3700D639C0 /* InspectorBlockCCControl.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C6512A151C7E3600D639C0 /* InspectorBlockCCControl.m */; };
+ E3C9CCB8161D08B8008A3784 /* InspectorCodeConnectionsJS.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3C9CCB7161D08B8008A3784 /* InspectorCodeConnectionsJS.xib */; };
+ E3C9CCBB161D0BBF008A3784 /* InspectorCodeConnectionsJS.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C9CCBA161D0BBF008A3784 /* InspectorCodeConnectionsJS.m */; };
+ E3D59122150F5367004180CA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */; };
+ E3D59128150F5367004180CA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E3D59126150F5367004180CA /* InfoPlist.strings */; };
+ E3D5912F150F53EA004180CA /* CCBFile.ccbPlugNode in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = E3D59121150F5367004180CA /* CCBFile.ccbPlugNode */; };
+ E3D59131150F5676004180CA /* CCBPProperties.plist in Resources */ = {isa = PBXBuildFile; fileRef = E3D59130150F5676004180CA /* CCBPProperties.plist */; };
+ E3D59133150F85D8004180CA /* InspectorCCBFile.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3D59132150F85D8004180CA /* InspectorCCBFile.xib */; };
+ E3D59136150F861E004180CA /* InspectorCCBFile.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D59135150F861E004180CA /* InspectorCCBFile.m */; };
+ E3D59139150F8C5A004180CA /* CCBPCCBFile.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D59138150F8C5A004180CA /* CCBPCCBFile.m */; };
+ E3D6BA1E16C46E11006AFE0A /* SequencerSoundChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D6BA1D16C46E11006AFE0A /* SequencerSoundChannel.m */; };
+ E3D6BA2316C46E41006AFE0A /* SequencerCallbackChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D6BA2216C46E41006AFE0A /* SequencerCallbackChannel.m */; };
+ E3D6BA2616C46E91006AFE0A /* SequencerChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D6BA2516C46E91006AFE0A /* SequencerChannel.m */; };
+ E3D839DC171356EC004F6127 /* pngquant in Resources */ = {isa = PBXBuildFile; fileRef = E3D839DA171356EC004F6127 /* pngquant */; };
+ E3D839DD171356EC004F6127 /* pngquant-COPYING in Resources */ = {isa = PBXBuildFile; fileRef = E3D839DB171356EC004F6127 /* pngquant-COPYING */; };
+ E3DA6FEE16CAEC7800B12FFB /* SequencerPopoverHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DA6FED16CAEC7800B12FFB /* SequencerPopoverHandler.m */; };
+ E3DA6FF216CAF7D400B12FFB /* SequencerPopoverView.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DA6FF116CAF7D400B12FFB /* SequencerPopoverView.xib */; };
+ E3DA6FF416CB293100B12FFB /* InspectorPopoverPosition.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DA6FF316CB293000B12FFB /* InspectorPopoverPosition.xib */; };
+ E3DA6FF616CB2AC000B12FFB /* InspectorPopoverScaleLock.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DA6FF516CB2AC000B12FFB /* InspectorPopoverScaleLock.xib */; };
+ E3DA6FF816CB2B2900B12FFB /* InspectorPopoverDegrees.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DA6FF716CB2B2900B12FFB /* InspectorPopoverDegrees.xib */; };
+ E3DA6FFA16CB2B8700B12FFB /* InspectorPopoverSpriteFrame.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DA6FF916CB2B8700B12FFB /* InspectorPopoverSpriteFrame.xib */; };
+ E3DA6FFC16CB2BEB00B12FFB /* InspectorPopoverByte.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DA6FFB16CB2BEB00B12FFB /* InspectorPopoverByte.xib */; };
+ E3DA6FFE16CB2C3C00B12FFB /* InspectorPopoverColor3.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DA6FFD16CB2C3C00B12FFB /* InspectorPopoverColor3.xib */; };
+ E3DCFD9C15629FC700BD7D7F /* TaskStatusWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3DCFD9B15629FC700BD7D7F /* TaskStatusWindow.xib */; };
+ E3DCFD9F1562A3AD00BD7D7F /* TaskStatusWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DCFD9E1562A3AD00BD7D7F /* TaskStatusWindow.m */; };
+ E3DEF5B7169B359C00B9DCF4 /* lame in Resources */ = {isa = PBXBuildFile; fileRef = E3DEF5B6169B359C00B9DCF4 /* lame */; };
+ E3DEF5B9169B35DF00B9DCF4 /* lame-COPYING in Resources */ = {isa = PBXBuildFile; fileRef = E3DEF5B8169B35DF00B9DCF4 /* lame-COPYING */; };
+ E3DFA7CD15ACA0CD005D3B6F /* frame-android-medium.png in Resources */ = {isa = PBXBuildFile; fileRef = E3DFA7CA15ACA0CD005D3B6F /* frame-android-medium.png */; };
+ E3DFA7CE15ACA0CD005D3B6F /* frame-android-small.png in Resources */ = {isa = PBXBuildFile; fileRef = E3DFA7CB15ACA0CD005D3B6F /* frame-android-small.png */; };
+ E3DFA7CF15ACA0CD005D3B6F /* frame-android-xsmall.png in Resources */ = {isa = PBXBuildFile; fileRef = E3DFA7CC15ACA0CD005D3B6F /* frame-android-xsmall.png */; };
+ E3DFE831160226760068CB50 /* frame-iphone5.png in Resources */ = {isa = PBXBuildFile; fileRef = E3DFE830160226760068CB50 /* frame-iphone5.png */; };
+ E3E05578159B2322001066C5 /* NSString+AppendToFile.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E05577159B2322001066C5 /* NSString+AppendToFile.m */; };
+ E3E0557D159B8466001066C5 /* seq-keyframe-easein.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E0557A159B8466001066C5 /* seq-keyframe-easein.png */; };
+ E3E0557E159B8466001066C5 /* seq-keyframe-easeout.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E0557B159B8466001066C5 /* seq-keyframe-easeout.png */; };
+ E3E0557F159B8466001066C5 /* seq-keyframe-interpol.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E0557C159B8466001066C5 /* seq-keyframe-interpol.png */; };
+ E3E0878E15669F58008F1FDB /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E3E0878C15669F48008F1FDB /* JavaScriptCore.framework */; };
+ E3E0879015669FA2008F1FDB /* libffi.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = E3E0878F15669FA2008F1FDB /* libffi.dylib */; };
+ E3E2704815B18CF500287470 /* TB_play.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E2704615B18CF500287470 /* TB_play.png */; };
+ E3E2704915B18CF500287470 /* TB_stop.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E2704715B18CF500287470 /* TB_stop.png */; };
+ E3E2704B15B1904400287470 /* toolbar-bottom.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E2704A15B1904300287470 /* toolbar-bottom.png */; };
+ E3E8B4871578F8F800373983 /* SequencerTimelineView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E8B4861578F8F800373983 /* SequencerTimelineView.m */; };
+ E3E8B48A1578FEB100373983 /* seq-tl-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B4891578FEB100373983 /* seq-tl-bg.png */; };
+ E3E8B48E15791FFB00373983 /* seq-tl-mark-major.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B48B15791FFB00373983 /* seq-tl-mark-major.png */; };
+ E3E8B48F15791FFB00373983 /* seq-tl-mark-minor.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B48C15791FFB00373983 /* seq-tl-mark-minor.png */; };
+ E3E8B49015791FFB00373983 /* seq-tl-mark-origin.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B48D15791FFB00373983 /* seq-tl-mark-origin.png */; };
+ E3E8B4921579326A00373983 /* seq-timedisplay-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B4911579326A00373983 /* seq-timedisplay-bg.png */; };
+ E3E8B49915793AF800373983 /* seq-btn-play.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B49315793AF800373983 /* seq-btn-play.png */; };
+ E3E8B49A15793AF800373983 /* seq-btn-restart.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B49415793AF800373983 /* seq-btn-restart.png */; };
+ E3E8B49B15793AF800373983 /* seq-btn-run.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B49515793AF800373983 /* seq-btn-run.png */; };
+ E3E8B49C15793AF800373983 /* seq-btn-stepback.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B49615793AF800373983 /* seq-btn-stepback.png */; };
+ E3E8B49D15793AF800373983 /* seq-btn-stepforward.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B49715793AF800373983 /* seq-btn-stepforward.png */; };
+ E3E8B49E15793AF800373983 /* seq-btn-stop.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B49815793AF800373983 /* seq-btn-stop.png */; };
+ E3E8B4A1157CC57E00373983 /* SequencerScrubberSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E8B4A0157CC57E00373983 /* SequencerScrubberSelectionView.m */; };
+ E3E8B4A4157CD5DB00373983 /* seq-scrub-handle.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B4A2157CD5DB00373983 /* seq-scrub-handle.png */; };
+ E3E8B4A5157CD5DB00373983 /* seq-scrub-line.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B4A3157CD5DB00373983 /* seq-scrub-line.png */; };
+ E3E8B4A8157CD67000373983 /* SequencerSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E8B4A7157CD67000373983 /* SequencerSequence.m */; };
+ E3E8B4AA157D127300373983 /* seq-scaleslide-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E3E8B4A9157D127300373983 /* seq-scaleslide-bg.png */; };
+ E3E8D64616B3129E00742107 /* oggenc in Resources */ = {isa = PBXBuildFile; fileRef = E3E8D64416B3129700742107 /* oggenc */; };
+ E3EDBC101546D23000EEF1F3 /* ResolutionSetting.m in Sources */ = {isa = PBXBuildFile; fileRef = E3EDBC0F1546D23000EEF1F3 /* ResolutionSetting.m */; };
+ E3EDBC1415483E3200EEF1F3 /* ResolutionSettingsWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3EDBC1315483E3200EEF1F3 /* ResolutionSettingsWindow.m */; };
+ E3EDBC1615483EE000EEF1F3 /* ResolutionSettingsWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3EDBC1515483EE000EEF1F3 /* ResolutionSettingsWindow.xib */; };
+ E3EDBC251549971000EEF1F3 /* CCBFileUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E3EDBC241549971000EEF1F3 /* CCBFileUtil.m */; };
+ E3F2C21314FC157E007B660D /* CCBXCocos2diPhoneWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F2C21214FC157E007B660D /* CCBXCocos2diPhoneWriter.m */; };
+ E3F3F83F153C72A3005443EE /* NotesLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F3F83E153C72A3005443EE /* NotesLayer.m */; };
+ E3F3F843153C7700005443EE /* StickyNote.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F3F842153C7700005443EE /* StickyNote.m */; };
+ E3F3F845153C7772005443EE /* notes-bg.png in Resources */ = {isa = PBXBuildFile; fileRef = E3F3F844153C7772005443EE /* notes-bg.png */; };
+ E3F3F847153D9126005443EE /* StickyNoteEditView.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3F3F846153D9126005443EE /* StickyNoteEditView.xib */; };
+ E3F3F849153DB893005443EE /* notes-close.png in Resources */ = {isa = PBXBuildFile; fileRef = E3F3F848153DB893005443EE /* notes-close.png */; };
+ E3F3F84B153DBA43005443EE /* notes-close-down.png in Resources */ = {isa = PBXBuildFile; fileRef = E3F3F84A153DBA43005443EE /* notes-close-down.png */; };
+ E3F4087416A9EEC5009A0253 /* ccz in Resources */ = {isa = PBXBuildFile; fileRef = E3F4087316A9EEC5009A0253 /* ccz */; };
+ E3F73DB61593908A00D74084 /* SequencerDurationWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F73DB51593908A00D74084 /* SequencerDurationWindow.m */; };
+ E3F73DB81593916E00D74084 /* SequencerDurationWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3F73DB71593916E00D74084 /* SequencerDurationWindow.xib */; };
+ E3FD4DCF15A09F6D0032C2DD /* SequencerKeyframeEasingWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3FD4DCE15A09F6D0032C2DD /* SequencerKeyframeEasingWindow.xib */; };
+ E3FD4DD315A0A2C10032C2DD /* SequencerKeyframeEasingWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FD4DD215A0A2C10032C2DD /* SequencerKeyframeEasingWindow.m */; };
+ E3FD4DDB15A301EF0032C2DD /* seq-next-seq.png in Resources */ = {isa = PBXBuildFile; fileRef = E3FD4DDA15A301EF0032C2DD /* seq-next-seq.png */; };
+ E3FD4DDF15A455B90032C2DD /* SequencerSequenceArrayController.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FD4DDE15A455B90032C2DD /* SequencerSequenceArrayController.m */; };
+ E3FEA8A714E45EEF00119FBE /* InspectorSize.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3FEA8A614E45EEF00119FBE /* InspectorSize.xib */; };
+ E3FEA8AA14E45F1000119FBE /* InspectorSize.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FEA8A914E45F1000119FBE /* InspectorSize.m */; };
+ E3FEA8AC14E47C5700119FBE /* InspectorPoint.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3FEA8AB14E47C5700119FBE /* InspectorPoint.xib */; };
+ E3FEA8AF14E47C7500119FBE /* InspectorPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FEA8AE14E47C7500119FBE /* InspectorPoint.m */; };
+ E3FEA8B114E4872D00119FBE /* InspectorPointLock.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3FEA8B014E4872D00119FBE /* InspectorPointLock.xib */; };
+ E3FEA8B414E4874C00119FBE /* InspectorPointLock.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FEA8B314E4874C00119FBE /* InspectorPointLock.m */; };
+ E3FEA8B614E4929300119FBE /* InspectorScaleLock.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3FEA8B514E4929300119FBE /* InspectorScaleLock.xib */; };
+ E3FEA8B914E492DA00119FBE /* InspectorScaleLock.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FEA8B814E492D900119FBE /* InspectorScaleLock.m */; };
+ E3FEA8BB14E4989A00119FBE /* InspectorDegrees.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3FEA8BA14E4989900119FBE /* InspectorDegrees.xib */; };
+ E3FEA8BE14E498B700119FBE /* InspectorDegrees.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FEA8BD14E498B700119FBE /* InspectorDegrees.m */; };
+ E3FEA8C014E49D8300119FBE /* InspectorInteger.xib in Resources */ = {isa = PBXBuildFile; fileRef = E3FEA8BF14E49D8300119FBE /* InspectorInteger.xib */; };
+ E525F07CCBACEC15F8A13EC7 /* AnimationPlaybackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F6D55650A58DC2F3698B /* AnimationPlaybackManager.m */; };
+ E525F2137095DF73409AC768 /* PublishGeneratedFilesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F9BF09923348CFBEFC6C /* PublishGeneratedFilesOperation.m */; };
+ E525F2C0B3311DCAEC86C6B0 /* PublishImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525FC7FEB1B9D2A5F7FFEA5 /* PublishImageOperation.m */; };
+ E525F3B510C25EE6D73F2C68 /* DateCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E525FD2D849749BB67455943 /* DateCache.m */; };
+ E525F4E581031BFDE7E6DC9A /* NSString+Publishing.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F74ADF149FB8398AE965 /* NSString+Publishing.m */; };
+ E525F50C89C6296C9FE062F9 /* ruler-numbers.fnt in Resources */ = {isa = PBXBuildFile; fileRef = E525FEFB9DD4C68B41FF4F1F /* ruler-numbers.fnt */; };
+ E525F62CDA640CE17C2C9B00 /* PublishSpriteKitSpriteSheetOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F56FE00E54E100F524F1 /* PublishSpriteKitSpriteSheetOperation.m */; };
+ E525F9D641B364C1235E450B /* PublishBaseOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F827AA0BCCAE1BF601C2 /* PublishBaseOperation.m */; };
+ E525FA398CC2E279B3D65D16 /* PublishingTaskStatusProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F6FADF087E6FE3765DC9 /* PublishingTaskStatusProgress.m */; };
+ E525FA5D4791EB730859BF2C /* ProjectSettings+Convenience.m in Sources */ = {isa = PBXBuildFile; fileRef = E525FCD604B9708D96E9EE11 /* ProjectSettings+Convenience.m */; };
+ E525FA6349C648C70C3F65DC /* PublishSoundFileOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F6FD3B484B1762858AEB /* PublishSoundFileOperation.m */; };
+ E525FB7B0CB67BE80AAFB31F /* OptimizeImageWithOptiPNGOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F8D13D187525150C6EA7 /* OptimizeImageWithOptiPNGOperation.m */; };
+ E525FBA4E26414A8E6EBA77C /* PublishCCBOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F8A438244586206C9177 /* PublishCCBOperation.m */; };
+ E525FBB73A012AC88E99B21B /* PublishRenamedFilesLookup.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F7EE37BDD5941E6C0AC9 /* PublishRenamedFilesLookup.m */; };
+ E525FD5C17B1032DF742AC22 /* PublishSpriteSheetOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525F08B2DA5BA93DA1BCA35 /* PublishSpriteSheetOperation.m */; };
+ E525FF5E533A11756767D753 /* PublishRegularFileOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E525FF2CEC6DF0EB5FFCA742 /* PublishRegularFileOperation.m */; };
+ FA98CFC4154E7D1C006E58C5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA98CFC3154E7D1C006E58C5 /* Foundation.framework */; };
+ FA98CFC7154E7D1C006E58C5 /* ccbpublish.m in Sources */ = {isa = PBXBuildFile; fileRef = FA98CFC6154E7D1C006E58C5 /* ccbpublish.m */; };
+ FA98CFD1154E7F7D006E58C5 /* CCBX.m in Sources */ = {isa = PBXBuildFile; fileRef = E398C03614FB8A430078E771 /* CCBX.m */; };
+ FA98CFD7154E828E006E58C5 /* PlugInManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B7AEDC14E3246100DFD402 /* PlugInManager.m */; };
+ FA98CFD9154E828E006E58C5 /* PlugInExport.m in Sources */ = {isa = PBXBuildFile; fileRef = E398C03214FB86D20078E771 /* PlugInExport.m */; };
+ FA98CFDB154E8D16006E58C5 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA98CFDA154E8D16006E58C5 /* CoreServices.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 833A5C56192B48CB001837B3 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 7789ABBD133AA82000CEFCC7;
+ remoteInfo = SpriteBuilder;
+ };
+ 833A5C5F192B4F00001837B3 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = B7D0917D17C2C12A0007FE7F /* cocos2d-osx.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = E01E663C121CA00A001A484F;
+ remoteInfo = cocos2d;
+ };
+ 9203806019465955000A8816 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E398C02114FB81A30078E771;
+ remoteInfo = "Cocos2D iPhone";
+ };
+ 92154AE118A5567400BD215C /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 92154ACF18A5560B00BD215C;
+ remoteInfo = CCPhysicsPivotJoint;
+ };
+ 926D13E518B57C4200582959 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 926D13D718B57B9500582959;
+ remoteInfo = CCPhysicsPinJoint;
+ };
+ 92A805C418D3CFAC004508E3 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 92B7900118C808B7007DF895;
+ remoteInfo = CCPhysicsSpringJoint;
+ };
+ B729AC6B181F0D1400BA0D9C /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B729AC51181F091800BA0D9C;
+ remoteInfo = CCSlider;
+ };
+ B73788ED1804AF5E0076A88C /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B73788D81804AC5D0076A88C;
+ remoteInfo = CCScrollView;
+ };
+ B79F90E417FF31A300908504 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B79F90D717FF30DB00908504;
+ remoteInfo = CCPhysicsNode;
+ };
+ B7C048EE18A4653B0038C53E /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = B7D0917D17C2C12A0007FE7F /* cocos2d-osx.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = D37EE9FC187D4E7700CB5EF2;
+ remoteInfo = ObjectiveChipmunk;
+ };
+ B7C3533217F65652005697C1 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B7C3532117F65547005697C1;
+ remoteInfo = CCSprite9Slice;
+ };
+ B7C623BE17F384B200928F91 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B7C623B017F383CE00928F91;
+ remoteInfo = CCButton;
+ };
+ B7C623D917F3902900928F91 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B7C623CC17F38B7800928F91;
+ remoteInfo = CCControl;
+ };
+ B7D0918317C2C12B0007FE7F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = B7D0917D17C2C12A0007FE7F /* cocos2d-osx.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = E01E663D121CA00A001A484F;
+ remoteInfo = cocos2d;
+ };
+ B7D0918817C2C16E0007FE7F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = B7D0917D17C2C12A0007FE7F /* cocos2d-osx.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = E01E663C121CA00A001A484F;
+ remoteInfo = cocos2d;
+ };
+ B7EE69A518188EB800B983FE /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B7EE699418188E0800B983FE;
+ remoteInfo = CCTextField;
+ };
+ B7EE6A081819EE6000B983FE /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = B7EE69F71819EE0D00B983FE;
+ remoteInfo = CCLayoutBox;
+ };
+ DC05E79718D0ADDC00592A1E /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = DC05E77718D0ACCB00592A1E;
+ remoteInfo = SBControlNode;
+ };
+ DC05E79918D0ADDC00592A1E /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = DC05E78418D0ACE000592A1E;
+ remoteInfo = SBButtonNode;
+ };
+ DC680313189146C80060BE39 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = DC5129BD1891450D0091873D;
+ remoteInfo = SKSpriteNode;
+ };
+ DC680315189146C80060BE39 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = DC6802FC1891466C0060BE39;
+ remoteInfo = SKLabelNode;
+ };
+ DC680337189157B00060BE39 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = DC68031D189156310060BE39;
+ remoteInfo = SKSpriteNodeWithColor;
+ };
+ DCB9F16A189060DF00128D78 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = DCB9F14C1890600D00128D78;
+ remoteInfo = SKNode;
+ };
+ DCFB064F18E32C2D00DF02A0 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = DCFB063318E32B7500DF02A0;
+ remoteInfo = SKFile;
+ };
+ E35DBB8D14F226230070A6E4 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E35DBB7F14F225D30070A6E4;
+ remoteInfo = CCLayerColor;
+ };
+ E35DBBA414F244FA0070A6E4 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E35DBB9714F244BB0070A6E4;
+ remoteInfo = CCLayerGradient;
+ };
+ E35DBBD814F2AA720070A6E4 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E35DBBCB14F2AA350070A6E4;
+ remoteInfo = CCLabelBMFont;
+ };
+ E35DBBF514F3E26B0070A6E4 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E35DBBE814F3E2390070A6E4;
+ remoteInfo = CCLabelTTF;
+ };
+ E35DBC1514F4D7920070A6E4 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E35DBC0814F4D72B0070A6E4;
+ remoteInfo = CCParticleSystem;
+ };
+ E398C02E14FB82090078E771 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E398C02114FB81A30078E771;
+ remoteInfo = "Cocos2D iPhone";
+ };
+ E3B7AED214E31AEF00DFD402 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E3B7AEC414E3193500DFD402;
+ remoteInfo = CCNode;
+ };
+ E3C365F714E9E4DD007CD5FF /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E3C365EA14E9E4D1007CD5FF;
+ remoteInfo = CCSprite;
+ };
+ E3D5912D150F53CD004180CA /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 7789ABB5133AA82000CEFCC7 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = E3D59120150F5367004180CA;
+ remoteInfo = CCBFile;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 776C6897138878FB00153214 /* Copy Files (Sparkle framework) */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ B72D1DEC186393C80091252F /* HockeySDK.framework in Copy Files (Sparkle framework) */,
+ );
+ name = "Copy Files (Sparkle framework)";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ E3B7AED414E31E5D00DFD402 /* Copy PlugIns */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 13;
+ files = (
+ DCFB065118E32C3900DF02A0 /* SKFile.ccbPlugNode in Copy PlugIns */,
+ DC05E79B18D0ADF800592A1E /* SBControlNode.ccbPlugNode in Copy PlugIns */,
+ DC05E79C18D0ADF800592A1E /* SBButtonNode.ccbPlugNode in Copy PlugIns */,
+ 92B792D518C9333E007DF895 /* CCPhysicsSpringJoint.ccbPlugNode in Copy PlugIns */,
+ 9266089118B581BC007A0A05 /* CCPhysicsPinJoint.ccbPlugNode in Copy PlugIns */,
+ 92154AE318A55A4200BD215C /* CCPhysicsPivotJoint.ccbPlugNode in Copy PlugIns */,
+ DC680339189157B90060BE39 /* SKColorSpriteNode.ccbPlugNode in Copy PlugIns */,
+ DC680317189146FE0060BE39 /* SKSpriteNode.ccbPlugNode in Copy PlugIns */,
+ DC680318189146FE0060BE39 /* SKLabelNode.ccbPlugNode in Copy PlugIns */,
+ DCB9F16C189060E900128D78 /* SKNode.ccbPlugNode in Copy PlugIns */,
+ B729AC6D181F0D2300BA0D9C /* CCSlider.ccbPlugNode in Copy PlugIns */,
+ B7EE6A0A1819EE6E00B983FE /* CCLayoutBox.ccbPlugNode in Copy PlugIns */,
+ B7EE69A718188ECC00B983FE /* CCTextField.ccbPlugNode in Copy PlugIns */,
+ B73788EF1804AF6D0076A88C /* CCScrollView.ccbPlugNode in Copy PlugIns */,
+ B79F90E617FF31B600908504 /* CCPhysicsNode.ccbPlugNode in Copy PlugIns */,
+ B7C3533417F6565F005697C1 /* CCSprite9Slice.ccbPlugNode in Copy PlugIns */,
+ B7C623DB17F3903900928F91 /* CCControl.ccbPlugNode in Copy PlugIns */,
+ B7C623C017F384E400928F91 /* CCButton.ccbPlugNode in Copy PlugIns */,
+ E3D5912F150F53EA004180CA /* CCBFile.ccbPlugNode in Copy PlugIns */,
+ E398C03014FB82170078E771 /* Cocos2D iPhone.ccbPlugExport in Copy PlugIns */,
+ E35DBC1714F4D79C0070A6E4 /* CCParticleSystem.ccbPlugNode in Copy PlugIns */,
+ E35DBBF714F3E2750070A6E4 /* CCLabelTTF.ccbPlugNode in Copy PlugIns */,
+ E35DBBDA14F2AA7C0070A6E4 /* CCLabelBMFont.ccbPlugNode in Copy PlugIns */,
+ E35DBBA614F245030070A6E4 /* CCNodeGradient.ccbPlugNode in Copy PlugIns */,
+ E35DBB8C14F226190070A6E4 /* CCNodeColor.ccbPlugNode in Copy PlugIns */,
+ E3C365FE14E9F147007CD5FF /* CCSprite.ccbPlugNode in Copy PlugIns */,
+ E3B7AED514E31E6C00DFD402 /* CCNode.ccbPlugNode in Copy PlugIns */,
+ );
+ name = "Copy PlugIns";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ E3E086E315663928008F1FDB /* Copy Player */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 7;
+ files = (
+ );
+ name = "Copy Player";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 4D0C1E7218F472D600B028CA /* SnapLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SnapLayer.h; sourceTree = ""; };
+ 4D0C1E7318F472D600B028CA /* SnapLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SnapLayer.m; sourceTree = ""; };
+ 4D0C1E7718F49A3700B028CA /* CCNode+PositionExtentions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CCNode+PositionExtentions.h"; sourceTree = ""; };
+ 4D0C1E7818F49A3700B028CA /* CCNode+PositionExtentions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CCNode+PositionExtentions.m"; sourceTree = ""; };
+ 4DB7C95319083ACF00ECE19F /* NotificationNames.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotificationNames.h; sourceTree = ""; };
+ 4DB7C95419083ACF00ECE19F /* NotificationNames.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotificationNames.m; sourceTree = ""; };
+ 5811305E1639BF1200A86D70 /* SequencerTimelineDrawDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerTimelineDrawDelegate.h; sourceTree = ""; };
+ 5811305F1639C52000A86D70 /* seq-startmarker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-startmarker.png"; sourceTree = ""; };
+ 581BCFE6162DADE7007DE600 /* CCBSplitHorizontalView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBSplitHorizontalView.h; sourceTree = ""; };
+ 581BCFE7162DADE7007DE600 /* CCBSplitHorizontalView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBSplitHorizontalView.m; sourceTree = ""; };
+ 58FA2031162D73F3006B8856 /* TB_bottomPanel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_bottomPanel.png; sourceTree = ""; };
+ 58FA2032162D73F3006B8856 /* TB_leftPanel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_leftPanel.png; sourceTree = ""; };
+ 58FA2033162D73F3006B8856 /* TB_rightPanel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_rightPanel.png; sourceTree = ""; };
+ 5BA3DC2F192108AB0055DD96 /* GuideGridSizeWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GuideGridSizeWindow.h; sourceTree = ""; };
+ 5BA3DC30192108AB0055DD96 /* GuideGridSizeWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GuideGridSizeWindow.m; sourceTree = ""; };
+ 5BA3DC31192108AB0055DD96 /* GuideGridSizeWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GuideGridSizeWindow.xib; sourceTree = ""; };
+ 77055FB313D0E5CA009DD63A /* logo-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "logo-icon.png"; sourceTree = ""; };
+ 77055FB413D0E5CA009DD63A /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = ""; };
+ 77156DAF137F0351005EF746 /* CCBSpriteSheetParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBSpriteSheetParser.h; sourceTree = ""; };
+ 77156DB0137F0351005EF746 /* CCBSpriteSheetParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBSpriteSheetParser.m; sourceTree = ""; };
+ 771B2B301353818000B260BA /* NewDocWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewDocWindowController.h; sourceTree = ""; };
+ 771B2B311353818000B260BA /* NewDocWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewDocWindowController.m; sourceTree = ""; };
+ 7729F0391390215400CAA44F /* frame-iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "frame-iphone.png"; sourceTree = ""; };
+ 7729F03C1390600200CAA44F /* frame-ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "frame-ipad.png"; sourceTree = ""; };
+ 772BE563133C06320009B5B9 /* NSFlippedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSFlippedView.h; sourceTree = ""; };
+ 772BE564133C06320009B5B9 /* NSFlippedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSFlippedView.m; sourceTree = ""; };
+ 772BE566133E40D60009B5B9 /* missing-texture.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "missing-texture.png"; sourceTree = ""; };
+ 772BE570133E48340009B5B9 /* CCBGlobals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBGlobals.h; sourceTree = ""; };
+ 772BE571133E48340009B5B9 /* CCBGlobals.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBGlobals.m; sourceTree = ""; };
+ 772BE57B134398EE0009B5B9 /* NewDocWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NewDocWindow.xib; sourceTree = ""; };
+ 772BE57E1343A6ED0009B5B9 /* CCBWriterInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBWriterInternal.h; sourceTree = ""; };
+ 772BE57F1343A6EE0009B5B9 /* CCBWriterInternal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBWriterInternal.m; sourceTree = ""; };
+ 772BE58C134BB6BD0009B5B9 /* CCBDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBDocument.h; sourceTree = ""; };
+ 772BE58D134BB6BE0009B5B9 /* CCBDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBDocument.m; sourceTree = ""; };
+ 772BE592134BC2B90009B5B9 /* CCBReaderInternalV1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBReaderInternalV1.h; sourceTree = ""; };
+ 772BE593134BC2BA0009B5B9 /* CCBReaderInternalV1.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBReaderInternalV1.m; sourceTree = ""; };
+ 774E4EBD136D98AB0025D0A8 /* select-bl.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-bl.png"; sourceTree = ""; };
+ 774E4EBE136D98AB0025D0A8 /* select-br.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-br.png"; sourceTree = ""; };
+ 774E4EBF136D98AB0025D0A8 /* select-pt.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-pt.png"; sourceTree = ""; };
+ 774E4EC0136D98AB0025D0A8 /* select-tl.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-tl.png"; sourceTree = ""; };
+ 774E4EC1136D98AB0025D0A8 /* select-tr.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-tr.png"; sourceTree = ""; };
+ 774E4EC8136DFFB70025D0A8 /* btn-move-hi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-move-hi.png"; sourceTree = ""; };
+ 774E4EC9136DFFB70025D0A8 /* btn-move.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-move.png"; sourceTree = ""; };
+ 774E4ECA136DFFB70025D0A8 /* btn-rotate-hi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-rotate-hi.png"; sourceTree = ""; };
+ 774E4ECB136DFFB70025D0A8 /* btn-rotate.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-rotate.png"; sourceTree = ""; };
+ 774E4ECC136DFFB70025D0A8 /* btn-scale-hi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-scale-hi.png"; sourceTree = ""; };
+ 774E4ECD136DFFB70025D0A8 /* btn-scale.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-scale.png"; sourceTree = ""; };
+ 774F95C513638D74005D43EB /* missing-particle-texture.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "missing-particle-texture.png"; sourceTree = ""; };
+ 776041E81498F8ED0078095D /* SpriteBuilder-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "SpriteBuilder-Info.plist"; sourceTree = ""; };
+ 776A3706139544A200960E94 /* TB_actualSize.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_actualSize.png; sourceTree = ""; };
+ 776A3707139544A200960E94 /* TB_grab.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_grab.png; sourceTree = ""; };
+ 776A3708139544A200960E94 /* TB_select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_select.png; sourceTree = ""; };
+ 776A3709139544A200960E94 /* TB_zoomIn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_zoomIn.png; sourceTree = ""; };
+ 776A370A139544A200960E94 /* TB_zoomOut.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_zoomOut.png; sourceTree = ""; };
+ 776A3713139590AA00960E94 /* ImageCaptureCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageCaptureCore.framework; path = System/Library/Frameworks/ImageCaptureCore.framework; sourceTree = SDKROOT; };
+ 776A37151395925D00960E94 /* Quartz.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quartz.framework; path = System/Library/Frameworks/Quartz.framework; sourceTree = SDKROOT; };
+ 776A37B41398D6B900960E94 /* CCBGLView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBGLView.h; sourceTree = ""; };
+ 776A37B51398D6BD00960E94 /* CCBGLView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBGLView.m; sourceTree = ""; };
+ 776A37B7139BCE3600960E94 /* TB_imageAssets.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_imageAssets.png; sourceTree = ""; };
+ 776C683C1385C02000153214 /* CCBOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBOutlineView.h; sourceTree = ""; };
+ 776C683D1385C02000153214 /* CCBOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBOutlineView.m; sourceTree = ""; };
+ 776C68401385C4F100153214 /* CCBTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBTextFieldCell.h; sourceTree = ""; };
+ 776C68411385C4F100153214 /* CCBTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBTextFieldCell.m; sourceTree = ""; };
+ 776C68431385D37C00153214 /* CCBTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBTableView.h; sourceTree = ""; };
+ 776C68441385D37D00153214 /* CCBTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBTableView.m; sourceTree = ""; };
+ 776C688F1388107400153214 /* missing-font.fnt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "missing-font.fnt"; sourceTree = ""; };
+ 776C68901388107400153214 /* missing-font.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "missing-font.png"; sourceTree = ""; };
+ 776C6895138874C200153214 /* dsa_pub.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = dsa_pub.pem; sourceTree = ""; };
+ 7789ABBE133AA82000CEFCC7 /* SpriteBuilder.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SpriteBuilder.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
+ 7789ABC5133AA82000CEFCC7 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
+ 7789ABC6133AA82000CEFCC7 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
+ 7789ABC7133AA82000CEFCC7 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
+ 7789ABCC133AA82000CEFCC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
+ 7789ABCE133AA82000CEFCC7 /* SpriteBuilder-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SpriteBuilder-Prefix.pch"; sourceTree = ""; };
+ 7789ABCF133AA82000CEFCC7 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
+ 7789ABD2133AA82000CEFCC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = ""; };
+ 7789ABD4133AA82000CEFCC7 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; };
+ 7789ABD5133AA82000CEFCC7 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; };
+ 7789ABD8133AA82000CEFCC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = ""; };
+ 7789ABE7133AB10500CEFCC7 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; };
+ 7789ABE9133AB10E00CEFCC7 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
+ 7789ABEB133AB12000CEFCC7 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
+ 7789ABED133AB12F00CEFCC7 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
+ 7789ACE8133AB47A00CEFCC7 /* CocosScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocosScene.h; sourceTree = ""; };
+ 7789ACE9133AB47A00CEFCC7 /* CocosScene.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CocosScene.m; sourceTree = ""; };
+ 7789ACED133AB6A700CEFCC7 /* icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = icon.icns; sourceTree = ""; };
+ 7789ACF0133BD5E800CEFCC7 /* header-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "header-bg.png"; sourceTree = ""; };
+ 77D33E94138E714700012A88 /* ExceptionHandling.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExceptionHandling.framework; path = System/Library/Frameworks/ExceptionHandling.framework; sourceTree = SDKROOT; };
+ 77D33EA9138EA4F800012A88 /* CCBUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBUtil.h; sourceTree = ""; };
+ 77D33EAA138EA4F800012A88 /* CCBUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBUtil.m; sourceTree = ""; };
+ 77D33EAC138EFBD800012A88 /* StageSizeWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StageSizeWindow.xib; sourceTree = ""; };
+ 77E1990513858D78006C361B /* NSBezierPath_AMShading.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NSBezierPath_AMShading.h; path = TabBar/NSBezierPath_AMShading.h; sourceTree = ""; };
+ 77E1990613858D78006C361B /* NSBezierPath_AMShading.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NSBezierPath_AMShading.m; path = TabBar/NSBezierPath_AMShading.m; sourceTree = ""; };
+ 77E1990713858D78006C361B /* NSString_AITruncation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NSString_AITruncation.h; path = TabBar/NSString_AITruncation.h; sourceTree = ""; };
+ 77E1990813858D78006C361B /* NSString_AITruncation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NSString_AITruncation.m; path = TabBar/NSString_AITruncation.m; sourceTree = ""; };
+ 77E1990913858D78006C361B /* PSMMetalTabStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMMetalTabStyle.h; path = TabBar/PSMMetalTabStyle.h; sourceTree = ""; };
+ 77E1990A13858D78006C361B /* PSMMetalTabStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMMetalTabStyle.m; path = TabBar/PSMMetalTabStyle.m; sourceTree = ""; };
+ 77E1990B13858D78006C361B /* PSMOverflowPopUpButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMOverflowPopUpButton.h; path = TabBar/PSMOverflowPopUpButton.h; sourceTree = ""; };
+ 77E1990C13858D78006C361B /* PSMOverflowPopUpButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMOverflowPopUpButton.m; path = TabBar/PSMOverflowPopUpButton.m; sourceTree = ""; };
+ 77E1990D13858D78006C361B /* PSMProgressIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMProgressIndicator.h; path = TabBar/PSMProgressIndicator.h; sourceTree = ""; };
+ 77E1990E13858D78006C361B /* PSMProgressIndicator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMProgressIndicator.m; path = TabBar/PSMProgressIndicator.m; sourceTree = ""; };
+ 77E1990F13858D78006C361B /* PSMRolloverButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMRolloverButton.h; path = TabBar/PSMRolloverButton.h; sourceTree = ""; };
+ 77E1991013858D78006C361B /* PSMRolloverButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMRolloverButton.m; path = TabBar/PSMRolloverButton.m; sourceTree = ""; };
+ 77E1991113858D78006C361B /* PSMTabBarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabBarCell.h; path = TabBar/PSMTabBarCell.h; sourceTree = ""; };
+ 77E1991213858D78006C361B /* PSMTabBarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMTabBarCell.m; path = TabBar/PSMTabBarCell.m; sourceTree = ""; };
+ 77E1991313858D78006C361B /* PSMTabBarControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabBarControl.h; path = TabBar/PSMTabBarControl.h; sourceTree = ""; };
+ 77E1991413858D78006C361B /* PSMTabBarControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMTabBarControl.m; path = TabBar/PSMTabBarControl.m; sourceTree = ""; };
+ 77E1991513858D78006C361B /* PSMTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabBarController.h; path = TabBar/PSMTabBarController.h; sourceTree = ""; };
+ 77E1991613858D78006C361B /* PSMTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMTabBarController.m; path = TabBar/PSMTabBarController.m; sourceTree = ""; };
+ 77E1991713858D78006C361B /* PSMTabDragAssistant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabDragAssistant.h; path = TabBar/PSMTabDragAssistant.h; sourceTree = ""; };
+ 77E1991813858D78006C361B /* PSMTabDragAssistant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMTabDragAssistant.m; path = TabBar/PSMTabDragAssistant.m; sourceTree = ""; };
+ 77E1991913858D78006C361B /* PSMTabDragView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabDragView.h; path = TabBar/PSMTabDragView.h; sourceTree = ""; };
+ 77E1991A13858D78006C361B /* PSMTabDragView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMTabDragView.m; path = TabBar/PSMTabDragView.m; sourceTree = ""; };
+ 77E1991B13858D78006C361B /* PSMTabDragWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabDragWindow.h; path = TabBar/PSMTabDragWindow.h; sourceTree = ""; };
+ 77E1991C13858D78006C361B /* PSMTabDragWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMTabDragWindow.m; path = TabBar/PSMTabDragWindow.m; sourceTree = ""; };
+ 77E1991D13858D78006C361B /* PSMTabDragWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabDragWindowController.h; path = TabBar/PSMTabDragWindowController.h; sourceTree = ""; };
+ 77E1991E13858D78006C361B /* PSMTabDragWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PSMTabDragWindowController.m; path = TabBar/PSMTabDragWindowController.m; sourceTree = ""; };
+ 77E1991F13858D78006C361B /* PSMTabStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PSMTabStyle.h; path = TabBar/PSMTabStyle.h; sourceTree = ""; };
+ 77E1994613858DE0006C361B /* overflowImage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = overflowImage.png; path = TabBar/res/overflowImage.png; sourceTree = ""; };
+ 77E1994713858DE0006C361B /* overflowImagePressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = overflowImagePressed.png; path = TabBar/res/overflowImagePressed.png; sourceTree = ""; };
+ 77E1994813858DE0006C361B /* pi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pi.png; path = TabBar/res/pi.png; sourceTree = ""; };
+ 77E1994913858DE0006C361B /* TabClose_Dirty_Pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabClose_Dirty_Pressed.png; path = TabBar/res/TabClose_Dirty_Pressed.png; sourceTree = ""; };
+ 77E1994A13858DE0006C361B /* TabClose_Dirty_Rollover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabClose_Dirty_Rollover.png; path = TabBar/res/TabClose_Dirty_Rollover.png; sourceTree = ""; };
+ 77E1994B13858DE0006C361B /* TabClose_Dirty.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabClose_Dirty.png; path = TabBar/res/TabClose_Dirty.png; sourceTree = ""; };
+ 77E1994C13858DE0006C361B /* TabClose_Front_Pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabClose_Front_Pressed.png; path = TabBar/res/TabClose_Front_Pressed.png; sourceTree = ""; };
+ 77E1994D13858DE0006C361B /* TabClose_Front_Rollover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabClose_Front_Rollover.png; path = TabBar/res/TabClose_Front_Rollover.png; sourceTree = ""; };
+ 77E1994E13858DE0006C361B /* TabClose_Front.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabClose_Front.png; path = TabBar/res/TabClose_Front.png; sourceTree = ""; };
+ 77E1994F13858DE0006C361B /* TabNewMetal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabNewMetal.png; path = TabBar/res/TabNewMetal.png; sourceTree = ""; };
+ 77E1995013858DE0006C361B /* TabNewMetalPressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabNewMetalPressed.png; path = TabBar/res/TabNewMetalPressed.png; sourceTree = ""; };
+ 77E1995113858DE0006C361B /* TabNewMetalRollover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TabNewMetalRollover.png; path = TabBar/res/TabNewMetalRollover.png; sourceTree = ""; };
+ 77E7D049138F777A00E8EE67 /* CCBModalSheetController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBModalSheetController.h; sourceTree = ""; };
+ 77E7D04A138F777A00E8EE67 /* CCBModalSheetController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBModalSheetController.m; sourceTree = ""; };
+ 77E7D04D138F78F600E8EE67 /* StageSizeWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StageSizeWindow.h; sourceTree = ""; };
+ 77E7D04E138F78F600E8EE67 /* StageSizeWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StageSizeWindow.m; sourceTree = ""; };
+ 7B5135C11947CC2500DE177D /* LocalizationInAppPurchasesPIDs.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = LocalizationInAppPurchasesPIDs.plist; path = ../ccBuilder/LocalizationInAppPurchasesPIDs.plist; sourceTree = ""; };
+ 7BCC1C0C194904190062DF38 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
+ 7BF55302193F8A7500183F09 /* LocalizationTranslateWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LocalizationTranslateWindow.xib; sourceTree = ""; };
+ 7BF55305193F912100183F09 /* LocalizationTranslateWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalizationTranslateWindow.h; sourceTree = ""; };
+ 7BF55306193F912200183F09 /* LocalizationTranslateWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalizationTranslateWindow.m; sourceTree = ""; };
+ 800C005E1846A40D00544BD2 /* select-scale.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-scale.png"; sourceTree = ""; };
+ 800C006F1848178D00544BD2 /* select-crosshair.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-crosshair.png"; sourceTree = ""; };
+ 8045F12C183AD6D30082BD94 /* seq-visible.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-visible.png"; sourceTree = ""; };
+ 8045F12D183AD6D30082BD94 /* seq-notset.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-notset.png"; sourceTree = ""; };
+ 8045F134183AD9B90082BD94 /* seq-locked.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-locked.png"; sourceTree = ""; };
+ 8045F13A183AF1DC0082BD94 /* SequencerButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerButtonCell.h; sourceTree = ""; };
+ 8045F13B183AF1DC0082BD94 /* SequencerButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerButtonCell.m; sourceTree = ""; };
+ 8076F94C18624318003C4153 /* InspectorStringSimple.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorStringSimple.h; sourceTree = ""; };
+ 8076F94D18624318003C4153 /* InspectorStringSimple.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorStringSimple.m; sourceTree = ""; };
+ 8076F9521862459A003C4153 /* InspectorStringSimple.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorStringSimple.xib; sourceTree = ""; };
+ 80985259182C40170054BBF3 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
+ 80AD79931863871200B653B7 /* PVRTArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTArray.h; sourceTree = ""; };
+ 80AD79941863871200B653B7 /* PVRTDecompress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTDecompress.h; sourceTree = ""; };
+ 80AD79951863871200B653B7 /* PVRTError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTError.h; sourceTree = ""; };
+ 80AD79961863871200B653B7 /* PVRTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTexture.h; sourceTree = ""; };
+ 80AD79971863871200B653B7 /* PVRTextureDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTextureDefines.h; sourceTree = ""; };
+ 80AD79981863871200B653B7 /* PVRTextureFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTextureFormat.h; sourceTree = ""; };
+ 80AD79991863871200B653B7 /* PVRTextureHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTextureHeader.h; sourceTree = ""; };
+ 80AD799A1863871200B653B7 /* PVRTextureUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTextureUtilities.h; sourceTree = ""; };
+ 80AD799B1863871200B653B7 /* PVRTextureVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTextureVersion.h; sourceTree = ""; };
+ 80AD799C1863871200B653B7 /* PVRTGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTGlobal.h; sourceTree = ""; };
+ 80AD799D1863871200B653B7 /* PVRTMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTMap.h; sourceTree = ""; };
+ 80AD799E1863871200B653B7 /* PVRTString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTString.h; sourceTree = ""; };
+ 80AD799F1863871200B653B7 /* PVRTTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PVRTTexture.h; sourceTree = ""; };
+ 80AD79A01863871200B653B7 /* libPVRTexLib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libPVRTexLib.a; sourceTree = ""; };
+ 80B149BC183D4D280085935B /* seq-keyframe-x4-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-x4-sel.png"; sourceTree = ""; };
+ 80B149BD183D4D280085935B /* seq-keyframe-x4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-x4.png"; sourceTree = ""; };
+ 80B149C6183D55E60085935B /* SoundFileImageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoundFileImageController.h; sourceTree = ""; };
+ 80B149C7183D55E60085935B /* SoundFileImageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SoundFileImageController.m; sourceTree = ""; };
+ 80D06080183317F2001F27F9 /* WarningTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WarningTableView.h; sourceTree = ""; };
+ 80D06081183317F2001F27F9 /* WarningTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WarningTableView.m; sourceTree = ""; };
+ 80E158941843DEDC007242F6 /* select-rotation.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-rotation.png"; sourceTree = ""; };
+ 80E158A018441FF1007242F6 /* select-skew.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-skew.png"; sourceTree = ""; };
+ 80E95C541836E41C00D864CA /* select-locked.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-locked.png"; sourceTree = ""; };
+ 80E97F6218370F400052647D /* WarningCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WarningCell.h; sourceTree = ""; };
+ 80E97F6318370F400052647D /* WarningCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WarningCell.m; sourceTree = ""; };
+ 80F908FF183C186200A714FC /* seq-visible-faint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-visible-faint.png"; sourceTree = ""; };
+ 80F936F01833F8970032454F /* WarningTableViewHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WarningTableViewHandler.h; sourceTree = ""; };
+ 80F936F11833F8970032454F /* WarningTableViewHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WarningTableViewHandler.m; sourceTree = ""; };
+ 80FBACC9183422BD00C4BB69 /* inspector-warning@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-warning@2x.png"; sourceTree = ""; };
+ 80FBACCA183422BD00C4BB69 /* inspector-warning.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-warning.png"; sourceTree = ""; };
+ 80FBACD71834530100C4BB69 /* visible-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "visible-icon.png"; sourceTree = ""; };
+ 833A5C4A192B48CB001837B3 /* SpriteBuilder Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SpriteBuilder Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 833A5C4B192B48CB001837B3 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
+ 833A5C4F192B48CB001837B3 /* SpriteBuilder Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "SpriteBuilder Tests-Info.plist"; sourceTree = ""; };
+ 833A5C51192B48CB001837B3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
+ 833A5C55192B48CB001837B3 /* SpriteBuilder Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SpriteBuilder Tests-Prefix.pch"; sourceTree = ""; };
+ 833A5C5B192B4981001837B3 /* CCBReader_Tests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBReader_Tests.m; sourceTree = ""; };
+ 8341326A18DADF9E0088FFAB /* optipng */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = optipng; sourceTree = ""; };
+ 835DB0CA17156421003A2F7B /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
+ 8392006B18ED91BC00B6C429 /* Cocos2dUpdater.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cocos2dUpdater.h; sourceTree = ""; };
+ 8392006C18ED91BC00B6C429 /* Cocos2dUpdater.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Cocos2dUpdater.m; sourceTree = ""; };
+ 8392006D18ED91BC00B6C429 /* Cocos2dUpdater+Errors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Cocos2dUpdater+Errors.h"; sourceTree = ""; };
+ 8392006E18ED91BC00B6C429 /* Cocos2dUpdater+Errors.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Cocos2dUpdater+Errors.m"; sourceTree = ""; };
+ 83DC65E818D898D50028EF72 /* SBUserDefaultsKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBUserDefaultsKeys.h; sourceTree = ""; };
+ 83DC65E918D898D50028EF72 /* SBUserDefaultsKeys.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBUserDefaultsKeys.m; sourceTree = ""; };
+ 83F8673218D1DCEA007441E4 /* SBErrors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBErrors.h; sourceTree = ""; };
+ 83F8673318D1DCEA007441E4 /* SBErrors.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBErrors.m; sourceTree = ""; };
+ 9203805A19465679000A8816 /* CCAnimation_Tests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAnimation_Tests.m; sourceTree = ""; };
+ 92101C2C1891F1BB0004F93B /* CCBPublishDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCBPublishDelegate.h; sourceTree = ""; };
+ 92154ABD18A5531800BD215C /* CCBPhysicsPivotJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPhysicsPivotJoint.h; sourceTree = ""; };
+ 92154ABE18A5531800BD215C /* CCBPhysicsPivotJoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPhysicsPivotJoint.m; sourceTree = ""; };
+ 92154ABF18A5531800BD215C /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; };
+ 92154AC018A5531800BD215C /* CCPhysicsPivotJoint-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "CCPhysicsPivotJoint-Info.plist"; sourceTree = ""; };
+ 92154AC118A5531800BD215C /* CCPhysicsPivotJoint-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CCPhysicsPivotJoint-Prefix.pch"; sourceTree = ""; };
+ 92154AC318A5531800BD215C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
+ 92154AC418A5531800BD215C /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; };
+ 92154AC518A5531800BD215C /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; };
+ 92154ADB18A5560B00BD215C /* CCPhysicsPivotJoint.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCPhysicsPivotJoint.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; };
+ 9218DF0F1919B04D0033851E /* joint-pivot-handle-min.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-min.png"; sourceTree = ""; };
+ 9218DF101919B04D0033851E /* joint-pivot-handle-ratchet.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-ratchet.png"; sourceTree = ""; };
+ 9218DF111919B04D0033851E /* joint-pivot-handle-ratchetmark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-ratchetmark.png"; sourceTree = ""; };
+ 9218DF121919B04D0033851E /* joint-pivot-handle-ref.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-ref.png"; sourceTree = ""; };
+ 9218DF131919B04D0033851E /* joint-pivot-mode-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-bg.png"; sourceTree = ""; };
+ 9218DF141919B04D0033851E /* joint-pivot-mode-l-off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-l-off.png"; sourceTree = ""; };
+ 9218DF151919B04D0033851E /* joint-pivot-mode-l-on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-l-on.png"; sourceTree = ""; };
+ 9218DF161919B04D0033851E /* joint-pivot-mode-r-off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-r-off.png"; sourceTree = ""; };
+ 9218DF171919B04D0033851E /* joint-pivot-mode-r-on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-r-on.png"; sourceTree = ""; };
+ 9218DF181919B04D0033851E /* joint-pivot-mode-s-off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-s-off.png"; sourceTree = ""; };
+ 9218DF191919B04D0033851E /* joint-pivot-mode-s-on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-s-on.png"; sourceTree = ""; };
+ 9218DF1A1919B04D0033851E /* joint-pivot-motor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-motor.png"; sourceTree = ""; };
+ 9218DF1B1919B04D0033851E /* joint-pivot-handle-max.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-max.png"; sourceTree = ""; };
+ 9218DF1C1919B04D0033851E /* joint-pivot-mode-r-on@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-r-on@2x.png"; sourceTree = ""; };
+ 9218DF1D1919B04D0033851E /* joint-pivot-mode-l-on@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-l-on@2x.png"; sourceTree = ""; };
+ 9218DF1E1919B04D0033851E /* joint-pivot-mode-s-on@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-s-on@2x.png"; sourceTree = ""; };
+ 9218DF1F1919B04D0033851E /* joint-pivot-mode-r-off@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-r-off@2x.png"; sourceTree = ""; };
+ 9218DF201919B04D0033851E /* joint-pivot-mode-l-off@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-l-off@2x.png"; sourceTree = ""; };
+ 9218DF211919B04D0033851E /* joint-pivot-mode-s-off@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-s-off@2x.png"; sourceTree = ""; };
+ 9218DF221919B04D0033851E /* joint-pivot-mode-bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-mode-bg@2x.png"; sourceTree = ""; };
+ 9218DF231919B04D0033851E /* joint-pivot-handle-ratchetmark@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-ratchetmark@2x.png"; sourceTree = ""; };
+ 9218DF241919B04D0033851E /* joint-pivot-handle-ratchet@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-ratchet@2x.png"; sourceTree = ""; };
+ 9218DF251919B04D0033851E /* joint-pivot-handle-min@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-min@2x.png"; sourceTree = ""; };
+ 9218DF261919B04D0033851E /* joint-pivot-handle-max@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-max@2x.png"; sourceTree = ""; };
+ 9218DF271919B04D0033851E /* joint-pivot-handle-ref@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-handle-ref@2x.png"; sourceTree = ""; };
+ 9218DF281919B04D0033851E /* joint-pivot-motor@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-motor@2x.png"; sourceTree = ""; };
+ 921EEACE18A5760700D864C2 /* joint-anchor-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-anchor-sel.png"; sourceTree = ""; };
+ 921EEACF18A5760700D864C2 /* joint-anchor-sel@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-anchor-sel@2x.png"; sourceTree = ""; };
+ 921EEAD018A5760700D864C2 /* joint-anchor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-anchor.png"; sourceTree = ""; };
+ 921EEAD118A5760700D864C2 /* joint-anchor@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-anchor@2x.png"; sourceTree = ""; };
+ 921EEAD218A5760700D864C2 /* joint-pivot-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-sel.png"; sourceTree = ""; };
+ 921EEAD318A5760700D864C2 /* joint-pivot-sel@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot-sel@2x.png"; sourceTree = ""; };
+ 921EEAD418A5760700D864C2 /* joint-pivot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot.png"; sourceTree = ""; };
+ 921EEAD518A5760700D864C2 /* joint-pivot@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-pivot@2x.png"; sourceTree = ""; };
+ 921EEADE18A5884300D864C2 /* SequencerJoints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerJoints.h; sourceTree = ""; };
+ 921EEADF18A5884300D864C2 /* SequencerJoints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerJoints.m; sourceTree = "