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 = ""; }; + 921EEB2218ADB7EA00D864C2 /* GeometryUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GeometryUtil.h; sourceTree = ""; }; + 921EEB2318ADB7EA00D864C2 /* GeometryUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeometryUtil.m; sourceTree = ""; }; + 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 = ""; }; + 922E8EFC18C13666008E1764 /* OutletDrawWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OutletDrawWindow.h; path = ccBuilder/OutletDrawWindow.h; sourceTree = SOURCE_ROOT; }; + 922E8EFD18C13666008E1764 /* OutletDrawWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OutletDrawWindow.m; path = ccBuilder/OutletDrawWindow.m; sourceTree = SOURCE_ROOT; }; + 9249983018B7E1F500DE9ADA /* SceneGraph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneGraph.h; sourceTree = ""; }; + 9249983118B7E1F500DE9ADA /* SceneGraph.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SceneGraph.m; sourceTree = ""; }; + 9254805918D913C500236DED /* seq-locked-faint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-locked-faint.png"; sourceTree = ""; }; + 926D139318B2DC2E00582959 /* NSDictionary+Query.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Query.h"; sourceTree = ""; }; + 926D139418B2DC2E00582959 /* NSDictionary+Query.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Query.m"; sourceTree = ""; }; + 926D13B418B5778300582959 /* joint-distance-handle-long.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-handle-long.png"; sourceTree = ""; }; + 926D13B518B5778300582959 /* joint-distance-handle-long@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-handle-long@2x.png"; sourceTree = ""; }; + 926D13B618B5778300582959 /* joint-distance-handle-short.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-handle-short.png"; sourceTree = ""; }; + 926D13B718B5778300582959 /* joint-distance-handle-short@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-handle-short@2x.png"; sourceTree = ""; }; + 926D13B818B5778300582959 /* joint-distance-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-sel.png"; sourceTree = ""; }; + 926D13B918B5778300582959 /* joint-distance-sel@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-sel@2x.png"; sourceTree = ""; }; + 926D13BA18B5778300582959 /* joint-distance-slide-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-slide-sel.png"; sourceTree = ""; }; + 926D13BB18B5778300582959 /* joint-distance-slide-sel@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-slide-sel@2x.png"; sourceTree = ""; }; + 926D13BC18B5778300582959 /* joint-distance-slide.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-slide.png"; sourceTree = ""; }; + 926D13BD18B5778300582959 /* joint-distance-slide@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance-slide@2x.png"; sourceTree = ""; }; + 926D13BE18B5778300582959 /* joint-distance.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance.png"; sourceTree = ""; }; + 926D13BF18B5778300582959 /* joint-distance@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-distance@2x.png"; sourceTree = ""; }; + 926D13D118B57A4900582959 /* CCScaleFreeNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CCScaleFreeNode.h; path = ccBuilder/CCScaleFreeNode.h; sourceTree = ""; }; + 926D13D218B57A4900582959 /* CCScaleFreeNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CCScaleFreeNode.m; path = ccBuilder/CCScaleFreeNode.m; sourceTree = ""; }; + 926D13D418B57A8100582959 /* CCBPhysicsJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CCBPhysicsJoint.h; path = ccBuilder/CCBPhysicsJoint.h; sourceTree = ""; }; + 926D13D518B57A8100582959 /* CCBPhysicsJoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CCBPhysicsJoint.m; path = ccBuilder/CCBPhysicsJoint.m; sourceTree = ""; }; + 926D13E318B57B9500582959 /* CCPhysicsPinJoint.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCPhysicsPinJoint.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + 926D13EA18B57E1500582959 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + 926D13EE18B57E1600582959 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 926D13EF18B57E1600582959 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + 926D13F018B57E1600582959 /* icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon@2x.png"; sourceTree = ""; }; + 926D13F818B57E7F00582959 /* CCBPhysicsPinJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPhysicsPinJoint.h; sourceTree = ""; }; + 926D13F918B57E7F00582959 /* CCBPhysicsPinJoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPhysicsPinJoint.m; sourceTree = ""; }; + 926D13FD18B57FEA00582959 /* CCPhysicsPinJoint-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "CCPhysicsPinJoint-Info.plist"; sourceTree = ""; }; + 926D13FE18B57FEA00582959 /* CCPhysicsPinJoint-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CCPhysicsPinJoint-Prefix.pch"; sourceTree = ""; }; + 9294EC9118C660480059014C /* CCBPhyicsPivotJointPlaceholder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPhyicsPivotJointPlaceholder.h; sourceTree = ""; }; + 9294EC9218C660480059014C /* CCBPhyicsPivotJointPlaceholder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPhyicsPivotJointPlaceholder.m; sourceTree = ""; }; + 9294EC9418C6606F0059014C /* CCBPhysicsPinJointPlacefolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPhysicsPinJointPlacefolder.h; sourceTree = ""; }; + 9294EC9518C6606F0059014C /* CCBPhysicsPinJointPlacefolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPhysicsPinJointPlacefolder.m; sourceTree = ""; }; + 92976367187775A0008F997B /* ResourceManagerPreivewAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManagerPreivewAudio.h; sourceTree = ""; }; + 92976368187775A0008F997B /* ResourceManagerPreviewAudio.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManagerPreviewAudio.m; sourceTree = ""; }; + 92976369187775A0008F997B /* ResourceManagerPreviewAudio.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ResourceManagerPreviewAudio.xib; sourceTree = ""; }; + 9297AC0518A1BE94003C3705 /* PolyDecomposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PolyDecomposition.h; sourceTree = ""; }; + 9297AC0618A1BE94003C3705 /* PolyDecomposition.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PolyDecomposition.mm; sourceTree = ""; }; + 9297AC2E18A43BCA003C3705 /* NSArray+Query.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+Query.h"; sourceTree = ""; }; + 9297AC2F18A43BCA003C3705 /* NSArray+Query.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Query.m"; sourceTree = ""; }; + 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 = ""; }; + 92B792BE18C92C60007DF895 /* CCBPhysicsSpringJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPhysicsSpringJoint.h; sourceTree = ""; }; + 92B792BF18C92C60007DF895 /* CCBPhysicsSpringJoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPhysicsSpringJoint.m; sourceTree = ""; }; + 92B792C018C92C60007DF895 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + 92B792C118C92C60007DF895 /* CCPhysicsSpringJoint-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "CCPhysicsSpringJoint-Info.plist"; sourceTree = ""; }; + 92B792C218C92C60007DF895 /* CCPhysicsSpringJoint-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CCPhysicsSpringJoint-Prefix.pch"; sourceTree = ""; }; + 92B792C418C92C60007DF895 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 92B792C518C92C60007DF895 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + 92B792C618C92C60007DF895 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + 92B792CF18C92D80007DF895 /* CCBPhysicsTwoBodyJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CCBPhysicsTwoBodyJoint.h; path = ccBuilder/CCBPhysicsTwoBodyJoint.h; sourceTree = ""; }; + 92B792D018C92D80007DF895 /* CCBPhysicsTwoBodyJoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CCBPhysicsTwoBodyJoint.m; path = ccBuilder/CCBPhysicsTwoBodyJoint.m; sourceTree = ""; }; + 92B7930618CAA4C7007DF895 /* CCBPhysicsJoint+Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCBPhysicsJoint+Private.h"; sourceTree = ""; }; + 92B91021193412A600E346B5 /* InspectorAnimation.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorAnimation.xib; sourceTree = ""; }; + 92B91024193413F500E346B5 /* InspectorAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorAnimation.h; sourceTree = ""; }; + 92B91025193413F500E346B5 /* InspectorAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorAnimation.m; sourceTree = ""; }; + 92BF8AB0192BCDF300C1BC28 /* InspectorButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorButton.h; sourceTree = ""; }; + 92BF8AB1192BCDF300C1BC28 /* InspectorButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorButton.m; sourceTree = ""; }; + 92BF8AB6192BCE8D00C1BC28 /* InspectorButton.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorButton.xib; sourceTree = ""; }; + 92D9D47A18F8AB3800F167C1 /* joint-connection-connected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-connection-connected.png"; sourceTree = ""; }; + 92D9D47B18F8AB3800F167C1 /* joint-connection-connected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-connection-connected@2x.png"; sourceTree = ""; }; + 92D9D47C18F8AB3800F167C1 /* joint-connection-disconnected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-connection-disconnected.png"; sourceTree = ""; }; + 92D9D47D18F8AB3800F167C1 /* joint-connection-disconnected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-connection-disconnected@2x.png"; sourceTree = ""; }; + 92D9D47E18F8AB3800F167C1 /* joint-connection-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-connection-bg.png"; sourceTree = ""; }; + 92D9D47F18F8AB3800F167C1 /* joint-connection-bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "joint-connection-bg@2x.png"; sourceTree = ""; }; + 92F095F918F8851200D47A94 /* inspector-body-connected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-connected.png"; sourceTree = ""; }; + 92F095FA18F8851200D47A94 /* inspector-body-disconnected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-disconnected.png"; sourceTree = ""; }; + 92F095FB18F8851200D47A94 /* inspector-body-remove-dis.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-remove-dis.png"; sourceTree = ""; }; + 92F095FC18F8851200D47A94 /* inspector-body-remove-hi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-remove-hi.png"; sourceTree = ""; }; + 92F095FD18F8851200D47A94 /* inspector-body-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-bg.png"; sourceTree = ""; }; + 92F095FE18F8851200D47A94 /* inspector-body-remove.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-remove.png"; sourceTree = ""; }; + 92F095FF18F8851200D47A94 /* inspector-body-remove-hi@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-remove-hi@2x.png"; sourceTree = ""; }; + 92F0960018F8851200D47A94 /* inspector-body-remove-dis@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-remove-dis@2x.png"; sourceTree = ""; }; + 92F0960118F8851200D47A94 /* inspector-body-remove@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-remove@2x.png"; sourceTree = ""; }; + 92F0960218F8851200D47A94 /* inspector-body-connected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-connected@2x.png"; sourceTree = ""; }; + 92F0960318F8851300D47A94 /* inspector-body-disconnected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-disconnected@2x.png"; sourceTree = ""; }; + 92F0960418F8851300D47A94 /* inspector-body-bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-bg@2x.png"; sourceTree = ""; }; + 92F0961218F8855A00D47A94 /* inspector-body-goto-hi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-goto-hi.png"; sourceTree = ""; }; + 92F0961318F8855A00D47A94 /* inspector-body-goto.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-goto.png"; sourceTree = ""; }; + 92F0961418F8855A00D47A94 /* inspector-body-goto-hi@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-goto-hi@2x.png"; sourceTree = ""; }; + 92F0961518F8855A00D47A94 /* inspector-body-goto@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-body-goto@2x.png"; sourceTree = ""; }; + 92F0961A18F891A900D47A94 /* InspectorEnabledFloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorEnabledFloat.h; sourceTree = ""; }; + 92F0961B18F891A900D47A94 /* InspectorEnabledFloat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorEnabledFloat.m; sourceTree = ""; }; + 92F0961C18F891A900D47A94 /* InspectorEnabledFloat.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorEnabledFloat.xib; sourceTree = ""; }; + A09AB6F614E993AA009C8B91 /* fps_images.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fps_images.png; path = "libs/cocos2d-iphone/Resources/Fonts/fps_images.png"; sourceTree = SOURCE_ROOT; }; + B7083DF217B1C363006628C7 /* LocalizationEditorWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LocalizationEditorWindow.xib; sourceTree = ""; }; + B7083DF417B1CB88006628C7 /* LocalizationEditorWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalizationEditorWindow.h; sourceTree = ""; }; + B7083DF517B1CB88006628C7 /* LocalizationEditorWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalizationEditorWindow.m; sourceTree = ""; }; + B7083DF717B1CBC8006628C7 /* LocalizationEditorHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalizationEditorHandler.h; sourceTree = ""; }; + B7083DF817B1CBC8006628C7 /* LocalizationEditorHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalizationEditorHandler.m; sourceTree = ""; }; + B7083DFA17B2CC65006628C7 /* LocaliztaionEditorLanguageList.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = LocaliztaionEditorLanguageList.plist; sourceTree = ""; }; + B7083DFC17B2CDA0006628C7 /* LocalizationEditorLanguage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalizationEditorLanguage.h; sourceTree = ""; }; + B7083DFD17B2CDA0006628C7 /* LocalizationEditorLanguage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalizationEditorLanguage.m; sourceTree = ""; }; + B7083DFF17B2F992006628C7 /* LocalizationEditorTranslation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalizationEditorTranslation.h; sourceTree = ""; }; + B7083E0017B2F992006628C7 /* LocalizationEditorTranslation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalizationEditorTranslation.m; sourceTree = ""; }; + B7083E0217B32623006628C7 /* LocalizationEditorLanguageTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalizationEditorLanguageTableView.h; sourceTree = ""; }; + B7083E0317B32623006628C7 /* LocalizationEditorLanguageTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalizationEditorLanguageTableView.m; sourceTree = ""; }; + B7083E0517B32DAD006628C7 /* LocalizationEditorTranslationTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalizationEditorTranslationTableView.h; sourceTree = ""; }; + B7083E0617B32DAD006628C7 /* LocalizationEditorTranslationTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalizationEditorTranslationTableView.m; sourceTree = ""; }; + B7083E0817B567E5006628C7 /* StringPropertySetter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StringPropertySetter.h; sourceTree = ""; }; + B7083E0917B567E5006628C7 /* StringPropertySetter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StringPropertySetter.m; sourceTree = ""; }; + B7096E1D180CD98E00164A8A /* doc-layer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-layer.png"; sourceTree = ""; }; + B7096E1E180CD98E00164A8A /* doc-layer@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-layer@2x.png"; sourceTree = ""; }; + B7096E1F180CD98E00164A8A /* doc-node.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-node.png"; sourceTree = ""; }; + B7096E20180CD98E00164A8A /* doc-node@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-node@2x.png"; sourceTree = ""; }; + B7096E21180CD98E00164A8A /* doc-particlesystem.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-particlesystem.png"; sourceTree = ""; }; + B7096E22180CD98E00164A8A /* doc-scene.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-scene.png"; sourceTree = ""; }; + B7096E23180CD98E00164A8A /* doc-scene@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-scene@2x.png"; sourceTree = ""; }; + B7096E24180CD98E00164A8A /* doc-sprite.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-sprite.png"; sourceTree = ""; }; + B7096E25180CD98E00164A8A /* doc-sprite@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doc-sprite@2x.png"; sourceTree = ""; }; + B71706C7184ECD660081720A /* select-crosshair@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-crosshair@2x.png"; sourceTree = ""; }; + B71706C8184ECD660081720A /* select-move.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-move.png"; sourceTree = ""; }; + B71706C9184ECD660081720A /* select-move@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-move@2x.png"; sourceTree = ""; }; + B71706CA184ECD660081720A /* select-rotation@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-rotation@2x.png"; sourceTree = ""; }; + B71706CB184ECD660081720A /* select-scale@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-scale@2x.png"; sourceTree = ""; }; + B71706CC184ECD660081720A /* select-skew@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-skew@2x.png"; sourceTree = ""; }; + B729AC52181F091800BA0D9C /* CCSlider.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCSlider.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B729AC56181F091800BA0D9C /* CCSlider-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCSlider-Info.plist"; sourceTree = ""; }; + B729AC58181F091800BA0D9C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B729AC5A181F091800BA0D9C /* CCSlider-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCSlider-Prefix.pch"; sourceTree = ""; }; + B729AC62181F0B5000BA0D9C /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B729AC63181F0B5000BA0D9C /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + B729AC64181F0B5000BA0D9C /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + B729AC68181F0C2200BA0D9C /* CCBPSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CCBPSlider.h; path = CCSlider/CCBPSlider.h; sourceTree = SOURCE_ROOT; }; + B729AC69181F0C2200BA0D9C /* CCBPSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CCBPSlider.m; path = CCSlider/CCBPSlider.m; sourceTree = SOURCE_ROOT; }; + B72D1DBF186125E80091252F /* Requirements.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Requirements.plist; path = ../Requirements.plist; sourceTree = ""; }; + B72D1DC118612CA70091252F /* CCBPControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPControl.h; sourceTree = ""; }; + B72D1DC218612CA70091252F /* CCBPControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPControl.m; sourceTree = ""; }; + B72D1DC418612CD50091252F /* CCBPLabelBMFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPLabelBMFont.h; sourceTree = ""; }; + B72D1DC518612CD50091252F /* CCBPLabelBMFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPLabelBMFont.m; sourceTree = ""; }; + B72D1DC718612CF50091252F /* CCBPLayoutBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPLayoutBox.h; sourceTree = ""; }; + B72D1DC818612CF50091252F /* CCBPLayoutBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPLayoutBox.m; sourceTree = ""; }; + B72D1DCA18612D100091252F /* CCBPNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPNode.h; sourceTree = ""; }; + B72D1DCB18612D100091252F /* CCBPNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPNode.m; sourceTree = ""; }; + B72D1DCD18612D340091252F /* CCBPScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPScrollView.h; sourceTree = ""; }; + B72D1DCE18612D340091252F /* CCBPScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPScrollView.m; sourceTree = ""; }; + B72D1DD018612D570091252F /* CCBPSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPSprite.h; sourceTree = ""; }; + B72D1DD118612D570091252F /* CCBPSprite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPSprite.m; sourceTree = ""; }; + B72D1DD318612D790091252F /* CCBPSprite9Slice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPSprite9Slice.h; sourceTree = ""; }; + B72D1DD418612D790091252F /* CCBPSprite9Slice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPSprite9Slice.m; sourceTree = ""; }; + B72D1DEA186393AE0091252F /* HockeySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HockeySDK.framework; path = libs/HockeySDK.framework; sourceTree = ""; }; + B732A1821799736500333C56 /* TB_build.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_build.png; sourceTree = ""; }; + B732A1831799736500333C56 /* TB_build@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "TB_build@2x.png"; sourceTree = ""; }; + B73788D91804AC5D0076A88C /* CCScrollView.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCScrollView.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B73788DD1804AC5E0076A88C /* CCScrollView-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCScrollView-Info.plist"; sourceTree = ""; }; + B73788DF1804AC5E0076A88C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B73788E11804AC5E0076A88C /* CCScrollView-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCScrollView-Prefix.pch"; sourceTree = ""; }; + B73788E91804AD5C0076A88C /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B73788EA1804AD5C0076A88C /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + B73788F41804D80B0076A88C /* ccb.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = ccb.icns; path = ../ccb.icns; sourceTree = ""; }; + B73788F61804D8200076A88C /* ccbproj.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = ccbproj.icns; path = ../ccbproj.icns; sourceTree = ""; }; + B73788F81804D8690076A88C /* ccbi.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = ccbi.icns; path = ../ccbi.icns; sourceTree = ""; }; + B759E4B41880B4D000E8166C /* help-logo@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "help-logo@2x.png"; sourceTree = ""; }; + B759E4B61880B60B00E8166C /* logo-white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "logo-white.png"; sourceTree = ""; }; + B759E4B71880B60B00E8166C /* logo-white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "logo-white@2x.png"; sourceTree = ""; }; + B75CB46318468FA70036259F /* seq-btn-loop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-loop.png"; sourceTree = ""; }; + B75CB46418468FA70036259F /* seq-btn-loop@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-loop@2x.png"; sourceTree = ""; }; + B75CB489184D31270036259F /* UsageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsageManager.h; sourceTree = ""; }; + B75CB48A184D31270036259F /* UsageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UsageManager.m; sourceTree = ""; }; + B7737D4C17CC102D005F775A /* InspectorColor4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorColor4.h; sourceTree = ""; }; + B7737D4D17CC102D005F775A /* InspectorColor4.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorColor4.m; sourceTree = ""; }; + B7737D4E17CC102D005F775A /* InspectorColor4.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorColor4.xib; sourceTree = ""; }; + B77EC96418087011004C09FF /* CCBProjCreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBProjCreator.h; sourceTree = ""; }; + B77EC96518087011004C09FF /* CCBProjCreator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBProjCreator.m; sourceTree = ""; }; + B78AE44917E263B20028BE0B /* CCBPNodeColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPNodeColor.h; sourceTree = ""; }; + B78AE44A17E263B20028BE0B /* CCBPNodeColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPNodeColor.m; sourceTree = ""; }; + B78AE44C17E263FC0028BE0B /* CCBPNodeGradient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPNodeGradient.h; sourceTree = ""; }; + B78AE44D17E263FC0028BE0B /* CCBPNodeGradient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPNodeGradient.m; sourceTree = ""; }; + B78AE44F17E3B1600028BE0B /* scale-2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "scale-2.png"; sourceTree = ""; }; + B78AE45017E3B1600028BE0B /* scale-3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "scale-3.png"; sourceTree = ""; }; + B78AE45117E3B1600028BE0B /* scale-4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "scale-4.png"; sourceTree = ""; }; + B78B8B0E185FE6A0006ADBBE /* SpriteBuilder.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = SpriteBuilder.entitlements; sourceTree = SOURCE_ROOT; }; + B78B8B0F185FF982006ADBBE /* Folder.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Folder.icns; sourceTree = ""; }; + B78DA3621773A89B00B85CC0 /* CCBButtonUnclickable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBButtonUnclickable.h; sourceTree = ""; }; + B78DA3631773A89B00B85CC0 /* CCBButtonUnclickable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBButtonUnclickable.m; sourceTree = ""; }; + B78DA3671773EA0E00B85CC0 /* NSPasteboard+CCB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPasteboard+CCB.h"; sourceTree = ""; }; + B78DA3681773EA0E00B85CC0 /* NSPasteboard+CCB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPasteboard+CCB.m"; sourceTree = ""; }; + B794AB90177A30EB004FF493 /* ui-nopreview.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ui-nopreview.png"; sourceTree = ""; }; + B794AB97177CE09D004FF493 /* FCFormatConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FCFormatConverter.h; path = FCFormatConverter/FCFormatConverter.h; sourceTree = ""; }; + B794AB98177CE09D004FF493 /* FCFormatConverter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = FCFormatConverter.mm; path = FCFormatConverter/FCFormatConverter.mm; sourceTree = ""; }; + B79F90D817FF30DB00908504 /* CCPhysicsNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCPhysicsNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B79F90DC17FF30DC00908504 /* CCPhysicsNode-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCPhysicsNode-Info.plist"; sourceTree = ""; }; + B79F90DE17FF30DC00908504 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B79F90E017FF30DC00908504 /* CCPhysicsNode-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCPhysicsNode-Prefix.pch"; sourceTree = ""; }; + B79F90E817FF33BB00908504 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B79F90E917FF33BB00908504 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + B79F90EC17FF366C00908504 /* CCBPPhysicsNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPPhysicsNode.h; sourceTree = ""; }; + B79F90ED17FF366C00908504 /* CCBPPhysicsNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPPhysicsNode.m; sourceTree = ""; }; + B7AC6968179E03BF0041B8BD /* select-corner.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-corner.png"; sourceTree = ""; }; + B7AC696D179F50850041B8BD /* BFColorPickerPopover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BFColorPickerPopover.h; sourceTree = ""; }; + B7AC696E179F50850041B8BD /* BFColorPickerPopover.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BFColorPickerPopover.m; sourceTree = ""; }; + B7AC696F179F50850041B8BD /* BFColorPickerPopover_LICENSE.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BFColorPickerPopover_LICENSE.txt; sourceTree = ""; }; + B7AC6970179F50850041B8BD /* BFPopoverColorWell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BFPopoverColorWell.h; sourceTree = ""; }; + B7AC6971179F50850041B8BD /* BFPopoverColorWell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BFPopoverColorWell.m; sourceTree = ""; }; + B7AC6973179F50850041B8BD /* NSColor+BFColorPickerPopover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSColor+BFColorPickerPopover.h"; sourceTree = ""; }; + B7AC6974179F50850041B8BD /* NSColor+BFColorPickerPopover.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSColor+BFColorPickerPopover.m"; sourceTree = ""; }; + B7AC6975179F50850041B8BD /* NSColorPanel+BFColorPickerPopover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSColorPanel+BFColorPickerPopover.h"; sourceTree = ""; }; + B7AC6976179F50850041B8BD /* NSColorPanel+BFColorPickerPopover.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSColorPanel+BFColorPickerPopover.m"; sourceTree = ""; }; + B7AC6977179F50850041B8BD /* NSColorWell+BFColorPickerPopover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSColorWell+BFColorPickerPopover.h"; sourceTree = ""; }; + B7AC6978179F50850041B8BD /* NSColorWell+BFColorPickerPopover.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSColorWell+BFColorPickerPopover.m"; sourceTree = ""; }; + B7AC697A179F50850041B8BD /* BFColorPickerPopoverView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BFColorPickerPopoverView.h; sourceTree = ""; }; + B7AC697B179F50850041B8BD /* BFColorPickerPopoverView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BFColorPickerPopoverView.m; sourceTree = ""; }; + B7AC697C179F50850041B8BD /* BFColorPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BFColorPickerViewController.h; sourceTree = ""; }; + B7AC697D179F50850041B8BD /* BFColorPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BFColorPickerViewController.m; sourceTree = ""; }; + B7AC697E179F50850041B8BD /* BFIconTabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BFIconTabBar.h; sourceTree = ""; }; + B7AC697F179F50850041B8BD /* BFIconTabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BFIconTabBar.m; sourceTree = ""; }; + B7AC699217A079C80041B8BD /* NSDictionary+SMKeyValueObserving.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+SMKeyValueObserving.h"; sourceTree = ""; }; + B7AC699317A079C80041B8BD /* NSDictionary+SMKeyValueObserving.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+SMKeyValueObserving.m"; sourceTree = ""; }; + B7AC699417A079C80041B8BD /* SMBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SMBar.h; sourceTree = ""; }; + B7AC699517A079C80041B8BD /* SMBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SMBar.m; sourceTree = ""; }; + B7AC699617A079C80041B8BD /* SMTabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SMTabBar.h; sourceTree = ""; }; + B7AC699717A079C80041B8BD /* SMTabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SMTabBar.m; sourceTree = ""; }; + B7AC699817A079C80041B8BD /* SMTabBarButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SMTabBarButtonCell.h; sourceTree = ""; }; + B7AC699917A079C80041B8BD /* SMTabBarButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SMTabBarButtonCell.m; sourceTree = ""; }; + B7AC699A17A079C80041B8BD /* SMTabBarItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SMTabBarItem.h; sourceTree = ""; }; + B7AC699B17A079C80041B8BD /* SMTabBarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SMTabBarItem.m; sourceTree = ""; }; + B7AC69A317A07DAD0041B8BD /* inspector-folder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-folder.png"; sourceTree = ""; }; + B7AC69A417A07DAD0041B8BD /* inspector-objects.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-objects.png"; sourceTree = ""; }; + B7AC69A817A0923B0041B8BD /* inspector-nodes.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-nodes.png"; sourceTree = ""; }; + B7AC69AC17A0938C0041B8BD /* inspector-nodes@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-nodes@2x.png"; sourceTree = ""; }; + B7AC69AE17A0A10E0041B8BD /* ResourceManagerTilelessEditorManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManagerTilelessEditorManager.h; sourceTree = ""; }; + B7AC69AF17A0A10E0041B8BD /* ResourceManagerTilelessEditorManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManagerTilelessEditorManager.m; sourceTree = ""; }; + B7AC69B117A1969E0041B8BD /* header-bg2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "header-bg2.png"; sourceTree = ""; }; + B7AC69B317A1A2040041B8BD /* header-bg2-crop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "header-bg2-crop.png"; sourceTree = ""; }; + B7AC69B517A1B9930041B8BD /* CCBImageBrowserView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBImageBrowserView.h; sourceTree = ""; }; + B7AC69B617A1B9930041B8BD /* CCBImageBrowserView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBImageBrowserView.m; sourceTree = ""; }; + B7AC69B817A2F4470041B8BD /* PlugInNodeViewHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlugInNodeViewHandler.h; sourceTree = ""; }; + B7AC69B917A2F4470041B8BD /* PlugInNodeViewHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlugInNodeViewHandler.m; sourceTree = ""; }; + B7AC69BE17A3129C0041B8BD /* PlugInNodeCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlugInNodeCollectionView.h; sourceTree = ""; }; + B7AC69BF17A3129C0041B8BD /* PlugInNodeCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlugInNodeCollectionView.m; sourceTree = ""; }; + B7AC69C117A320E30041B8BD /* CCBColorView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBColorView.h; sourceTree = ""; }; + B7AC69C217A320E30041B8BD /* CCBColorView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBColorView.m; sourceTree = ""; }; + B7AC69C417A70A4A0041B8BD /* inspector-codeconnections.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-codeconnections.png"; sourceTree = ""; }; + B7AC69C517A70A4A0041B8BD /* inspector-codeconnections@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-codeconnections@2x.png"; sourceTree = ""; }; + B7AC69C617A70A4A0041B8BD /* inspector-props.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-props.png"; sourceTree = ""; }; + B7AC69C717A70A4B0041B8BD /* inspector-props@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-props@2x.png"; sourceTree = ""; }; + B7AC69C817A70A4B0041B8BD /* inspector-template.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-template.png"; sourceTree = ""; }; + B7AC69CF17A758A40041B8BD /* PropertyInspectorHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PropertyInspectorHandler.h; sourceTree = ""; }; + B7AC69D017A758A40041B8BD /* PropertyInspectorHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PropertyInspectorHandler.m; sourceTree = ""; }; + B7AC69D217A75E7E0041B8BD /* PropertyInspectorTemplateCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PropertyInspectorTemplateCollectionView.h; sourceTree = ""; }; + B7AC69D317A75E7E0041B8BD /* PropertyInspectorTemplateCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PropertyInspectorTemplateCollectionView.m; sourceTree = ""; }; + B7AC69D517A827470041B8BD /* PropertyInspectorTemplate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PropertyInspectorTemplate.h; sourceTree = ""; }; + B7AC69D617A827470041B8BD /* PropertyInspectorTemplate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PropertyInspectorTemplate.m; sourceTree = ""; }; + B7AC69DB17A9D9700041B8BD /* defaultTemplates.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; path = defaultTemplates.zip; sourceTree = ""; }; + B7C3532217F65547005697C1 /* CCSprite9Slice.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCSprite9Slice.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B7C3532617F65547005697C1 /* CCSprite9Slice-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCSprite9Slice-Info.plist"; sourceTree = ""; }; + B7C3532817F65547005697C1 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B7C3532A17F65547005697C1 /* CCSprite9Slice-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCSprite9Slice-Prefix.pch"; sourceTree = ""; }; + B7C3532E17F65585005697C1 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B7C3533017F655B5005697C1 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + B7C3533517FA0FEF005697C1 /* inspector-physics.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-physics.png"; sourceTree = ""; }; + B7C3533617FA0FEF005697C1 /* inspector-physics@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "inspector-physics@2x.png"; sourceTree = ""; }; + B7C3533917FA2EDA005697C1 /* select-physics-corner.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "select-physics-corner.png"; sourceTree = ""; }; + B7C3533C17FA30BB005697C1 /* NodePhysicsBody.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodePhysicsBody.h; sourceTree = ""; }; + B7C3533D17FA30BB005697C1 /* NodePhysicsBody.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodePhysicsBody.m; sourceTree = ""; }; + B7C3533F17FA3DF1005697C1 /* PhysicsHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhysicsHandler.h; sourceTree = ""; }; + B7C3534017FA3DF1005697C1 /* PhysicsHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhysicsHandler.m; sourceTree = ""; }; + B7C623B117F383CE00928F91 /* CCButton.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCButton.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B7C623B217F383CE00928F91 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; + B7C623B617F383CE00928F91 /* CCButton-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCButton-Info.plist"; sourceTree = ""; }; + B7C623B817F383CE00928F91 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B7C623BA17F383CE00928F91 /* CCButton-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCButton-Prefix.pch"; sourceTree = ""; }; + B7C623C117F3860A00928F91 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + B7C623C317F3868C00928F91 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B7C623C517F3870A00928F91 /* CCBPButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPButton.h; sourceTree = ""; }; + B7C623C617F3870A00928F91 /* CCBPButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPButton.m; sourceTree = ""; }; + B7C623CD17F38B7800928F91 /* CCControl.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCControl.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B7C623D117F38B7800928F91 /* CCControl-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCControl-Info.plist"; sourceTree = ""; }; + B7C623D317F38B7800928F91 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B7C623D517F38B7800928F91 /* CCControl-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCControl-Prefix.pch"; sourceTree = ""; }; + B7C623DC17F392FE00928F91 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B7D0917D17C2C12A0007FE7F /* cocos2d-osx.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "cocos2d-osx.xcodeproj"; path = "cocos2d-iphone/cocos2d-osx.xcodeproj"; sourceTree = ""; }; + B7DE848C1937A8030039FB72 /* RegistrationWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RegistrationWindow.xib; sourceTree = ""; }; + B7DE848E1937A8390039FB72 /* RegistrationWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegistrationWindow.h; sourceTree = ""; }; + B7DE848F1937A8390039FB72 /* RegistrationWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegistrationWindow.m; sourceTree = ""; }; + B7DE84911937B18B0039FB72 /* signup-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "signup-bg.png"; sourceTree = ""; }; + B7DE84921937B18B0039FB72 /* signup-bottom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "signup-bottom.png"; sourceTree = ""; }; + B7DE84951937C6380039FB72 /* SpriteBuilder-logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "SpriteBuilder-logo.png"; sourceTree = ""; }; + B7DEBD6317D113B800942E4D /* SpriteBuilder.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = SpriteBuilder.icns; path = ../SpriteBuilder.icns; sourceTree = ""; }; + B7E1EFDC185F8D3D00C9E6E0 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; }; + B7E775E118563F8C004221AA /* frame-fixed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "frame-fixed.png"; sourceTree = ""; }; + B7EE699518188E0800B983FE /* CCTextField.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCTextField.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B7EE699918188E0900B983FE /* CCTextField-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCTextField-Info.plist"; sourceTree = ""; }; + B7EE699B18188E0900B983FE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B7EE699D18188E0900B983FE /* CCTextField-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCTextField-Prefix.pch"; sourceTree = ""; }; + B7EE69A818188EF900B983FE /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + B7EE69A918188EF900B983FE /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + B7EE69AC18188F2800B983FE /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B7EE69AE1819822500B983FE /* CCBPTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPTextField.h; sourceTree = ""; }; + B7EE69AF1819822500B983FE /* CCBPTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPTextField.m; sourceTree = ""; }; + B7EE69F81819EE0D00B983FE /* CCLayoutBox.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCLayoutBox.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + B7EE69FC1819EE0D00B983FE /* CCLayoutBox-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCLayoutBox-Info.plist"; sourceTree = ""; }; + B7EE69FE1819EE0D00B983FE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + B7EE6A001819EE0D00B983FE /* CCLayoutBox-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCLayoutBox-Prefix.pch"; sourceTree = ""; }; + B7EE6A0B1819EF1500B983FE /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + B7EE6A0C1819EF1500B983FE /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + B7EE6A0D1819EF1500B983FE /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + B7F02D4617D12DB1008A2E2D /* about-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "about-bg.png"; sourceTree = ""; }; + B7F02D4717D12DB1008A2E2D /* about-bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "about-bg@2x.png"; sourceTree = ""; }; + B7F02D4A17D13332008A2E2D /* CCBTransparentWindowDraggable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBTransparentWindowDraggable.h; sourceTree = ""; }; + B7F02D4B17D13332008A2E2D /* CCBTransparentWindowDraggable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBTransparentWindowDraggable.m; sourceTree = ""; }; + D2E0167518D782CC00927430 /* SpriteBuilderCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpriteBuilderCommand.h; sourceTree = ""; }; + D2E0167618D782CC00927430 /* SpriteBuilderCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SpriteBuilderCommand.m; sourceTree = ""; }; + D2E0168418D783C900927430 /* AppleScriptKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppleScriptKit.framework; path = System/Library/Frameworks/AppleScriptKit.framework; sourceTree = SDKROOT; }; + D2E0168618D783F800927430 /* SpriteBuilder.sdef */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = SpriteBuilder.sdef; sourceTree = SOURCE_ROOT; }; + D35E589D18E391DA008571EC /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; }; + DC05E76818D0A9BD00592A1E /* CCBPluginSBButtonNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPluginSBButtonNode.h; sourceTree = ""; }; + DC05E76918D0A9BD00592A1E /* CCBPluginSBButtonNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPluginSBButtonNode.m; sourceTree = ""; }; + DC05E76A18D0A9BD00592A1E /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + DC05E76B18D0A9BD00592A1E /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + DC05E76C18D0A9BD00592A1E /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + DC05E76E18D0A9BD00592A1E /* CCBPluginSBControlNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPluginSBControlNode.h; sourceTree = ""; }; + DC05E76F18D0A9BD00592A1E /* CCBPluginSBControlNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPluginSBControlNode.m; sourceTree = ""; }; + DC05E77018D0A9BD00592A1E /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + DC05E78318D0ACCB00592A1E /* SBControlNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SBControlNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + DC05E79018D0ACE000592A1E /* SBButtonNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SBButtonNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + DC0A8D3E18C8C274009A619D /* SpriteKitTextureAtlasToolPath.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SpriteKitTextureAtlasToolPath.txt; sourceTree = ""; }; + DC5129C91891450D0091873D /* SKSpriteNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SKSpriteNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + DC6802F3189145830060BE39 /* CCBPluginSKSpriteNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPluginSKSpriteNode.h; sourceTree = ""; }; + DC6802F4189145830060BE39 /* CCBPluginSKSpriteNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPluginSKSpriteNode.m; sourceTree = ""; }; + DC6802F5189145840060BE39 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + DC6802F6189145840060BE39 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + DC6802F7189145840060BE39 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + DC6803081891466C0060BE39 /* SKLabelNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SKLabelNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + DC68030A189146900060BE39 /* CCBPluginSKLabelNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPluginSKLabelNode.h; sourceTree = ""; }; + DC68030B189146900060BE39 /* CCBPluginSKLabelNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPluginSKLabelNode.m; sourceTree = ""; }; + DC68030C189146900060BE39 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + DC68030D189146900060BE39 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + DC68030E189146900060BE39 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + DC68031918914E650060BE39 /* CCNode+SKNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CCNode+SKNode.h"; sourceTree = ""; }; + DC68031A18914E650060BE39 /* CCNode+SKNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CCNode+SKNode.m"; sourceTree = ""; }; + DC680329189156310060BE39 /* SKColorSpriteNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SKColorSpriteNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + DC68032E189156A60060BE39 /* CCBPluginSKColorSpriteNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPluginSKColorSpriteNode.h; sourceTree = ""; }; + DC68032F189156A60060BE39 /* CCBPluginSKColorSpriteNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPluginSKColorSpriteNode.m; sourceTree = ""; }; + DC680330189156A60060BE39 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + DC680331189156A60060BE39 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + DC680332189156A60060BE39 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + DC68033A189168390060BE39 /* SpriteKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SpriteKit.framework; path = System/Library/Frameworks/SpriteKit.framework; sourceTree = SDKROOT; }; + DCB9F1581890600D00128D78 /* SKNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SKNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + DCB9F15B1890607D00128D78 /* CCBPluginSKNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPluginSKNode.h; sourceTree = ""; }; + DCB9F15C1890607D00128D78 /* CCBPluginSKNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPluginSKNode.m; sourceTree = ""; }; + DCB9F15D1890607D00128D78 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + DCB9F1601890607D00128D78 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + DCB9F1611890607D00128D78 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + DCFB063F18E32B7500DF02A0 /* SKFile.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SKFile.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + DCFB064518E32BBD00DF02A0 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + DCFB064618E32BBD00DF02A0 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + DCFB064718E32BBD00DF02A0 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = ""; }; + DCFB064C18E32BFA00DF02A0 /* CCBPluginSKFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPluginSKFile.h; sourceTree = ""; }; + DCFB064D18E32BFA00DF02A0 /* CCBPluginSKFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPluginSKFile.m; sourceTree = ""; }; + E312972D16CC33B200A09155 /* SequencerPopoverBlock.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SequencerPopoverBlock.xib; sourceTree = ""; }; + E312973116CC377700A09155 /* SequencerPopoverBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerPopoverBlock.h; sourceTree = ""; }; + E312973216CC377700A09155 /* SequencerPopoverBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerPopoverBlock.m; sourceTree = ""; }; + E312973416CC677400A09155 /* SequencerPopoverSound.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SequencerPopoverSound.xib; sourceTree = ""; }; + E312973616CC67CA00A09155 /* SequencerPopoverSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerPopoverSound.h; sourceTree = ""; }; + E312973716CC67CA00A09155 /* SequencerPopoverSound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerPopoverSound.m; sourceTree = ""; }; + E312EDC516AF71FE000778C8 /* CCBReaderInternalRenamedProps.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBReaderInternalRenamedProps.plist; sourceTree = ""; }; + E318CB3816D83F3B00348E0D /* InspectorPopoverFloatXY.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverFloatXY.xib; sourceTree = ""; }; + E3214C4015D3BF4D002413A7 /* CustomPropSettingsWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CustomPropSettingsWindow.xib; sourceTree = ""; }; + E3214C4215D3C29D002413A7 /* CustomPropSettingsWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomPropSettingsWindow.h; sourceTree = ""; }; + E3214C4315D3C29D002413A7 /* CustomPropSettingsWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomPropSettingsWindow.m; sourceTree = ""; }; + E3214C4515D3C3AF002413A7 /* CustomPropSetting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomPropSetting.h; sourceTree = ""; }; + E3214C4615D3C3AF002413A7 /* CustomPropSetting.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomPropSetting.m; sourceTree = ""; }; + E3214C4815D40F01002413A7 /* InspectorCustom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorCustom.h; sourceTree = ""; }; + E3214C4915D40F01002413A7 /* InspectorCustom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorCustom.m; sourceTree = ""; }; + E3214C4A15D40F01002413A7 /* InspectorCustom.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorCustom.xib; sourceTree = ""; }; + E3214C5A15D54355002413A7 /* InspectorCustomEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorCustomEdit.h; sourceTree = ""; }; + E3214C5B15D54355002413A7 /* InspectorCustomEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorCustomEdit.m; sourceTree = ""; }; + E3214C5C15D54355002413A7 /* InspectorCustomEdit.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorCustomEdit.xib; sourceTree = ""; }; + E325F64414F531F500D29BCF /* InspectorFloatVar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFloatVar.xib; sourceTree = ""; }; + E325F64614F5336E00D29BCF /* InspectorFloatVar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFloatVar.h; sourceTree = ""; }; + E325F64714F5336E00D29BCF /* InspectorFloatVar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFloatVar.m; sourceTree = ""; }; + E325F64914F53FD000D29BCF /* InspectorColor4FVar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorColor4FVar.xib; sourceTree = ""; }; + E325F64B14F53FF000D29BCF /* InspectorColor4FVar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorColor4FVar.h; sourceTree = ""; }; + E325F64C14F53FF000D29BCF /* InspectorColor4FVar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorColor4FVar.m; sourceTree = ""; }; + E325F64E14F5622200D29BCF /* InspectorSeparatorSub.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorSeparatorSub.xib; sourceTree = ""; }; + E325F65014F5669600D29BCF /* InspectorSeparatorSub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorSeparatorSub.h; sourceTree = ""; }; + E325F65114F5669600D29BCF /* InspectorSeparatorSub.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorSeparatorSub.m; sourceTree = ""; }; + E325F65314F5749800D29BCF /* CCBPParticleSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPParticleSystem.h; sourceTree = ""; }; + E325F65414F5749800D29BCF /* CCBPParticleSystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPParticleSystem.m; sourceTree = ""; }; + E326EFB515C84123006D6CE6 /* seq-endmarker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-endmarker.png"; sourceTree = ""; }; + E32BBCAF1561361200C58395 /* HashValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HashValue.h; path = HashValue/HashValue.h; sourceTree = ""; }; + E32BBCB01561361200C58395 /* HashValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HashValue.m; path = HashValue/HashValue.m; sourceTree = ""; }; + E32D8CC414EC257000F4BD5E /* InspectorCodeConnections.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorCodeConnections.xib; sourceTree = ""; }; + E32D8CC614EC25D800F4BD5E /* InspectorCodeConnections.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorCodeConnections.h; sourceTree = ""; }; + E32D8CC714EC25D800F4BD5E /* InspectorCodeConnections.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorCodeConnections.m; sourceTree = ""; }; + E32FA2F716D5781600254653 /* seq-row-channel-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-row-channel-bg.png"; sourceTree = ""; }; + E334069615517225000FBD0B /* InspectorFloatScale.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFloatScale.xib; sourceTree = ""; }; + E33406991551725F000FBD0B /* InspectorFloatScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFloatScale.h; sourceTree = ""; }; + E334069A1551725F000FBD0B /* InspectorFloatScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFloatScale.m; sourceTree = ""; }; + E3347419169DC5A6000737CC /* APIDocsWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APIDocsWindow.h; sourceTree = ""; }; + E334741A169DC5A6000737CC /* APIDocsWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APIDocsWindow.m; sourceTree = ""; }; + E334741B169DC5A6000737CC /* APIDocsWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = APIDocsWindow.xib; sourceTree = ""; }; + E334A4DC170CF475001604F7 /* seq-btn-end.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-end.png"; sourceTree = ""; }; + E334A4DD170CF475001604F7 /* toolbar-bottom-noborder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-bottom-noborder.png"; sourceTree = ""; }; + E334A4E2170CFDE3001604F7 /* CCBTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBTextField.h; sourceTree = ""; }; + E334A4E3170CFDE3001604F7 /* CCBTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBTextField.m; sourceTree = ""; }; + E334A4E5170D0020001604F7 /* debugger-bug.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "debugger-bug.png"; sourceTree = ""; }; + E335CAEA15751C0D00A612EE /* seq-ctrl-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-ctrl-bg.png"; sourceTree = ""; }; + E335CAF1157603C200A612EE /* SequencerHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerHandler.h; sourceTree = ""; }; + E335CAF2157603C200A612EE /* SequencerHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerHandler.m; sourceTree = ""; }; + E335CAF4157649F900A612EE /* SequencerExpandBtnCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerExpandBtnCell.h; sourceTree = ""; }; + E335CAF5157649F900A612EE /* SequencerExpandBtnCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerExpandBtnCell.m; sourceTree = ""; }; + E335CAF715764E6B00A612EE /* seq-btn-expand.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-expand.png"; sourceTree = ""; }; + E335CAF91576592600A612EE /* SequencerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerCell.h; sourceTree = ""; }; + E335CAFA1576592600A612EE /* SequencerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerCell.m; sourceTree = ""; }; + E335CAFC15765BB700A612EE /* seq-vseparator.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-vseparator.png"; sourceTree = ""; }; + E335CAFE1576702300A612EE /* MainWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainWindow.h; sourceTree = ""; }; + E335CAFF1576702300A612EE /* MainWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainWindow.m; sourceTree = ""; }; + E335CB011577838800A612EE /* SequencerOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerOutlineView.h; sourceTree = ""; }; + E335CB021577838800A612EE /* SequencerOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerOutlineView.m; sourceTree = ""; }; + E335CB041577995E00A612EE /* CCBSplitView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBSplitView.h; sourceTree = ""; }; + E335CB051577995F00A612EE /* CCBSplitView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBSplitView.m; sourceTree = ""; }; + E335CB081577C5FB00A612EE /* CCNode+NodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CCNode+NodeInfo.h"; sourceTree = ""; }; + E335CB091577C5FB00A612EE /* CCNode+NodeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CCNode+NodeInfo.m"; sourceTree = ""; }; + E335CB0B1577D64C00A612EE /* seq-btn-collapse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-collapse.png"; sourceTree = ""; }; + E335CB0D1578C2C600A612EE /* SequencerStructureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerStructureCell.h; sourceTree = ""; }; + E335CB0E1578C2C600A612EE /* SequencerStructureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerStructureCell.m; sourceTree = ""; }; + E33BC1B61510E4B6009AE29A /* NodeGraphPropertySetter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodeGraphPropertySetter.h; sourceTree = ""; }; + E33BC1B71510E4B6009AE29A /* NodeGraphPropertySetter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodeGraphPropertySetter.m; sourceTree = ""; }; + E33C2AAA15C987EB0043EF9B /* ResourceManagerOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManagerOutlineView.h; sourceTree = ""; }; + E33C2AAB15C987EB0043EF9B /* ResourceManagerOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManagerOutlineView.m; sourceTree = ""; }; + E33C2AAD15C9A0D40043EF9B /* SequencerUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerUtil.h; sourceTree = ""; }; + E33C2AAE15C9A0D40043EF9B /* SequencerUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerUtil.m; sourceTree = ""; }; + E33C2AB415CAE2580043EF9B /* SequencerStretchWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SequencerStretchWindow.xib; sourceTree = ""; }; + E33C2AB615CAE3950043EF9B /* SequencerStretchWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerStretchWindow.h; sourceTree = ""; }; + E33C2AB715CAE3960043EF9B /* SequencerStretchWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerStretchWindow.m; sourceTree = ""; }; + E33C2AB915CBF2580043EF9B /* seq-keyframe-hint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-hint.png"; sourceTree = ""; }; + E34039BC1624BF610067C7B8 /* CCBDocumentController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBDocumentController.h; sourceTree = ""; }; + E34039BD1624BF610067C7B8 /* CCBDocumentController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBDocumentController.m; sourceTree = ""; }; + E3462865155BF6C50043EAB1 /* ResourceManagerOutlineHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManagerOutlineHandler.h; sourceTree = ""; }; + E3462866155BF6C50043EAB1 /* ResourceManagerOutlineHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManagerOutlineHandler.m; sourceTree = ""; }; + E3462869155C18D80043EAB1 /* SavePanelLimiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SavePanelLimiter.h; sourceTree = ""; }; + E346286A155C18D80043EAB1 /* SavePanelLimiter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SavePanelLimiter.m; sourceTree = ""; }; + E346286E155D22290043EAB1 /* CCBPublisher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPublisher.h; sourceTree = ""; }; + E346286F155D22290043EAB1 /* CCBPublisher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPublisher.m; sourceTree = ""; }; + E3462871155D22FC0043EAB1 /* CCBWarnings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBWarnings.h; sourceTree = ""; }; + E3462872155D22FC0043EAB1 /* CCBWarnings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBWarnings.m; sourceTree = ""; }; + E34E5D6415357CF2000201FB /* RulersLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulersLayer.h; sourceTree = ""; }; + E34E5D6515357CF2000201FB /* RulersLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulersLayer.m; sourceTree = ""; }; + E34E5D68153585EC000201FB /* ruler-bg-horizontal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-bg-horizontal.png"; sourceTree = ""; }; + E34E5D69153585EC000201FB /* ruler-bg-vertical.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-bg-vertical.png"; sourceTree = ""; }; + E34E5D6C1535AA78000201FB /* ruler-mark-major.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-mark-major.png"; sourceTree = ""; }; + E34E5D6D1535AA78000201FB /* ruler-mark-minor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-mark-minor.png"; sourceTree = ""; }; + E34E5D701535B34F000201FB /* ruler-mark-origin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-mark-origin.png"; sourceTree = ""; }; + E34E5D721535BC5E000201FB /* ruler-numbers.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-numbers.png"; sourceTree = ""; }; + E3583FAF1756C228002DF0B0 /* ResourceManagerPreviewView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ResourceManagerPreviewView.xib; sourceTree = ""; }; + E35A135015B038D700C9AA15 /* ThoMoClientDelegateProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoClientDelegateProtocol.h; sourceTree = ""; }; + E35A135115B038D700C9AA15 /* ThoMoClientStub.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThoMoClientStub.m; sourceTree = ""; }; + E35A135215B038D700C9AA15 /* ThoMoClientStub_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoClientStub_private.h; sourceTree = ""; }; + E35A135315B038D700C9AA15 /* ThoMoClientStub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoClientStub.h; sourceTree = ""; }; + E35A135415B038D700C9AA15 /* ThoMoNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoNetworking.h; sourceTree = ""; }; + E35A135515B038D700C9AA15 /* ThoMoNetworkStub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoNetworkStub.h; sourceTree = ""; }; + E35A135615B038D700C9AA15 /* ThoMoNetworkStub.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThoMoNetworkStub.m; sourceTree = ""; }; + E35A135815B038D700C9AA15 /* ThoMoServerDelegateProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoServerDelegateProtocol.h; sourceTree = ""; }; + E35A135915B038D700C9AA15 /* ThoMoServerStub.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThoMoServerStub.m; sourceTree = ""; }; + E35A135A15B038D700C9AA15 /* ThoMoServerStub_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoServerStub_private.h; sourceTree = ""; }; + E35A135B15B038D700C9AA15 /* ThoMoServerStub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoServerStub.h; sourceTree = ""; }; + E35A135C15B038D700C9AA15 /* ThoMoTCPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoTCPConnection.h; sourceTree = ""; }; + E35A135D15B038D700C9AA15 /* ThoMoTCPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThoMoTCPConnection.m; sourceTree = ""; }; + E35A135E15B038D700C9AA15 /* ThoMoTCPConnectionDelegateProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThoMoTCPConnectionDelegateProtocol.h; sourceTree = ""; }; + E35A2D871540111A00F78B72 /* position-0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "position-0.png"; sourceTree = ""; }; + E35A2D881540111A00F78B72 /* position-1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "position-1.png"; sourceTree = ""; }; + E35A2D891540111A00F78B72 /* position-2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "position-2.png"; sourceTree = ""; }; + E35A2D8A1540111A00F78B72 /* position-3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "position-3.png"; sourceTree = ""; }; + E35A2D9A1540207000F78B72 /* PositionPropertySetter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PositionPropertySetter.h; sourceTree = ""; }; + E35A2D9B1540207000F78B72 /* PositionPropertySetter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PositionPropertySetter.m; sourceTree = ""; }; + E35D78D216826C0100A53BEF /* SpriteSheetSettingsWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpriteSheetSettingsWindow.h; sourceTree = ""; }; + E35D78D316826C0100A53BEF /* SpriteSheetSettingsWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SpriteSheetSettingsWindow.m; sourceTree = ""; }; + E35D78D416826C0100A53BEF /* SpriteSheetSettingsWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SpriteSheetSettingsWindow.xib; sourceTree = ""; }; + E35DBB8014F225D30070A6E4 /* CCNodeColor.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCNodeColor.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E35DBB8414F225D30070A6E4 /* CCLayerColor-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCLayerColor-Info.plist"; sourceTree = ""; }; + E35DBB8614F225D30070A6E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E35DBB8814F225D30070A6E4 /* CCLayerColor-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCLayerColor-Prefix.pch"; sourceTree = ""; }; + E35DBB8F14F226560070A6E4 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E35DBB9814F244BB0070A6E4 /* CCNodeGradient.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCNodeGradient.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E35DBB9C14F244BC0070A6E4 /* CCLayerGradient-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCLayerGradient-Info.plist"; sourceTree = ""; }; + E35DBB9E14F244BC0070A6E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E35DBBA014F244BC0070A6E4 /* CCLayerGradient-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCLayerGradient-Prefix.pch"; sourceTree = ""; }; + E35DBBA714F245490070A6E4 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E35DBBBE14F29E9D0070A6E4 /* InspectorFntFile.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFntFile.xib; sourceTree = ""; }; + E35DBBC014F29EF80070A6E4 /* InspectorFntFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFntFile.h; sourceTree = ""; }; + E35DBBC114F29EF80070A6E4 /* InspectorFntFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFntFile.m; sourceTree = ""; }; + E35DBBC314F2A2900070A6E4 /* InspectorText.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorText.xib; sourceTree = ""; }; + E35DBBC514F2A2A40070A6E4 /* InspectorText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorText.h; sourceTree = ""; }; + E35DBBC614F2A2A50070A6E4 /* InspectorText.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorText.m; sourceTree = ""; }; + E35DBBCC14F2AA350070A6E4 /* CCLabelBMFont.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCLabelBMFont.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E35DBBD014F2AA360070A6E4 /* CCLabelBMFont-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCLabelBMFont-Info.plist"; sourceTree = ""; }; + E35DBBD214F2AA360070A6E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E35DBBD414F2AA360070A6E4 /* CCLabelBMFont-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCLabelBMFont-Prefix.pch"; sourceTree = ""; }; + E35DBBDB14F2AB740070A6E4 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E35DBBDE14F3D1B60070A6E4 /* FontListTTF.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = FontListTTF.plist; sourceTree = ""; }; + E35DBBE014F3DCDE0070A6E4 /* InspectorFontTTF.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFontTTF.xib; sourceTree = ""; }; + E35DBBE214F3DD0A0070A6E4 /* InspectorFontTTF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFontTTF.h; sourceTree = ""; }; + E35DBBE314F3DD0A0070A6E4 /* InspectorFontTTF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFontTTF.m; sourceTree = ""; }; + E35DBBE914F3E2390070A6E4 /* CCLabelTTF.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCLabelTTF.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E35DBBED14F3E2390070A6E4 /* CCLabelTTF-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCLabelTTF-Info.plist"; sourceTree = ""; }; + E35DBBEF14F3E2390070A6E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E35DBBF114F3E2390070A6E4 /* CCLabelTTF-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCLabelTTF-Prefix.pch"; sourceTree = ""; }; + E35DBBF814F3E29E0070A6E4 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E35DBBFA14F3EE210070A6E4 /* InspectorFloat.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFloat.xib; sourceTree = ""; }; + E35DBBFC14F3EE400070A6E4 /* InspectorFloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFloat.h; sourceTree = ""; }; + E35DBBFD14F3EE400070A6E4 /* InspectorFloat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFloat.m; sourceTree = ""; }; + E35DBC0914F4D72B0070A6E4 /* CCParticleSystem.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCParticleSystem.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E35DBC0D14F4D72B0070A6E4 /* CCParticleSystem-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCParticleSystem-Info.plist"; sourceTree = ""; }; + E35DBC0F14F4D72B0070A6E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E35DBC1114F4D72B0070A6E4 /* CCParticleSystem-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCParticleSystem-Prefix.pch"; sourceTree = ""; }; + E35DBC1814F4D7D50070A6E4 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E35DBC1A14F4DED00070A6E4 /* InspectorStartStop.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorStartStop.xib; sourceTree = ""; }; + E35DBC1C14F4DF030070A6E4 /* InspectorStartStop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorStartStop.h; sourceTree = ""; }; + E35DBC1D14F4DF040070A6E4 /* InspectorStartStop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorStartStop.m; sourceTree = ""; }; + E35DBC1F14F4ED0D0070A6E4 /* InspectorIntegerLabeled.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorIntegerLabeled.xib; sourceTree = ""; }; + E35DBC2114F4ED960070A6E4 /* InspectorIntegerLabeled.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorIntegerLabeled.h; sourceTree = ""; }; + E35DBC2214F4ED970070A6E4 /* InspectorIntegerLabeled.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorIntegerLabeled.m; sourceTree = ""; }; + E35DBC2414F4FEF80070A6E4 /* InspectorTexture.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorTexture.xib; sourceTree = ""; }; + E35DBC2614F4FF3E0070A6E4 /* InspectorTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorTexture.h; sourceTree = ""; }; + E35DBC2714F4FF3F0070A6E4 /* InspectorTexture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorTexture.m; sourceTree = ""; }; + E360788F15EBA5420040A172 /* sel-frame.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sel-frame.png"; sourceTree = ""; }; + E36078BB15EE0B2C0040A172 /* sel-round.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sel-round.png"; sourceTree = ""; }; + E3618D5416655041009F5805 /* CCBPublisherTemplate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPublisherTemplate.h; sourceTree = ""; }; + E3618D5516655041009F5805 /* CCBPublisherTemplate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPublisherTemplate.m; sourceTree = ""; }; + E367E31C16384F0C00247F12 /* orientation-landscapeleft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "orientation-landscapeleft.png"; sourceTree = ""; }; + E367E31D16384F0C00247F12 /* orientation-landscaperight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "orientation-landscaperight.png"; sourceTree = ""; }; + E367E31F16384F0C00247F12 /* orientation-upsidedown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "orientation-upsidedown.png"; sourceTree = ""; }; + E367E32416384F3600247F12 /* orientation-portrait.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "orientation-portrait.png"; sourceTree = ""; }; + E36ECCE3158648EE003C177E /* SequencerNodeProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerNodeProperty.h; sourceTree = ""; }; + E36ECCE4158648EE003C177E /* SequencerNodeProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerNodeProperty.m; sourceTree = ""; }; + E36ECD0B15868F57003C177E /* SequencerKeyframe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerKeyframe.h; sourceTree = ""; }; + E36ECD0C15868F57003C177E /* SequencerKeyframe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerKeyframe.m; sourceTree = ""; }; + E36ECD6115869779003C177E /* seq-btn-back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-back.png"; sourceTree = ""; }; + E36ECD6215869779003C177E /* seq-keyframe-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-sel.png"; sourceTree = ""; }; + E36ECD6315869779003C177E /* seq-keyframe.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe.png"; sourceTree = ""; }; + E36F3C3B152C756D00AAD805 /* NSString+RelativePath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+RelativePath.h"; sourceTree = ""; }; + E36F3C3C152C756D00AAD805 /* NSString+RelativePath.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+RelativePath.m"; sourceTree = ""; }; + E370BA0A1549B2460048ED73 /* scale-0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "scale-0.png"; sourceTree = ""; }; + E370BA0B1549B2460048ED73 /* scale-1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "scale-1.png"; sourceTree = ""; }; + E3748302171F83A300486659 /* editor-jump.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "editor-jump.png"; sourceTree = ""; }; + E3799EAB155979BF00196B4A /* ProjectSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProjectSettings.h; sourceTree = ""; }; + E3799EAC155979BF00196B4A /* ProjectSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProjectSettings.m; sourceTree = ""; }; + E37FCAEC175D2704009F81D6 /* ui-cogs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ui-cogs.png"; sourceTree = ""; }; + E37FCAED175D2704009F81D6 /* ui-cogs@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ui-cogs@2x.png"; sourceTree = ""; }; + E37FCAF2175D68FF009F81D6 /* ResourceManagerPreviewView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManagerPreviewView.h; sourceTree = ""; }; + E37FCAF3175D68FF009F81D6 /* ResourceManagerPreviewView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManagerPreviewView.m; sourceTree = ""; }; + E37FCAF7175FF70F009F81D6 /* CCBImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBImageView.h; sourceTree = ""; }; + E37FCAF8175FF70F009F81D6 /* CCBImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBImageView.m; sourceTree = ""; }; + E3808DB31641C45B00398456 /* PublishSettingsWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PublishSettingsWindow.xib; sourceTree = ""; }; + E3808DB51641CB6300398456 /* PublishSettingsWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishSettingsWindow.h; sourceTree = ""; }; + E3808DB61641CB6400398456 /* PublishSettingsWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishSettingsWindow.m; sourceTree = ""; }; + E3808DB81641D4B800398456 /* CCBTextFieldLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBTextFieldLabel.h; sourceTree = ""; }; + E3808DB91641D4B800398456 /* CCBTextFieldLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBTextFieldLabel.m; sourceTree = ""; }; + E380B24C1642FC3C0006D31C /* pvrtc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pvrtc.h; path = Tupac/pvrtc.h; sourceTree = ""; }; + E380B24D1642FC3C0006D31C /* TexturePacker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TexturePacker.cpp; path = Tupac/TexturePacker.cpp; sourceTree = ""; }; + E380B24E1642FC3C0006D31C /* TexturePacker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TexturePacker.h; path = Tupac/TexturePacker.h; sourceTree = ""; }; + E380B24F1642FC3C0006D31C /* Tupac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Tupac.h; path = Tupac/Tupac.h; sourceTree = ""; }; + E380B2501642FC3C0006D31C /* Tupac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = Tupac.mm; path = Tupac/Tupac.mm; sourceTree = ""; }; + E3850807150AA9AE007E162A /* ImageAndTextCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageAndTextCell.h; sourceTree = ""; }; + E3850808150AA9AE007E162A /* ImageAndTextCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageAndTextCell.m; sourceTree = ""; }; + E385080A150AB232007E162A /* segmctrl-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "segmctrl-bg.png"; sourceTree = ""; }; + E385A41F14F69FF300DFB12D /* InspectorBlock.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorBlock.xib; sourceTree = ""; }; + E385A42114F6A01900DFB12D /* InspectorBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorBlock.h; sourceTree = ""; }; + E385A42214F6A01900DFB12D /* InspectorBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorBlock.m; sourceTree = ""; }; + E388FD18171F03C7002548ED /* editor-border.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "editor-border.png"; sourceTree = ""; }; + E38DAB21165AC18800EA24E4 /* reshandler-spritesheet-folder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "reshandler-spritesheet-folder.png"; sourceTree = ""; }; + E38F79351715FD8D00E299E4 /* editor-warning.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "editor-warning.png"; sourceTree = ""; }; + E390C77B170A2C9B003E9E92 /* AboutWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutWindow.h; sourceTree = ""; }; + E390C77C170A2C9B003E9E92 /* AboutWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutWindow.m; sourceTree = ""; }; + E390C77D170A2C9B003E9E92 /* AboutWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AboutWindow.xib; sourceTree = ""; }; + E390C780170A371E003E9E92 /* Generated */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Generated; path = ../../Generated; sourceTree = ""; }; + E39108041679365600391C3B /* MaxRectsBinPack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MaxRectsBinPack.cpp; sourceTree = ""; }; + E39108051679365600391C3B /* MaxRectsBinPack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MaxRectsBinPack.h; sourceTree = ""; }; + E39108061679365600391C3B /* Rect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Rect.cpp; sourceTree = ""; }; + E39108071679365600391C3B /* Rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Rect.h; sourceTree = ""; }; + E3926186159C69D20034FF1D /* SequencerKeyframeEasing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerKeyframeEasing.h; sourceTree = ""; }; + E3926187159C69D20034FF1D /* SequencerKeyframeEasing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerKeyframeEasing.m; sourceTree = ""; }; + E392618A159CAAA10034FF1D /* seq-keyframe-interpol-vis.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-interpol-vis.png"; sourceTree = ""; }; + E392618B159CAAA10034FF1D /* seq-keyframe-l-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-l-sel.png"; sourceTree = ""; }; + E392618C159CAAA10034FF1D /* seq-keyframe-l.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-l.png"; sourceTree = ""; }; + E392618D159CAAA10034FF1D /* seq-keyframe-r-sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-r-sel.png"; sourceTree = ""; }; + E392618E159CAAA10034FF1D /* seq-keyframe-r.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-r.png"; sourceTree = ""; }; + E395DC7D1511FDF70075979E /* CHANGELOG */ = {isa = PBXFileReference; lastKnownFileType = text; name = CHANGELOG; path = ../CHANGELOG; sourceTree = ""; }; + E398C02214FB81A30078E771 /* Cocos2D iPhone.ccbPlugExport */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Cocos2D iPhone.ccbPlugExport"; sourceTree = BUILT_PRODUCTS_DIR; }; + E398C02614FB81A30078E771 /* Cocos2D iPhone-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Cocos2D iPhone-Info.plist"; sourceTree = ""; }; + E398C02814FB81A30078E771 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E398C02A14FB81A30078E771 /* Cocos2D iPhone-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Cocos2D iPhone-Prefix.pch"; sourceTree = ""; }; + E398C03114FB86D20078E771 /* PlugInExport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlugInExport.h; sourceTree = ""; }; + E398C03214FB86D20078E771 /* PlugInExport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlugInExport.m; sourceTree = ""; }; + E398C03514FB8A430078E771 /* CCBX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBX.h; sourceTree = ""; }; + E398C03614FB8A430078E771 /* CCBX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBX.m; sourceTree = ""; }; + E398C03914FB8F850078E771 /* CCBXCocos2diPhone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBXCocos2diPhone.h; sourceTree = ""; }; + E398C03A14FB8F850078E771 /* CCBXCocos2diPhone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBXCocos2diPhone.m; sourceTree = ""; }; + E398C03F14FBC9CF0078E771 /* PublishTypeAccessoryView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PublishTypeAccessoryView.xib; sourceTree = ""; }; + E398C04114FBCA620078E771 /* PublishTypeAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishTypeAccessoryView.h; sourceTree = ""; }; + E398C04214FBCA620078E771 /* PublishTypeAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishTypeAccessoryView.m; sourceTree = ""; }; + E39B639E1587E56D009BDE38 /* seq-row-0-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-row-0-bg.png"; sourceTree = ""; }; + E39B639F1587E56D009BDE38 /* seq-row-1-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-row-1-bg.png"; sourceTree = ""; }; + E39B63A01587E56D009BDE38 /* seq-row-n-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-row-n-bg.png"; sourceTree = ""; }; + E39C917A174C134C00092BD1 /* toolbar-btn-add.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-btn-add.png"; sourceTree = ""; }; + E3A0ED51158FE3AB000BDF4B /* btn-dropdown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-dropdown.png"; sourceTree = ""; }; + E3A0ED54158FEAC0000BDF4B /* btn-dropdown-arrows.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "btn-dropdown-arrows.png"; sourceTree = ""; }; + E3A0ED56159118F3000BDF4B /* SequencerSettingsWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SequencerSettingsWindow.xib; sourceTree = ""; }; + E3A0ED58159119E7000BDF4B /* SequencerSettingsWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerSettingsWindow.h; sourceTree = ""; }; + E3A0ED59159119E7000BDF4B /* SequencerSettingsWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerSettingsWindow.m; sourceTree = ""; }; + E3A16AEF1536C885004B528A /* ruler-guide.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-guide.png"; sourceTree = ""; }; + E3A16AF11536D096004B528A /* GuidesLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GuidesLayer.h; sourceTree = ""; }; + E3A16AF21536D096004B528A /* GuidesLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GuidesLayer.m; sourceTree = ""; }; + E3A16AF41536D69A004B528A /* CCBPLabelTTF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPLabelTTF.h; sourceTree = ""; }; + E3A16AF51536D69A004B528A /* CCBPLabelTTF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPLabelTTF.m; sourceTree = ""; }; + E3A4747516D43B4300DB0D61 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; + E3A4747716D43B5800DB0D61 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; + E3A4747916D43BEA00DB0D61 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; }; + E3A4747B16D43BF300DB0D61 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; + E3AF6CD715F0A7E10048DB2A /* HelpWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HelpWindow.xib; sourceTree = ""; }; + E3AF6CD915F0A9BC0048DB2A /* HelpWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HelpWindow.h; sourceTree = ""; }; + E3AF6CDA15F0A9BC0048DB2A /* HelpWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HelpWindow.m; sourceTree = ""; }; + E3AF6CDD15F0CF8B0048DB2A /* libMMMarkdown-Mac.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libMMMarkdown-Mac.a"; path = "MMMarkdown/libMMMarkdown-Mac.a"; sourceTree = ""; }; + E3AF6CDE15F0CF8B0048DB2A /* MMMarkdown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MMMarkdown.h; path = MMMarkdown/MMMarkdown.h; sourceTree = ""; }; + E3AF6CE015F0CFAE0048DB2A /* Documentation */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Documentation; path = ../../Documentation; sourceTree = ""; }; + E3AF6CE215F0DBA90048DB2A /* HelpPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HelpPage.h; sourceTree = ""; }; + E3AF6CE315F0DBA90048DB2A /* HelpPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HelpPage.m; sourceTree = ""; }; + E3AF6CE515F0F5760048DB2A /* help-logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "help-logo.png"; sourceTree = ""; }; + E3B19F6A15E62ADA000B023E /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; }; + E3B19F6C15E65229000B023E /* DefaultResourcesList.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = DefaultResourcesList.plist; sourceTree = ""; }; + E3B4220F14E49DEB004547D6 /* InspectorInteger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorInteger.h; sourceTree = ""; }; + E3B4221014E49DEB004547D6 /* InspectorInteger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorInteger.m; sourceTree = ""; }; + E3B4221214E4A350004547D6 /* InspectorCheck.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorCheck.xib; sourceTree = ""; }; + E3B4221414E4A380004547D6 /* InspectorCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorCheck.h; sourceTree = ""; }; + E3B4221514E4A381004547D6 /* InspectorCheck.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorCheck.m; sourceTree = ""; }; + E3B4221714E4BE6B004547D6 /* InspectorSpriteFrame.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorSpriteFrame.xib; sourceTree = ""; }; + E3B4221914E4BE87004547D6 /* InspectorSpriteFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorSpriteFrame.h; sourceTree = ""; }; + E3B4221A14E4BE87004547D6 /* InspectorSpriteFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorSpriteFrame.m; sourceTree = ""; }; + E3B4221C14E58C35004547D6 /* InspectorByte.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorByte.xib; sourceTree = ""; }; + E3B4221E14E58C75004547D6 /* InspectorByte.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorByte.h; sourceTree = ""; }; + E3B4221F14E58C75004547D6 /* InspectorByte.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorByte.m; sourceTree = ""; }; + E3B4222114E58FEE004547D6 /* InspectorColor3.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorColor3.xib; sourceTree = ""; }; + E3B4222314E59034004547D6 /* InspectorColor3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorColor3.h; sourceTree = ""; }; + E3B4222414E59035004547D6 /* InspectorColor3.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorColor3.m; sourceTree = ""; }; + E3B4222614E5992F004547D6 /* InspectorFlip.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFlip.xib; sourceTree = ""; }; + E3B4222814E59F5C004547D6 /* InspectorFlip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFlip.h; sourceTree = ""; }; + E3B4222914E59F5C004547D6 /* InspectorFlip.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFlip.m; sourceTree = ""; }; + E3B4222B14E5A828004547D6 /* InspectorBlendmode.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorBlendmode.xib; sourceTree = ""; }; + E3B4222D14E5A848004547D6 /* InspectorBlendmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorBlendmode.h; sourceTree = ""; }; + E3B4222E14E5A849004547D6 /* InspectorBlendmode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorBlendmode.m; sourceTree = ""; }; + E3B4223014E5CF96004547D6 /* NodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodeInfo.h; sourceTree = ""; }; + E3B4223114E5CF97004547D6 /* NodeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodeInfo.m; sourceTree = ""; }; + E3B4223314E5E68A004547D6 /* InspectorSeparator.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorSeparator.xib; sourceTree = ""; }; + E3B4223514E5E6AC004547D6 /* InspectorSeparator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorSeparator.h; sourceTree = ""; }; + E3B4223614E5E6AC004547D6 /* InspectorSeparator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorSeparator.m; sourceTree = ""; }; + E3B5EE8616D6E0A900C07990 /* InspectorFloatXY.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFloatXY.h; sourceTree = ""; }; + E3B5EE8716D6E0A900C07990 /* InspectorFloatXY.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorFloatXY.m; sourceTree = ""; }; + E3B5EE8816D6E0AA00C07990 /* InspectorFloatXY.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorFloatXY.xib; sourceTree = ""; }; + E3B7AEC514E3193500DFD402 /* CCNode.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCNode.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E3B7AEC914E3193500DFD402 /* CCNode-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCNode-Info.plist"; sourceTree = ""; }; + E3B7AECB14E3193500DFD402 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E3B7AECD14E3193500DFD402 /* CCNode-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCNode-Prefix.pch"; sourceTree = ""; }; + E3B7AEDB14E3246100DFD402 /* PlugInManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlugInManager.h; sourceTree = ""; }; + E3B7AEDC14E3246100DFD402 /* PlugInManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlugInManager.m; sourceTree = ""; }; + E3B7AEDE14E32E7F00DFD402 /* PlugInNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlugInNode.h; sourceTree = ""; }; + E3B7AEDF14E32E7F00DFD402 /* PlugInNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlugInNode.m; sourceTree = ""; }; + E3B7AEE114E336C300DFD402 /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E3B7AEE814E33F4C00DFD402 /* InspectorPosition.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPosition.xib; sourceTree = ""; }; + E3B7AEEA14E342E200DFD402 /* InspectorPosition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorPosition.h; sourceTree = ""; }; + E3B7AEEB14E342E200DFD402 /* InspectorPosition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorPosition.m; sourceTree = ""; }; + E3B7AEED14E34A4D00DFD402 /* InspectorValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorValue.h; sourceTree = ""; }; + E3B7AEEE14E34A4D00DFD402 /* InspectorValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorValue.m; sourceTree = ""; }; + E3B7BC9B15E3B7F100CF95EF /* NodePlugInsList.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = NodePlugInsList.plist; sourceTree = ""; }; + E3B7BC9E15E3BCFE00CF95EF /* MainToolbarDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainToolbarDelegate.h; path = ccBuilder/MainToolbarDelegate.h; sourceTree = ""; }; + E3B7BC9F15E3BCFE00CF95EF /* MainToolbarDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainToolbarDelegate.m; path = ccBuilder/MainToolbarDelegate.m; sourceTree = ""; }; + E3B7BCA115E4166000CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCA315E4167900CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCA515E4168D00CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCA915E416BF00CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCAB15E416D200CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCAF15E4170400CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCB115E4171700CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCB915E4E14200CF95EF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + E3B7BCBD15E505CC00CF95EF /* TB_plugins.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_plugins.png; sourceTree = ""; }; + E3B9AF421538612200489438 /* ruler-xy.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ruler-xy.png"; sourceTree = ""; }; + E3B9AF49153C150D00489438 /* CCBTransparentWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBTransparentWindow.h; sourceTree = ""; }; + E3B9AF4A153C150D00489438 /* CCBTransparentWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBTransparentWindow.m; sourceTree = ""; }; + E3B9AF4C153C48E300489438 /* CCBTransparentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBTransparentView.h; sourceTree = ""; }; + E3B9AF4D153C48E300489438 /* CCBTransparentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBTransparentView.m; sourceTree = ""; }; + E3C12B19171DD386001EEDDB /* NSWindow+CCBAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSWindow+CCBAccessoryView.h"; sourceTree = ""; }; + E3C12B1A171DD386001EEDDB /* NSWindow+CCBAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSWindow+CCBAccessoryView.m"; sourceTree = ""; }; + E3C12B1E171E0DE7001EEDDB /* editor-check.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "editor-check.png"; sourceTree = ""; }; + E3C365EB14E9E4D1007CD5FF /* CCSprite.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCSprite.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E3C365EF14E9E4D1007CD5FF /* CCSprite-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCSprite-Info.plist"; sourceTree = ""; }; + E3C365F114E9E4D1007CD5FF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E3C365F314E9E4D1007CD5FF /* CCSprite-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCSprite-Prefix.pch"; sourceTree = ""; }; + E3C365F914E9E599007CD5FF /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E3C365FF14EA0507007CD5FF /* TexturePropertySetter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TexturePropertySetter.h; sourceTree = ""; }; + E3C3660014EA0507007CD5FF /* TexturePropertySetter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TexturePropertySetter.m; sourceTree = ""; }; + E3C3660214EB2C1B007CD5FF /* CCBReaderInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBReaderInternal.h; sourceTree = ""; }; + E3C3660314EB2C1B007CD5FF /* CCBReaderInternal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBReaderInternal.m; sourceTree = ""; }; + E3C5C1A21504D17E000CF6F3 /* ResourceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManager.h; sourceTree = ""; }; + E3C5C1A31504D17E000CF6F3 /* ResourceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManager.m; sourceTree = ""; }; + E3C5C1A61504D30C000CF6F3 /* SCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCConstants.h; sourceTree = ""; }; + E3C5C1A71504D30C000CF6F3 /* SCEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCEvent.h; sourceTree = ""; }; + E3C5C1A81504D30C000CF6F3 /* SCEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCEvent.m; sourceTree = ""; }; + E3C5C1A91504D30C000CF6F3 /* SCEventListenerProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCEventListenerProtocol.h; sourceTree = ""; }; + E3C5C1AA1504D30C000CF6F3 /* SCEvents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCEvents.h; sourceTree = ""; }; + E3C5C1AB1504D30C000CF6F3 /* SCEvents.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCEvents.m; sourceTree = ""; }; + E3C5C1B315075CDD000CF6F3 /* ResourceManagerUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManagerUtil.h; sourceTree = ""; }; + E3C5C1B415075CDD000CF6F3 /* ResourceManagerUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManagerUtil.m; sourceTree = ""; }; + E3C5C1C71508F35E000CF6F3 /* CCBAnimationParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBAnimationParser.h; sourceTree = ""; }; + E3C5C1C81508F35E000CF6F3 /* CCBAnimationParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBAnimationParser.m; sourceTree = ""; }; + E3C65105151A3B7C00D639C0 /* InspectorString.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorString.xib; sourceTree = ""; }; + E3C65108151A65ED00D639C0 /* InspectorString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorString.h; sourceTree = ""; }; + E3C65109151A65ED00D639C0 /* InspectorString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorString.m; sourceTree = ""; }; + E3C65127151C7B8F00D639C0 /* InspectorBlockCCControl.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorBlockCCControl.xib; sourceTree = ""; }; + E3C65129151C7E3600D639C0 /* InspectorBlockCCControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorBlockCCControl.h; sourceTree = ""; }; + E3C6512A151C7E3600D639C0 /* InspectorBlockCCControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorBlockCCControl.m; sourceTree = ""; }; + E3C9CCB7161D08B8008A3784 /* InspectorCodeConnectionsJS.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorCodeConnectionsJS.xib; sourceTree = ""; }; + E3C9CCB9161D0BBF008A3784 /* InspectorCodeConnectionsJS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorCodeConnectionsJS.h; sourceTree = ""; }; + E3C9CCBA161D0BBF008A3784 /* InspectorCodeConnectionsJS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorCodeConnectionsJS.m; sourceTree = ""; }; + E3D08A321524581100E55891 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = text; name = README.md; path = ../README.md; sourceTree = ""; }; + E3D59118150F50D1004180CA /* AUTHORS */ = {isa = PBXFileReference; lastKnownFileType = text; name = AUTHORS; path = ../AUTHORS; sourceTree = ""; }; + E3D59119150F50D1004180CA /* LICENSE_CocosBuilder.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = LICENSE_CocosBuilder.txt; path = ../LICENSE_CocosBuilder.txt; sourceTree = ""; }; + E3D5911A150F50D1004180CA /* LICENSE_PSMTabBarControl.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = LICENSE_PSMTabBarControl.txt; path = ../LICENSE_PSMTabBarControl.txt; sourceTree = ""; }; + E3D5911B150F50D1004180CA /* LICENSE_SCEvents.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = LICENSE_SCEvents.txt; path = ../LICENSE_SCEvents.txt; sourceTree = ""; }; + E3D5911C150F50D1004180CA /* LICENSE_Sparkle.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = LICENSE_Sparkle.txt; path = ../LICENSE_Sparkle.txt; sourceTree = ""; }; + E3D59121150F5367004180CA /* CCBFile.ccbPlugNode */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CCBFile.ccbPlugNode; sourceTree = BUILT_PRODUCTS_DIR; }; + E3D59125150F5367004180CA /* CCBFile-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CCBFile-Info.plist"; sourceTree = ""; }; + E3D59127150F5367004180CA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E3D59129150F5367004180CA /* CCBFile-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CCBFile-Prefix.pch"; sourceTree = ""; }; + E3D59130150F5676004180CA /* CCBPProperties.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = CCBPProperties.plist; sourceTree = ""; }; + E3D59132150F85D8004180CA /* InspectorCCBFile.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorCCBFile.xib; sourceTree = ""; }; + E3D59134150F861E004180CA /* InspectorCCBFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorCCBFile.h; sourceTree = ""; }; + E3D59135150F861E004180CA /* InspectorCCBFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorCCBFile.m; sourceTree = ""; }; + E3D59137150F8C5A004180CA /* CCBPCCBFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBPCCBFile.h; sourceTree = ""; }; + E3D59138150F8C5A004180CA /* CCBPCCBFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBPCCBFile.m; sourceTree = ""; }; + E3D6BA1C16C46E11006AFE0A /* SequencerSoundChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerSoundChannel.h; sourceTree = ""; }; + E3D6BA1D16C46E11006AFE0A /* SequencerSoundChannel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerSoundChannel.m; sourceTree = ""; }; + E3D6BA2116C46E41006AFE0A /* SequencerCallbackChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerCallbackChannel.h; sourceTree = ""; }; + E3D6BA2216C46E41006AFE0A /* SequencerCallbackChannel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerCallbackChannel.m; sourceTree = ""; }; + E3D6BA2416C46E91006AFE0A /* SequencerChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerChannel.h; sourceTree = ""; }; + E3D6BA2516C46E91006AFE0A /* SequencerChannel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerChannel.m; sourceTree = ""; }; + E3D839DA171356EC004F6127 /* pngquant */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = pngquant; sourceTree = ""; }; + E3D839DB171356EC004F6127 /* pngquant-COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "pngquant-COPYING"; sourceTree = ""; }; + E3DA6FEC16CAEC7800B12FFB /* SequencerPopoverHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerPopoverHandler.h; sourceTree = ""; }; + E3DA6FED16CAEC7800B12FFB /* SequencerPopoverHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerPopoverHandler.m; sourceTree = ""; }; + E3DA6FF116CAF7D400B12FFB /* SequencerPopoverView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SequencerPopoverView.xib; sourceTree = ""; }; + E3DA6FF316CB293000B12FFB /* InspectorPopoverPosition.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverPosition.xib; sourceTree = ""; }; + E3DA6FF516CB2AC000B12FFB /* InspectorPopoverScaleLock.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverScaleLock.xib; sourceTree = ""; }; + E3DA6FF716CB2B2900B12FFB /* InspectorPopoverDegrees.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverDegrees.xib; sourceTree = ""; }; + E3DA6FF916CB2B8700B12FFB /* InspectorPopoverSpriteFrame.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverSpriteFrame.xib; sourceTree = ""; }; + E3DA6FFB16CB2BEB00B12FFB /* InspectorPopoverByte.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverByte.xib; sourceTree = ""; }; + E3DA6FFD16CB2C3C00B12FFB /* InspectorPopoverColor3.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPopoverColor3.xib; sourceTree = ""; }; + E3DCFD9B15629FC700BD7D7F /* TaskStatusWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TaskStatusWindow.xib; sourceTree = ""; }; + E3DCFD9D1562A3AD00BD7D7F /* TaskStatusWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskStatusWindow.h; sourceTree = ""; }; + E3DCFD9E1562A3AD00BD7D7F /* TaskStatusWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaskStatusWindow.m; sourceTree = ""; }; + E3DEF5B6169B359C00B9DCF4 /* lame */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = lame; sourceTree = ""; }; + E3DEF5B8169B35DF00B9DCF4 /* lame-COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "lame-COPYING"; sourceTree = ""; }; + E3DFA7CA15ACA0CD005D3B6F /* frame-android-medium.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "frame-android-medium.png"; sourceTree = ""; }; + E3DFA7CB15ACA0CD005D3B6F /* frame-android-small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "frame-android-small.png"; sourceTree = ""; }; + E3DFA7CC15ACA0CD005D3B6F /* frame-android-xsmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "frame-android-xsmall.png"; sourceTree = ""; }; + E3DFE830160226760068CB50 /* frame-iphone5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "frame-iphone5.png"; sourceTree = ""; }; + E3E05576159B2322001066C5 /* NSString+AppendToFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+AppendToFile.h"; sourceTree = ""; }; + E3E05577159B2322001066C5 /* NSString+AppendToFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+AppendToFile.m"; sourceTree = ""; }; + E3E0557A159B8466001066C5 /* seq-keyframe-easein.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-easein.png"; sourceTree = ""; }; + E3E0557B159B8466001066C5 /* seq-keyframe-easeout.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-easeout.png"; sourceTree = ""; }; + E3E0557C159B8466001066C5 /* seq-keyframe-interpol.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-keyframe-interpol.png"; sourceTree = ""; }; + E3E0876515669080008F1FDB /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E3E0878C15669F48008F1FDB /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; + E3E0878F15669FA2008F1FDB /* libffi.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libffi.dylib; path = usr/lib/libffi.dylib; sourceTree = SDKROOT; }; + E3E2704615B18CF500287470 /* TB_play.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_play.png; sourceTree = ""; }; + E3E2704715B18CF500287470 /* TB_stop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_stop.png; sourceTree = ""; }; + E3E2704A15B1904300287470 /* toolbar-bottom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-bottom.png"; sourceTree = ""; }; + E3E8B4851578F8F800373983 /* SequencerTimelineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerTimelineView.h; sourceTree = ""; }; + E3E8B4861578F8F800373983 /* SequencerTimelineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerTimelineView.m; sourceTree = ""; }; + E3E8B4891578FEB100373983 /* seq-tl-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-tl-bg.png"; sourceTree = ""; }; + E3E8B48B15791FFB00373983 /* seq-tl-mark-major.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-tl-mark-major.png"; sourceTree = ""; }; + E3E8B48C15791FFB00373983 /* seq-tl-mark-minor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-tl-mark-minor.png"; sourceTree = ""; }; + E3E8B48D15791FFB00373983 /* seq-tl-mark-origin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-tl-mark-origin.png"; sourceTree = ""; }; + E3E8B4911579326A00373983 /* seq-timedisplay-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-timedisplay-bg.png"; sourceTree = ""; }; + E3E8B49315793AF800373983 /* seq-btn-play.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-play.png"; sourceTree = ""; }; + E3E8B49415793AF800373983 /* seq-btn-restart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-restart.png"; sourceTree = ""; }; + E3E8B49515793AF800373983 /* seq-btn-run.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-run.png"; sourceTree = ""; }; + E3E8B49615793AF800373983 /* seq-btn-stepback.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-stepback.png"; sourceTree = ""; }; + E3E8B49715793AF800373983 /* seq-btn-stepforward.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-stepforward.png"; sourceTree = ""; }; + E3E8B49815793AF800373983 /* seq-btn-stop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-btn-stop.png"; sourceTree = ""; }; + E3E8B49F157CC57E00373983 /* SequencerScrubberSelectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerScrubberSelectionView.h; sourceTree = ""; }; + E3E8B4A0157CC57E00373983 /* SequencerScrubberSelectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerScrubberSelectionView.m; sourceTree = ""; }; + E3E8B4A2157CD5DB00373983 /* seq-scrub-handle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-scrub-handle.png"; sourceTree = ""; }; + E3E8B4A3157CD5DB00373983 /* seq-scrub-line.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-scrub-line.png"; sourceTree = ""; }; + E3E8B4A6157CD67000373983 /* SequencerSequence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerSequence.h; sourceTree = ""; }; + E3E8B4A7157CD67000373983 /* SequencerSequence.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerSequence.m; sourceTree = ""; }; + E3E8B4A9157D127300373983 /* seq-scaleslide-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-scaleslide-bg.png"; sourceTree = ""; }; + E3E8D64416B3129700742107 /* oggenc */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = oggenc; sourceTree = ""; }; + E3EDBC0E1546D23000EEF1F3 /* ResolutionSetting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResolutionSetting.h; sourceTree = ""; }; + E3EDBC0F1546D23000EEF1F3 /* ResolutionSetting.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResolutionSetting.m; sourceTree = ""; }; + E3EDBC1215483E3200EEF1F3 /* ResolutionSettingsWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResolutionSettingsWindow.h; sourceTree = ""; }; + E3EDBC1315483E3200EEF1F3 /* ResolutionSettingsWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResolutionSettingsWindow.m; sourceTree = ""; }; + E3EDBC1515483EE000EEF1F3 /* ResolutionSettingsWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ResolutionSettingsWindow.xib; sourceTree = ""; }; + E3EDBC231549971000EEF1F3 /* CCBFileUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBFileUtil.h; sourceTree = ""; }; + E3EDBC241549971000EEF1F3 /* CCBFileUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBFileUtil.m; sourceTree = ""; }; + E3F2C21114FC157E007B660D /* CCBXCocos2diPhoneWriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBXCocos2diPhoneWriter.h; sourceTree = ""; }; + E3F2C21214FC157E007B660D /* CCBXCocos2diPhoneWriter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBXCocos2diPhoneWriter.m; sourceTree = ""; }; + E3F3F83D153C72A3005443EE /* NotesLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotesLayer.h; sourceTree = ""; }; + E3F3F83E153C72A3005443EE /* NotesLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotesLayer.m; sourceTree = ""; }; + E3F3F841153C7700005443EE /* StickyNote.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StickyNote.h; sourceTree = ""; }; + E3F3F842153C7700005443EE /* StickyNote.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StickyNote.m; sourceTree = ""; }; + E3F3F844153C7772005443EE /* notes-bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "notes-bg.png"; sourceTree = ""; }; + E3F3F846153D9126005443EE /* StickyNoteEditView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StickyNoteEditView.xib; sourceTree = ""; }; + E3F3F848153DB893005443EE /* notes-close.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "notes-close.png"; sourceTree = ""; }; + E3F3F84A153DBA43005443EE /* notes-close-down.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "notes-close-down.png"; sourceTree = ""; }; + E3F4087316A9EEC5009A0253 /* ccz */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = ccz; sourceTree = ""; }; + E3F73DB41593908A00D74084 /* SequencerDurationWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerDurationWindow.h; sourceTree = ""; }; + E3F73DB51593908A00D74084 /* SequencerDurationWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerDurationWindow.m; sourceTree = ""; }; + E3F73DB71593916E00D74084 /* SequencerDurationWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SequencerDurationWindow.xib; sourceTree = ""; }; + E3FD4DCE15A09F6D0032C2DD /* SequencerKeyframeEasingWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SequencerKeyframeEasingWindow.xib; sourceTree = ""; }; + E3FD4DD115A0A2C10032C2DD /* SequencerKeyframeEasingWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerKeyframeEasingWindow.h; sourceTree = ""; }; + E3FD4DD215A0A2C10032C2DD /* SequencerKeyframeEasingWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerKeyframeEasingWindow.m; sourceTree = ""; }; + E3FD4DDA15A301EF0032C2DD /* seq-next-seq.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seq-next-seq.png"; sourceTree = ""; }; + E3FD4DDD15A455B90032C2DD /* SequencerSequenceArrayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SequencerSequenceArrayController.h; sourceTree = ""; }; + E3FD4DDE15A455B90032C2DD /* SequencerSequenceArrayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SequencerSequenceArrayController.m; sourceTree = ""; }; + E3FEA8A614E45EEF00119FBE /* InspectorSize.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorSize.xib; sourceTree = ""; }; + E3FEA8A814E45F1000119FBE /* InspectorSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorSize.h; sourceTree = ""; }; + E3FEA8A914E45F1000119FBE /* InspectorSize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorSize.m; sourceTree = ""; }; + E3FEA8AB14E47C5700119FBE /* InspectorPoint.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPoint.xib; sourceTree = ""; }; + E3FEA8AD14E47C7500119FBE /* InspectorPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorPoint.h; sourceTree = ""; }; + E3FEA8AE14E47C7500119FBE /* InspectorPoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorPoint.m; sourceTree = ""; }; + E3FEA8B014E4872D00119FBE /* InspectorPointLock.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorPointLock.xib; sourceTree = ""; }; + E3FEA8B214E4874C00119FBE /* InspectorPointLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorPointLock.h; sourceTree = ""; }; + E3FEA8B314E4874C00119FBE /* InspectorPointLock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorPointLock.m; sourceTree = ""; }; + E3FEA8B514E4929300119FBE /* InspectorScaleLock.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorScaleLock.xib; sourceTree = ""; }; + E3FEA8B714E492D900119FBE /* InspectorScaleLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorScaleLock.h; sourceTree = ""; }; + E3FEA8B814E492D900119FBE /* InspectorScaleLock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorScaleLock.m; sourceTree = ""; }; + E3FEA8BA14E4989900119FBE /* InspectorDegrees.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorDegrees.xib; sourceTree = ""; }; + E3FEA8BC14E498B600119FBE /* InspectorDegrees.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorDegrees.h; sourceTree = ""; }; + E3FEA8BD14E498B700119FBE /* InspectorDegrees.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectorDegrees.m; sourceTree = ""; }; + E3FEA8BF14E49D8300119FBE /* InspectorInteger.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InspectorInteger.xib; sourceTree = ""; }; + E525F08B2DA5BA93DA1BCA35 /* PublishSpriteSheetOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishSpriteSheetOperation.m; sourceTree = ""; }; + E525F0A6B228717C246675C0 /* PublishLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishLogging.h; sourceTree = ""; }; + E525F0ED6F868B09686F38DF /* PublishRegularFileOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishRegularFileOperation.h; sourceTree = ""; }; + E525F31A72346871646C218C /* ProjectSettings+Convenience.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ProjectSettings+Convenience.h"; sourceTree = ""; }; + E525F31D5A311C0DBE9C1CD6 /* PublishCCBOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishCCBOperation.h; sourceTree = ""; }; + E525F56FE00E54E100F524F1 /* PublishSpriteKitSpriteSheetOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishSpriteKitSpriteSheetOperation.m; sourceTree = ""; }; + E525F6D55650A58DC2F3698B /* AnimationPlaybackManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimationPlaybackManager.m; sourceTree = ""; }; + E525F6FADF087E6FE3765DC9 /* PublishingTaskStatusProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishingTaskStatusProgress.m; sourceTree = ""; }; + E525F6FD3B484B1762858AEB /* PublishSoundFileOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishSoundFileOperation.m; sourceTree = ""; }; + E525F74ADF149FB8398AE965 /* NSString+Publishing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Publishing.m"; sourceTree = ""; }; + E525F7EE37BDD5941E6C0AC9 /* PublishRenamedFilesLookup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishRenamedFilesLookup.m; sourceTree = ""; }; + E525F7FDEB6E06727F3674DC /* OptimizeImageWithOptiPNGOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OptimizeImageWithOptiPNGOperation.h; sourceTree = ""; }; + E525F827AA0BCCAE1BF601C2 /* PublishBaseOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishBaseOperation.m; sourceTree = ""; }; + E525F85AE82110FF3A50E129 /* PublishGeneratedFilesOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishGeneratedFilesOperation.h; sourceTree = ""; }; + E525F876D70C7C45655B870F /* PublishingTaskStatusProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishingTaskStatusProgress.h; sourceTree = ""; }; + E525F8924029BDE31AAE8FA2 /* PublishSoundFileOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishSoundFileOperation.h; sourceTree = ""; }; + E525F8A438244586206C9177 /* PublishCCBOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishCCBOperation.m; sourceTree = ""; }; + E525F8D13D187525150C6EA7 /* OptimizeImageWithOptiPNGOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OptimizeImageWithOptiPNGOperation.m; sourceTree = ""; }; + E525F9495AD93524CF0F48F9 /* PublishImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishImageOperation.h; sourceTree = ""; }; + E525F954D224CDAB615AC157 /* PublishSpriteKitSpriteSheetOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishSpriteKitSpriteSheetOperation.h; sourceTree = ""; }; + E525F9A9F017343391589C8B /* PublishRenamedFilesLookup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishRenamedFilesLookup.h; sourceTree = ""; }; + E525F9BDAEF872AB23D84977 /* TaskStatusUpdaterProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskStatusUpdaterProtocol.h; sourceTree = ""; }; + E525F9BF09923348CFBEFC6C /* PublishGeneratedFilesOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishGeneratedFilesOperation.m; sourceTree = ""; }; + E525FB10982384F8E0C0E079 /* PublishSpriteSheetOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishSpriteSheetOperation.h; sourceTree = ""; }; + E525FC7FEB1B9D2A5F7FFEA5 /* PublishImageOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishImageOperation.m; sourceTree = ""; }; + E525FCC7B2A33EFBD178B87D /* NSString+Publishing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Publishing.h"; sourceTree = ""; }; + E525FCD604B9708D96E9EE11 /* ProjectSettings+Convenience.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ProjectSettings+Convenience.m"; sourceTree = ""; }; + E525FD2D849749BB67455943 /* DateCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateCache.m; sourceTree = ""; }; + E525FD7A50FBA15D21819682 /* PublishBaseOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishBaseOperation.h; sourceTree = ""; }; + E525FDB29C5EE936AB40BE96 /* DateCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateCache.h; sourceTree = ""; }; + E525FEFB9DD4C68B41FF4F1F /* ruler-numbers.fnt */ = {isa = PBXFileReference; lastKnownFileType = file.fnt; path = "ruler-numbers.fnt"; sourceTree = ""; }; + E525FF2CEC6DF0EB5FFCA742 /* PublishRegularFileOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishRegularFileOperation.m; sourceTree = ""; }; + E525FFA89CA744B94C708834 /* AnimationPlaybackManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationPlaybackManager.h; sourceTree = ""; }; + FA98CFC1154E7D1C006E58C5 /* ccbpublish */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ccbpublish; sourceTree = BUILT_PRODUCTS_DIR; }; + FA98CFC3154E7D1C006E58C5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + FA98CFC6154E7D1C006E58C5 /* ccbpublish.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ccbpublish.m; sourceTree = ""; }; + FA98CFC9154E7D1C006E58C5 /* ccbpublish-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ccbpublish-Prefix.pch"; sourceTree = ""; }; + FA98CFDA154E8D16006E58C5 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 7789ABBB133AA82000CEFCC7 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + D35E589E18E391DA008571EC /* GLKit.framework in Frameworks */, + 80AD79A21863878B00B653B7 /* libPVRTexLib.a in Frameworks */, + B7E1EFDD185F8D3D00C9E6E0 /* WebKit.framework in Frameworks */, + 8098525A182C40170054BBF3 /* CoreMedia.framework in Frameworks */, + B7D0918A17C2C17D0007FE7F /* libcocos2d.a in Frameworks */, + 835DB0CB17156421003A2F7B /* Security.framework in Frameworks */, + E3A4747C16D43BF300DB0D61 /* AVFoundation.framework in Frameworks */, + E3A4747A16D43BEA00DB0D61 /* OpenAL.framework in Frameworks */, + E3A4747816D43B5800DB0D61 /* AudioToolbox.framework in Frameworks */, + E3B19F6B15E62ADA000B023E /* Carbon.framework in Frameworks */, + B72D1DEB186393AE0091252F /* HockeySDK.framework in Frameworks */, + E3E0879015669FA2008F1FDB /* libffi.dylib in Frameworks */, + E3E0878E15669F58008F1FDB /* JavaScriptCore.framework in Frameworks */, + 776A37161395925D00960E94 /* Quartz.framework in Frameworks */, + 77D33E95138E714700012A88 /* ExceptionHandling.framework in Frameworks */, + 7789ABEE133AB12F00CEFCC7 /* libz.dylib in Frameworks */, + 7789ABEC133AB12000CEFCC7 /* OpenGL.framework in Frameworks */, + 7789ABEA133AB10E00CEFCC7 /* QuartzCore.framework in Frameworks */, + 7789ABE8133AB10500CEFCC7 /* ApplicationServices.framework in Frameworks */, + 7789ABC3133AA82000CEFCC7 /* Cocoa.framework in Frameworks */, + E3AF6CDF15F0CF8B0048DB2A /* libMMMarkdown-Mac.a in Frameworks */, + 7BCC1C0D194904190062DF38 /* StoreKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 833A5C47192B48CA001837B3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 833A5C4C192B48CB001837B3 /* XCTest.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92154AD218A5560B00BD215C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 92154AD318A5560B00BD215C /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 926D13DA18B57B9500582959 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 926D13DB18B57B9500582959 /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92B7900418C808B7007DF895 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 92B7900518C808B7007DF895 /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B729AC4F181F091800BA0D9C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B729AC53181F091800BA0D9C /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B73788D61804AC5D0076A88C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B73788DA1804AC5E0076A88C /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B79F90D517FF30DB00908504 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B79F90D917FF30DC00908504 /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C3531F17F65547005697C1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B7C3532317F65547005697C1 /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C623AE17F383CE00928F91 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B7C623B317F383CE00928F91 /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C623CA17F38B7800928F91 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B7C623CE17F38B7800928F91 /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7EE699218188E0800B983FE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B7EE699618188E0900B983FE /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7EE69F51819EE0D00B983FE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B7EE69F91819EE0D00B983FE /* CoreFoundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC05E77A18D0ACCB00592A1E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DC05E77B18D0ACCB00592A1E /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC05E78718D0ACE000592A1E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DC05E78818D0ACE000592A1E /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC5129C01891450D0091873D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DC5129C11891450D0091873D /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC6802FF1891466C0060BE39 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DC6803001891466C0060BE39 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC680320189156310060BE39 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DC680321189156310060BE39 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCB9F14F1890600D00128D78 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DCB9F1501890600D00128D78 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCFB063618E32B7500DF02A0 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DCFB063718E32B7500DF02A0 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBB7D14F225D30070A6E4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBB8114F225D30070A6E4 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBB9514F244BB0070A6E4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBB9914F244BC0070A6E4 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBBC914F2AA350070A6E4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBBCD14F2AA360070A6E4 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBBE614F3E2390070A6E4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBBEA14F3E2390070A6E4 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBC0614F4D72B0070A6E4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBC0A14F4D72B0070A6E4 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E398C01F14FB81A30078E771 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + D2E0168518D783C900927430 /* AppleScriptKit.framework in Frameworks */, + E398C02314FB81A30078E771 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3B7AEC214E3193500DFD402 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E3B7AEC614E3193500DFD402 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3C365E814E9E4D1007CD5FF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E3C365EC14E9E4D1007CD5FF /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3D5911E150F5367004180CA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E3D59122150F5367004180CA /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA98CFBE154E7D1C006E58C5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA98CFDB154E8D16006E58C5 /* CoreServices.framework in Frameworks */, + FA98CFC4154E7D1C006E58C5 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 776041E01498F4A00078095D /* Document Readers & Writers */ = { + isa = PBXGroup; + children = ( + 772BE58C134BB6BD0009B5B9 /* CCBDocument.h */, + 772BE58D134BB6BE0009B5B9 /* CCBDocument.m */, + 772BE57E1343A6ED0009B5B9 /* CCBWriterInternal.h */, + 772BE57F1343A6EE0009B5B9 /* CCBWriterInternal.m */, + 772BE592134BC2B90009B5B9 /* CCBReaderInternalV1.h */, + 772BE593134BC2BA0009B5B9 /* CCBReaderInternalV1.m */, + E3C3660214EB2C1B007CD5FF /* CCBReaderInternal.h */, + E3C3660314EB2C1B007CD5FF /* CCBReaderInternal.m */, + E312EDC516AF71FE000778C8 /* CCBReaderInternalRenamedProps.plist */, + B77EC96418087011004C09FF /* CCBProjCreator.h */, + B77EC96518087011004C09FF /* CCBProjCreator.m */, + ); + name = "Document Readers & Writers"; + sourceTree = ""; + }; + 776041E11498F56D0078095D /* Application Settings & Globals */ = { + isa = PBXGroup; + children = ( + 772BE570133E48340009B5B9 /* CCBGlobals.h */, + 772BE571133E48340009B5B9 /* CCBGlobals.m */, + E3EDBC0E1546D23000EEF1F3 /* ResolutionSetting.h */, + E3EDBC0F1546D23000EEF1F3 /* ResolutionSetting.m */, + E3799EAB155979BF00196B4A /* ProjectSettings.h */, + E3799EAC155979BF00196B4A /* ProjectSettings.m */, + E3808DB31641C45B00398456 /* PublishSettingsWindow.xib */, + E3808DB51641CB6300398456 /* PublishSettingsWindow.h */, + E3808DB61641CB6400398456 /* PublishSettingsWindow.m */, + E34039BC1624BF610067C7B8 /* CCBDocumentController.h */, + E34039BD1624BF610067C7B8 /* CCBDocumentController.m */, + 9249983018B7E1F500DE9ADA /* SceneGraph.h */, + 9249983118B7E1F500DE9ADA /* SceneGraph.m */, + E525F31A72346871646C218C /* ProjectSettings+Convenience.h */, + E525FCD604B9708D96E9EE11 /* ProjectSettings+Convenience.m */, + ); + name = "Application Settings & Globals"; + sourceTree = ""; + }; + 776041E21498F5A70078095D /* Util */ = { + isa = PBXGroup; + children = ( + 4D0C1E7718F49A3700B028CA /* CCNode+PositionExtentions.h */, + 4D0C1E7818F49A3700B028CA /* CCNode+PositionExtentions.m */, + 921EEB2218ADB7EA00D864C2 /* GeometryUtil.h */, + 921EEB2318ADB7EA00D864C2 /* GeometryUtil.m */, + E3E05576159B2322001066C5 /* NSString+AppendToFile.h */, + E3E05577159B2322001066C5 /* NSString+AppendToFile.m */, + 772BE563133C06320009B5B9 /* NSFlippedView.h */, + 772BE564133C06320009B5B9 /* NSFlippedView.m */, + 77156DAF137F0351005EF746 /* CCBSpriteSheetParser.h */, + 77156DB0137F0351005EF746 /* CCBSpriteSheetParser.m */, + E3C5C1C71508F35E000CF6F3 /* CCBAnimationParser.h */, + E3C5C1C81508F35E000CF6F3 /* CCBAnimationParser.m */, + 77D33EA9138EA4F800012A88 /* CCBUtil.h */, + 77D33EAA138EA4F800012A88 /* CCBUtil.m */, + E3C365FF14EA0507007CD5FF /* TexturePropertySetter.h */, + E3C3660014EA0507007CD5FF /* TexturePropertySetter.m */, + E33BC1B61510E4B6009AE29A /* NodeGraphPropertySetter.h */, + E33BC1B71510E4B6009AE29A /* NodeGraphPropertySetter.m */, + E35A2D9A1540207000F78B72 /* PositionPropertySetter.h */, + E35A2D9B1540207000F78B72 /* PositionPropertySetter.m */, + E3EDBC231549971000EEF1F3 /* CCBFileUtil.h */, + E3EDBC241549971000EEF1F3 /* CCBFileUtil.m */, + E3462869155C18D80043EAB1 /* SavePanelLimiter.h */, + E346286A155C18D80043EAB1 /* SavePanelLimiter.m */, + B78DA3671773EA0E00B85CC0 /* NSPasteboard+CCB.h */, + B78DA3681773EA0E00B85CC0 /* NSPasteboard+CCB.m */, + B7083E0817B567E5006628C7 /* StringPropertySetter.h */, + B7083E0917B567E5006628C7 /* StringPropertySetter.m */, + B75CB489184D31270036259F /* UsageManager.h */, + B75CB48A184D31270036259F /* UsageManager.m */, + 9297AC2E18A43BCA003C3705 /* NSArray+Query.h */, + 9297AC2F18A43BCA003C3705 /* NSArray+Query.m */, + 926D139318B2DC2E00582959 /* NSDictionary+Query.h */, + 926D139418B2DC2E00582959 /* NSDictionary+Query.m */, + E525F74ADF149FB8398AE965 /* NSString+Publishing.m */, + E525FCC7B2A33EFBD178B87D /* NSString+Publishing.h */, + ); + name = Util; + sourceTree = ""; + }; + 776041E31498F5E80078095D /* AppDelegate & Cocos2D Scene */ = { + isa = PBXGroup; + children = ( + 7789ACE8133AB47A00CEFCC7 /* CocosScene.h */, + 7789ACE9133AB47A00CEFCC7 /* CocosScene.m */, + 7789ABD4133AA82000CEFCC7 /* AppDelegate.h */, + 7789ABD5133AA82000CEFCC7 /* AppDelegate.m */, + 776A37B41398D6B900960E94 /* CCBGLView.h */, + 776A37B51398D6BD00960E94 /* CCBGLView.m */, + 7789ABD7133AA82000CEFCC7 /* MainMenu.xib */, + E335CAFE1576702300A612EE /* MainWindow.h */, + E335CAFF1576702300A612EE /* MainWindow.m */, + ); + name = "AppDelegate & Cocos2D Scene"; + sourceTree = ""; + }; + 776041E41498F6AF0078095D /* Images */ = { + isa = PBXGroup; + children = ( + B7F02D4517D12D9E008A2E2D /* About Box */, + 776041F01498FD630078095D /* GUI */, + 776041EF1498FCE50078095D /* Stage Assets */, + 776041E61498F7980078095D /* Icons & Logos */, + 776041E51498F6BC0078095D /* Toolbar */, + 776041F11498FD940078095D /* Cocos2D */, + ); + name = Images; + sourceTree = ""; + }; + 776041E51498F6BC0078095D /* Toolbar */ = { + isa = PBXGroup; + children = ( + B732A1821799736500333C56 /* TB_build.png */, + B732A1831799736500333C56 /* TB_build@2x.png */, + 58FA2031162D73F3006B8856 /* TB_bottomPanel.png */, + 58FA2032162D73F3006B8856 /* TB_leftPanel.png */, + 58FA2033162D73F3006B8856 /* TB_rightPanel.png */, + E3B7BCBD15E505CC00CF95EF /* TB_plugins.png */, + 776A37B7139BCE3600960E94 /* TB_imageAssets.png */, + 776A3706139544A200960E94 /* TB_actualSize.png */, + 776A3707139544A200960E94 /* TB_grab.png */, + 776A3708139544A200960E94 /* TB_select.png */, + 776A3709139544A200960E94 /* TB_zoomIn.png */, + 776A370A139544A200960E94 /* TB_zoomOut.png */, + ); + name = Toolbar; + sourceTree = ""; + }; + 776041E61498F7980078095D /* Icons & Logos */ = { + isa = PBXGroup; + children = ( + B78B8B0F185FF982006ADBBE /* Folder.icns */, + B73788F81804D8690076A88C /* ccbi.icns */, + B73788F61804D8200076A88C /* ccbproj.icns */, + B73788F41804D80B0076A88C /* ccb.icns */, + B7DEBD6317D113B800942E4D /* SpriteBuilder.icns */, + 77055FB313D0E5CA009DD63A /* logo-icon.png */, + 77055FB413D0E5CA009DD63A /* logo.png */, + ); + name = "Icons & Logos"; + sourceTree = ""; + }; + 776041E71498F7DE0078095D /* Sparkle (for updates) */ = { + isa = PBXGroup; + children = ( + 776C6895138874C200153214 /* dsa_pub.pem */, + ); + name = "Sparkle (for updates)"; + sourceTree = ""; + }; + 776041EA1498FB600078095D /* Dialogs */ = { + isa = PBXGroup; + children = ( + 5BA3DC2F192108AB0055DD96 /* GuideGridSizeWindow.h */, + 5BA3DC30192108AB0055DD96 /* GuideGridSizeWindow.m */, + 5BA3DC31192108AB0055DD96 /* GuideGridSizeWindow.xib */, + 772BE57B134398EE0009B5B9 /* NewDocWindow.xib */, + 771B2B301353818000B260BA /* NewDocWindowController.h */, + 771B2B311353818000B260BA /* NewDocWindowController.m */, + 77D33EAC138EFBD800012A88 /* StageSizeWindow.xib */, + 77E7D04D138F78F600E8EE67 /* StageSizeWindow.h */, + 77E7D04E138F78F600E8EE67 /* StageSizeWindow.m */, + E3EDBC1515483EE000EEF1F3 /* ResolutionSettingsWindow.xib */, + E3EDBC1215483E3200EEF1F3 /* ResolutionSettingsWindow.h */, + E3EDBC1315483E3200EEF1F3 /* ResolutionSettingsWindow.m */, + E398C03F14FBC9CF0078E771 /* PublishTypeAccessoryView.xib */, + E398C04114FBCA620078E771 /* PublishTypeAccessoryView.h */, + E398C04214FBCA620078E771 /* PublishTypeAccessoryView.m */, + E35D78D216826C0100A53BEF /* SpriteSheetSettingsWindow.h */, + E35D78D316826C0100A53BEF /* SpriteSheetSettingsWindow.m */, + E35D78D416826C0100A53BEF /* SpriteSheetSettingsWindow.xib */, + ); + name = Dialogs; + sourceTree = ""; + }; + 776041ED1498FBE70078095D /* Styled Components */ = { + isa = PBXGroup; + children = ( + E3B9AF49153C150D00489438 /* CCBTransparentWindow.h */, + E3B9AF4A153C150D00489438 /* CCBTransparentWindow.m */, + E3B9AF4C153C48E300489438 /* CCBTransparentView.h */, + E3B9AF4D153C48E300489438 /* CCBTransparentView.m */, + 776C683C1385C02000153214 /* CCBOutlineView.h */, + 776C683D1385C02000153214 /* CCBOutlineView.m */, + 776C68401385C4F100153214 /* CCBTextFieldCell.h */, + 776C68411385C4F100153214 /* CCBTextFieldCell.m */, + 776C68431385D37C00153214 /* CCBTableView.h */, + 776C68441385D37D00153214 /* CCBTableView.m */, + E3850807150AA9AE007E162A /* ImageAndTextCell.h */, + E3850808150AA9AE007E162A /* ImageAndTextCell.m */, + E335CB041577995E00A612EE /* CCBSplitView.h */, + E335CB051577995F00A612EE /* CCBSplitView.m */, + 581BCFE6162DADE7007DE600 /* CCBSplitHorizontalView.h */, + 581BCFE7162DADE7007DE600 /* CCBSplitHorizontalView.m */, + E3808DB81641D4B800398456 /* CCBTextFieldLabel.h */, + E3808DB91641D4B800398456 /* CCBTextFieldLabel.m */, + E334A4E2170CFDE3001604F7 /* CCBTextField.h */, + E334A4E3170CFDE3001604F7 /* CCBTextField.m */, + E37FCAF7175FF70F009F81D6 /* CCBImageView.h */, + E37FCAF8175FF70F009F81D6 /* CCBImageView.m */, + B78DA3621773A89B00B85CC0 /* CCBButtonUnclickable.h */, + B78DA3631773A89B00B85CC0 /* CCBButtonUnclickable.m */, + B7AC69B517A1B9930041B8BD /* CCBImageBrowserView.h */, + B7AC69B617A1B9930041B8BD /* CCBImageBrowserView.m */, + B7AC69C117A320E30041B8BD /* CCBColorView.h */, + B7AC69C217A320E30041B8BD /* CCBColorView.m */, + B7F02D4A17D13332008A2E2D /* CCBTransparentWindowDraggable.h */, + B7F02D4B17D13332008A2E2D /* CCBTransparentWindowDraggable.m */, + ); + name = "Styled Components"; + sourceTree = ""; + }; + 776041EE1498FC320078095D /* GUI Util */ = { + isa = PBXGroup; + children = ( + 776041ED1498FBE70078095D /* Styled Components */, + 77E7D049138F777A00E8EE67 /* CCBModalSheetController.h */, + 77E7D04A138F777A00E8EE67 /* CCBModalSheetController.m */, + E3C12B19171DD386001EEDDB /* NSWindow+CCBAccessoryView.h */, + E3C12B1A171DD386001EEDDB /* NSWindow+CCBAccessoryView.m */, + 80B149C6183D55E60085935B /* SoundFileImageController.h */, + 80B149C7183D55E60085935B /* SoundFileImageController.m */, + ); + name = "GUI Util"; + sourceTree = ""; + }; + 776041EF1498FCE50078095D /* Stage Assets */ = { + isa = PBXGroup; + children = ( + 92B1B9D3192429A400DB91F5 /* joint-pivot-range.png */, + 92B1B9D4192429A400DB91F5 /* joint-pivot-range@2x.png */, + 9218DF101919B04D0033851E /* joint-pivot-handle-ratchet.png */, + 9218DF111919B04D0033851E /* joint-pivot-handle-ratchetmark.png */, + 9218DF131919B04D0033851E /* joint-pivot-mode-bg.png */, + 9218DF141919B04D0033851E /* joint-pivot-mode-l-off.png */, + 9218DF151919B04D0033851E /* joint-pivot-mode-l-on.png */, + 9218DF161919B04D0033851E /* joint-pivot-mode-r-off.png */, + 9218DF171919B04D0033851E /* joint-pivot-mode-r-on.png */, + 9218DF181919B04D0033851E /* joint-pivot-mode-s-off.png */, + 9218DF191919B04D0033851E /* joint-pivot-mode-s-on.png */, + 9218DF0F1919B04D0033851E /* joint-pivot-handle-min.png */, + 9218DF1B1919B04D0033851E /* joint-pivot-handle-max.png */, + 9218DF121919B04D0033851E /* joint-pivot-handle-ref.png */, + 9218DF1A1919B04D0033851E /* joint-pivot-motor.png */, + 9218DF1C1919B04D0033851E /* joint-pivot-mode-r-on@2x.png */, + 9218DF1D1919B04D0033851E /* joint-pivot-mode-l-on@2x.png */, + 9218DF1E1919B04D0033851E /* joint-pivot-mode-s-on@2x.png */, + 9218DF1F1919B04D0033851E /* joint-pivot-mode-r-off@2x.png */, + 9218DF201919B04D0033851E /* joint-pivot-mode-l-off@2x.png */, + 9218DF211919B04D0033851E /* joint-pivot-mode-s-off@2x.png */, + 9218DF221919B04D0033851E /* joint-pivot-mode-bg@2x.png */, + 9218DF231919B04D0033851E /* joint-pivot-handle-ratchetmark@2x.png */, + 9218DF241919B04D0033851E /* joint-pivot-handle-ratchet@2x.png */, + 9218DF251919B04D0033851E /* joint-pivot-handle-min@2x.png */, + 9218DF261919B04D0033851E /* joint-pivot-handle-max@2x.png */, + 9218DF271919B04D0033851E /* joint-pivot-handle-ref@2x.png */, + 9218DF281919B04D0033851E /* joint-pivot-motor@2x.png */, + 926D13B418B5778300582959 /* joint-distance-handle-long.png */, + 926D13B518B5778300582959 /* joint-distance-handle-long@2x.png */, + 926D13B618B5778300582959 /* joint-distance-handle-short.png */, + 926D13B718B5778300582959 /* joint-distance-handle-short@2x.png */, + 926D13B818B5778300582959 /* joint-distance-sel.png */, + 926D13B918B5778300582959 /* joint-distance-sel@2x.png */, + 926D13BA18B5778300582959 /* joint-distance-slide-sel.png */, + 926D13BB18B5778300582959 /* joint-distance-slide-sel@2x.png */, + 926D13BC18B5778300582959 /* joint-distance-slide.png */, + 926D13BD18B5778300582959 /* joint-distance-slide@2x.png */, + 926D13BE18B5778300582959 /* joint-distance.png */, + 926D13BF18B5778300582959 /* joint-distance@2x.png */, + 92D9D47A18F8AB3800F167C1 /* joint-connection-connected.png */, + 92D9D47B18F8AB3800F167C1 /* joint-connection-connected@2x.png */, + 92D9D47C18F8AB3800F167C1 /* joint-connection-disconnected.png */, + 92D9D47D18F8AB3800F167C1 /* joint-connection-disconnected@2x.png */, + 92D9D47E18F8AB3800F167C1 /* joint-connection-bg.png */, + 92D9D47F18F8AB3800F167C1 /* joint-connection-bg@2x.png */, + 921EEACE18A5760700D864C2 /* joint-anchor-sel.png */, + 921EEACF18A5760700D864C2 /* joint-anchor-sel@2x.png */, + 921EEAD018A5760700D864C2 /* joint-anchor.png */, + 921EEAD118A5760700D864C2 /* joint-anchor@2x.png */, + 921EEAD218A5760700D864C2 /* joint-pivot-sel.png */, + 921EEAD318A5760700D864C2 /* joint-pivot-sel@2x.png */, + 921EEAD418A5760700D864C2 /* joint-pivot.png */, + 921EEAD518A5760700D864C2 /* joint-pivot@2x.png */, + B7E775E118563F8C004221AA /* frame-fixed.png */, + B71706C7184ECD660081720A /* select-crosshair@2x.png */, + B71706C8184ECD660081720A /* select-move.png */, + B71706C9184ECD660081720A /* select-move@2x.png */, + B71706CA184ECD660081720A /* select-rotation@2x.png */, + B71706CB184ECD660081720A /* select-scale@2x.png */, + B71706CC184ECD660081720A /* select-skew@2x.png */, + 800C005E1846A40D00544BD2 /* select-scale.png */, + 800C006F1848178D00544BD2 /* select-crosshair.png */, + 80E158A018441FF1007242F6 /* select-skew.png */, + 80E158941843DEDC007242F6 /* select-rotation.png */, + B7C3533917FA2EDA005697C1 /* select-physics-corner.png */, + B7AC6968179E03BF0041B8BD /* select-corner.png */, + E3DFE830160226760068CB50 /* frame-iphone5.png */, + E36078BB15EE0B2C0040A172 /* sel-round.png */, + E360788F15EBA5420040A172 /* sel-frame.png */, + E3F3F84A153DBA43005443EE /* notes-close-down.png */, + E3F3F848153DB893005443EE /* notes-close.png */, + E3F3F844153C7772005443EE /* notes-bg.png */, + E3B9AF421538612200489438 /* ruler-xy.png */, + E3A16AEF1536C885004B528A /* ruler-guide.png */, + E34E5D721535BC5E000201FB /* ruler-numbers.png */, + E34E5D701535B34F000201FB /* ruler-mark-origin.png */, + E34E5D6C1535AA78000201FB /* ruler-mark-major.png */, + E34E5D6D1535AA78000201FB /* ruler-mark-minor.png */, + E34E5D68153585EC000201FB /* ruler-bg-horizontal.png */, + E34E5D69153585EC000201FB /* ruler-bg-vertical.png */, + E3DFA7CA15ACA0CD005D3B6F /* frame-android-medium.png */, + E3DFA7CB15ACA0CD005D3B6F /* frame-android-small.png */, + E3DFA7CC15ACA0CD005D3B6F /* frame-android-xsmall.png */, + 7729F03C1390600200CAA44F /* frame-ipad.png */, + 7729F0391390215400CAA44F /* frame-iphone.png */, + 776C688F1388107400153214 /* missing-font.fnt */, + 776C68901388107400153214 /* missing-font.png */, + 774E4EC8136DFFB70025D0A8 /* btn-move-hi.png */, + 774E4EC9136DFFB70025D0A8 /* btn-move.png */, + 774E4ECA136DFFB70025D0A8 /* btn-rotate-hi.png */, + 774E4ECB136DFFB70025D0A8 /* btn-rotate.png */, + 774E4ECC136DFFB70025D0A8 /* btn-scale-hi.png */, + 774E4ECD136DFFB70025D0A8 /* btn-scale.png */, + 774E4EBD136D98AB0025D0A8 /* select-bl.png */, + 774E4EBE136D98AB0025D0A8 /* select-br.png */, + 774E4EBF136D98AB0025D0A8 /* select-pt.png */, + 774E4EC0136D98AB0025D0A8 /* select-tl.png */, + 774E4EC1136D98AB0025D0A8 /* select-tr.png */, + 80E95C541836E41C00D864CA /* select-locked.png */, + 774F95C513638D74005D43EB /* missing-particle-texture.png */, + 772BE566133E40D60009B5B9 /* missing-texture.png */, + E525FEFB9DD4C68B41FF4F1F /* ruler-numbers.fnt */, + ); + name = "Stage Assets"; + sourceTree = ""; + }; + 776041F01498FD630078095D /* GUI */ = { + isa = PBXGroup; + children = ( + 92F0961218F8855A00D47A94 /* inspector-body-goto-hi.png */, + 92F0961318F8855A00D47A94 /* inspector-body-goto.png */, + 92F0961418F8855A00D47A94 /* inspector-body-goto-hi@2x.png */, + 92F0961518F8855A00D47A94 /* inspector-body-goto@2x.png */, + 92F095F918F8851200D47A94 /* inspector-body-connected.png */, + 92F095FA18F8851200D47A94 /* inspector-body-disconnected.png */, + 92F095FB18F8851200D47A94 /* inspector-body-remove-dis.png */, + 92F095FC18F8851200D47A94 /* inspector-body-remove-hi.png */, + 92F095FD18F8851200D47A94 /* inspector-body-bg.png */, + 92F095FE18F8851200D47A94 /* inspector-body-remove.png */, + 92F095FF18F8851200D47A94 /* inspector-body-remove-hi@2x.png */, + 92F0960018F8851200D47A94 /* inspector-body-remove-dis@2x.png */, + 92F0960118F8851200D47A94 /* inspector-body-remove@2x.png */, + 92F0960218F8851200D47A94 /* inspector-body-connected@2x.png */, + 92F0960318F8851300D47A94 /* inspector-body-disconnected@2x.png */, + 92F0960418F8851300D47A94 /* inspector-body-bg@2x.png */, + B759E4B61880B60B00E8166C /* logo-white.png */, + B759E4B71880B60B00E8166C /* logo-white@2x.png */, + B759E4B41880B4D000E8166C /* help-logo@2x.png */, + B75CB46318468FA70036259F /* seq-btn-loop.png */, + B75CB46418468FA70036259F /* seq-btn-loop@2x.png */, + 80B149BC183D4D280085935B /* seq-keyframe-x4-sel.png */, + 80B149BD183D4D280085935B /* seq-keyframe-x4.png */, + 80FBACD71834530100C4BB69 /* visible-icon.png */, + B7096E1D180CD98E00164A8A /* doc-layer.png */, + B7096E1E180CD98E00164A8A /* doc-layer@2x.png */, + B7096E1F180CD98E00164A8A /* doc-node.png */, + B7096E20180CD98E00164A8A /* doc-node@2x.png */, + B7096E21180CD98E00164A8A /* doc-particlesystem.png */, + B7096E22180CD98E00164A8A /* doc-scene.png */, + B7096E23180CD98E00164A8A /* doc-scene@2x.png */, + B7096E24180CD98E00164A8A /* doc-sprite.png */, + B7096E25180CD98E00164A8A /* doc-sprite@2x.png */, + 80FBACC9183422BD00C4BB69 /* inspector-warning@2x.png */, + 80FBACCA183422BD00C4BB69 /* inspector-warning.png */, + B7C3533517FA0FEF005697C1 /* inspector-physics.png */, + B7C3533617FA0FEF005697C1 /* inspector-physics@2x.png */, + B7AC69C417A70A4A0041B8BD /* inspector-codeconnections.png */, + B7AC69C517A70A4A0041B8BD /* inspector-codeconnections@2x.png */, + B7AC69C617A70A4A0041B8BD /* inspector-props.png */, + B7AC69C717A70A4B0041B8BD /* inspector-props@2x.png */, + B7AC69C817A70A4B0041B8BD /* inspector-template.png */, + B7AC69B317A1A2040041B8BD /* header-bg2-crop.png */, + B7AC69B117A1969E0041B8BD /* header-bg2.png */, + B7AC69AC17A0938C0041B8BD /* inspector-nodes@2x.png */, + B7AC69A817A0923B0041B8BD /* inspector-nodes.png */, + B7AC69A317A07DAD0041B8BD /* inspector-folder.png */, + B7AC69A417A07DAD0041B8BD /* inspector-objects.png */, + B794AB90177A30EB004FF493 /* ui-nopreview.png */, + E37FCAEC175D2704009F81D6 /* ui-cogs.png */, + E37FCAED175D2704009F81D6 /* ui-cogs@2x.png */, + E39C917A174C134C00092BD1 /* toolbar-btn-add.png */, + E3748302171F83A300486659 /* editor-jump.png */, + E388FD18171F03C7002548ED /* editor-border.png */, + E3C12B1E171E0DE7001EEDDB /* editor-check.png */, + E38F79351715FD8D00E299E4 /* editor-warning.png */, + E334A4E5170D0020001604F7 /* debugger-bug.png */, + E334A4DC170CF475001604F7 /* seq-btn-end.png */, + 8045F12C183AD6D30082BD94 /* seq-visible.png */, + 80F908FF183C186200A714FC /* seq-visible-faint.png */, + 8045F12D183AD6D30082BD94 /* seq-notset.png */, + 8045F134183AD9B90082BD94 /* seq-locked.png */, + 9254805918D913C500236DED /* seq-locked-faint.png */, + E334A4DD170CF475001604F7 /* toolbar-bottom-noborder.png */, + E38DAB21165AC18800EA24E4 /* reshandler-spritesheet-folder.png */, + 5811305F1639C52000A86D70 /* seq-startmarker.png */, + E367E32416384F3600247F12 /* orientation-portrait.png */, + E367E31C16384F0C00247F12 /* orientation-landscapeleft.png */, + E367E31D16384F0C00247F12 /* orientation-landscaperight.png */, + E367E31F16384F0C00247F12 /* orientation-upsidedown.png */, + E3AF6CE515F0F5760048DB2A /* help-logo.png */, + E33C2AB915CBF2580043EF9B /* seq-keyframe-hint.png */, + E326EFB515C84123006D6CE6 /* seq-endmarker.png */, + E3E2704A15B1904300287470 /* toolbar-bottom.png */, + E3E2704615B18CF500287470 /* TB_play.png */, + E3E2704715B18CF500287470 /* TB_stop.png */, + E3FD4DDA15A301EF0032C2DD /* seq-next-seq.png */, + E392618A159CAAA10034FF1D /* seq-keyframe-interpol-vis.png */, + E392618B159CAAA10034FF1D /* seq-keyframe-l-sel.png */, + E392618C159CAAA10034FF1D /* seq-keyframe-l.png */, + E392618D159CAAA10034FF1D /* seq-keyframe-r-sel.png */, + E392618E159CAAA10034FF1D /* seq-keyframe-r.png */, + E3A0ED54158FEAC0000BDF4B /* btn-dropdown-arrows.png */, + E3A0ED51158FE3AB000BDF4B /* btn-dropdown.png */, + E3E0557A159B8466001066C5 /* seq-keyframe-easein.png */, + E3E0557B159B8466001066C5 /* seq-keyframe-easeout.png */, + E3E0557C159B8466001066C5 /* seq-keyframe-interpol.png */, + E39B639E1587E56D009BDE38 /* seq-row-0-bg.png */, + E39B639F1587E56D009BDE38 /* seq-row-1-bg.png */, + E39B63A01587E56D009BDE38 /* seq-row-n-bg.png */, + E32FA2F716D5781600254653 /* seq-row-channel-bg.png */, + E36ECD6115869779003C177E /* seq-btn-back.png */, + E36ECD6215869779003C177E /* seq-keyframe-sel.png */, + E36ECD6315869779003C177E /* seq-keyframe.png */, + E3E8B4A9157D127300373983 /* seq-scaleslide-bg.png */, + E3E8B4A2157CD5DB00373983 /* seq-scrub-handle.png */, + E3E8B4A3157CD5DB00373983 /* seq-scrub-line.png */, + E3E8B49315793AF800373983 /* seq-btn-play.png */, + E3E8B49415793AF800373983 /* seq-btn-restart.png */, + E3E8B49515793AF800373983 /* seq-btn-run.png */, + E3E8B49615793AF800373983 /* seq-btn-stepback.png */, + E3E8B49715793AF800373983 /* seq-btn-stepforward.png */, + E3E8B49815793AF800373983 /* seq-btn-stop.png */, + E3E8B4911579326A00373983 /* seq-timedisplay-bg.png */, + E3E8B48B15791FFB00373983 /* seq-tl-mark-major.png */, + E3E8B48C15791FFB00373983 /* seq-tl-mark-minor.png */, + E3E8B48D15791FFB00373983 /* seq-tl-mark-origin.png */, + E3E8B4891578FEB100373983 /* seq-tl-bg.png */, + E335CB0B1577D64C00A612EE /* seq-btn-collapse.png */, + E335CAFC15765BB700A612EE /* seq-vseparator.png */, + E335CAF715764E6B00A612EE /* seq-btn-expand.png */, + E335CAEA15751C0D00A612EE /* seq-ctrl-bg.png */, + E370BA0A1549B2460048ED73 /* scale-0.png */, + E370BA0B1549B2460048ED73 /* scale-1.png */, + B78AE44F17E3B1600028BE0B /* scale-2.png */, + B78AE45017E3B1600028BE0B /* scale-3.png */, + B78AE45117E3B1600028BE0B /* scale-4.png */, + E35A2D871540111A00F78B72 /* position-0.png */, + E35A2D881540111A00F78B72 /* position-1.png */, + E35A2D891540111A00F78B72 /* position-2.png */, + E35A2D8A1540111A00F78B72 /* position-3.png */, + E385080A150AB232007E162A /* segmctrl-bg.png */, + 7789ACF0133BD5E800CEFCC7 /* header-bg.png */, + ); + name = GUI; + sourceTree = ""; + }; + 776041F11498FD940078095D /* Cocos2D */ = { + isa = PBXGroup; + children = ( + A09AB6F614E993AA009C8B91 /* fps_images.png */, + 7789ACED133AB6A700CEFCC7 /* icon.icns */, + ); + name = Cocos2D; + sourceTree = ""; + }; + 7789ABB3133AA82000CEFCC7 = { + isa = PBXGroup; + children = ( + E3D08A321524581100E55891 /* README.md */, + E3D59118150F50D1004180CA /* AUTHORS */, + E395DC7D1511FDF70075979E /* CHANGELOG */, + E3D59119150F50D1004180CA /* LICENSE_CocosBuilder.txt */, + E3D5911A150F50D1004180CA /* LICENSE_PSMTabBarControl.txt */, + E3D5911B150F50D1004180CA /* LICENSE_SCEvents.txt */, + E3D5911C150F50D1004180CA /* LICENSE_Sparkle.txt */, + 7789ABC8133AA82000CEFCC7 /* SpriteBuilder */, + 833A5C4D192B48CB001837B3 /* SpriteBuilder Tests */, + 7789ACEB133AB6A700CEFCC7 /* Resources */, + E3B7AED114E31A7800DFD402 /* PlugIns (Nodes) */, + E398C01D14FB813C0078E771 /* PlugIns (Exporters) */, + 7789ABEF133AB17100CEFCC7 /* libs */, + FA98CFC5154E7D1C006E58C5 /* ccbpublish */, + 7789ABC1133AA82000CEFCC7 /* Frameworks */, + 7789ABBF133AA82000CEFCC7 /* Products */, + ); + sourceTree = ""; + }; + 7789ABBF133AA82000CEFCC7 /* Products */ = { + isa = PBXGroup; + children = ( + 7789ABBE133AA82000CEFCC7 /* SpriteBuilder.app */, + E3B7AEC514E3193500DFD402 /* CCNode.ccbPlugNode */, + E3C365EB14E9E4D1007CD5FF /* CCSprite.ccbPlugNode */, + E35DBB8014F225D30070A6E4 /* CCNodeColor.ccbPlugNode */, + E35DBB9814F244BB0070A6E4 /* CCNodeGradient.ccbPlugNode */, + E35DBBCC14F2AA350070A6E4 /* CCLabelBMFont.ccbPlugNode */, + E35DBBE914F3E2390070A6E4 /* CCLabelTTF.ccbPlugNode */, + E35DBC0914F4D72B0070A6E4 /* CCParticleSystem.ccbPlugNode */, + E398C02214FB81A30078E771 /* Cocos2D iPhone.ccbPlugExport */, + E3D59121150F5367004180CA /* CCBFile.ccbPlugNode */, + FA98CFC1154E7D1C006E58C5 /* ccbpublish */, + B7C623B117F383CE00928F91 /* CCButton.ccbPlugNode */, + B7C623CD17F38B7800928F91 /* CCControl.ccbPlugNode */, + B7C3532217F65547005697C1 /* CCSprite9Slice.ccbPlugNode */, + B79F90D817FF30DB00908504 /* CCPhysicsNode.ccbPlugNode */, + B73788D91804AC5D0076A88C /* CCScrollView.ccbPlugNode */, + B7EE699518188E0800B983FE /* CCTextField.ccbPlugNode */, + B7EE69F81819EE0D00B983FE /* CCLayoutBox.ccbPlugNode */, + B729AC52181F091800BA0D9C /* CCSlider.ccbPlugNode */, + DCB9F1581890600D00128D78 /* SKNode.ccbPlugNode */, + DC5129C91891450D0091873D /* SKSpriteNode.ccbPlugNode */, + DC6803081891466C0060BE39 /* SKLabelNode.ccbPlugNode */, + DC680329189156310060BE39 /* SKColorSpriteNode.ccbPlugNode */, + 92154ADB18A5560B00BD215C /* CCPhysicsPivotJoint.ccbPlugNode */, + 926D13E318B57B9500582959 /* CCPhysicsPinJoint.ccbPlugNode */, + 92B7900D18C808B7007DF895 /* CCPhysicsSpringJoint.ccbPlugNode */, + DC05E78318D0ACCB00592A1E /* SBControlNode.ccbPlugNode */, + DC05E79018D0ACE000592A1E /* SBButtonNode.ccbPlugNode */, + DCFB063F18E32B7500DF02A0 /* SKFile.ccbPlugNode */, + 833A5C4A192B48CB001837B3 /* SpriteBuilder Tests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 7789ABC1133AA82000CEFCC7 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 7BCC1C0C194904190062DF38 /* StoreKit.framework */, + D35E589D18E391DA008571EC /* GLKit.framework */, + D2E0168418D783C900927430 /* AppleScriptKit.framework */, + DC68033A189168390060BE39 /* SpriteKit.framework */, + B72D1DEA186393AE0091252F /* HockeySDK.framework */, + B7E1EFDC185F8D3D00C9E6E0 /* WebKit.framework */, + 80985259182C40170054BBF3 /* CoreMedia.framework */, + 835DB0CA17156421003A2F7B /* Security.framework */, + E3A4747B16D43BF300DB0D61 /* AVFoundation.framework */, + E3A4747916D43BEA00DB0D61 /* OpenAL.framework */, + E3A4747716D43B5800DB0D61 /* AudioToolbox.framework */, + E3A4747516D43B4300DB0D61 /* CoreAudio.framework */, + E3B19F6A15E62ADA000B023E /* Carbon.framework */, + E3E0878C15669F48008F1FDB /* JavaScriptCore.framework */, + FA98CFDA154E8D16006E58C5 /* CoreServices.framework */, + 776A37151395925D00960E94 /* Quartz.framework */, + 776A3713139590AA00960E94 /* ImageCaptureCore.framework */, + 77D33E94138E714700012A88 /* ExceptionHandling.framework */, + 7789ABC2133AA82000CEFCC7 /* Cocoa.framework */, + FA98CFC3154E7D1C006E58C5 /* Foundation.framework */, + B7C623B217F383CE00928F91 /* CoreFoundation.framework */, + 833A5C4B192B48CB001837B3 /* XCTest.framework */, + 7789ABC4133AA82000CEFCC7 /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; + 7789ABC4133AA82000CEFCC7 /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + E3E0878F15669FA2008F1FDB /* libffi.dylib */, + 7789ABED133AB12F00CEFCC7 /* libz.dylib */, + 7789ABEB133AB12000CEFCC7 /* OpenGL.framework */, + 7789ABE9133AB10E00CEFCC7 /* QuartzCore.framework */, + 7789ABE7133AB10500CEFCC7 /* ApplicationServices.framework */, + 7789ABC5133AA82000CEFCC7 /* AppKit.framework */, + 7789ABC6133AA82000CEFCC7 /* CoreData.framework */, + 7789ABC7133AA82000CEFCC7 /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 7789ABC8133AA82000CEFCC7 /* SpriteBuilder */ = { + isa = PBXGroup; + children = ( + B78B8B0E185FE6A0006ADBBE /* SpriteBuilder.entitlements */, + B72D1DBF186125E80091252F /* Requirements.plist */, + D2E0167218D782B500927430 /* SpriteBuilderCommands */, + 8392006918ED91AD00B6C429 /* Cocos2dUpdater */, + 83F8672F18D1DCBD007441E4 /* Constants */, + 776041E31498F5E80078095D /* AppDelegate & Cocos2D Scene */, + E346286C155C23100043EAB1 /* Rulers, Guides & Notes */, + B7AC69CE17A756950041B8BD /* Property Inspector */, + E335CAED1576031B00A612EE /* Sequencer */, + E3C5C1A11504D144000CF6F3 /* Resource Manager */, + B7C3533B17FA306C005697C1 /* Physics Editor */, + 776041E11498F56D0078095D /* Application Settings & Globals */, + 776041E01498F4A00078095D /* Document Readers & Writers */, + E346286D155D21F10043EAB1 /* Publishing */, + E3DCFD851562611700BD7D7F /* Error handling & notifications */, + E3B7AEDA14E3242600DFD402 /* PlugIn Manager */, + 776041EA1498FB600078095D /* Dialogs */, + E3B7BC9D15E3B97900CF95EF /* Toolbar */, + E3AF6CD615F0A77F0048DB2A /* Help */, + E390C77A170A2C20003E9E92 /* About Box & Email list */, + B7083DEF17B1C31E006628C7 /* Localization Editor */, + E3B7AEE614E33E5700DFD402 /* Inspector Properties */, + E3214C3F15D3B9D0002413A7 /* Custom Properties */, + E335CB071577C55F00A612EE /* Node info */, + 776041E21498F5A70078095D /* Util */, + 776041EE1498FC320078095D /* GUI Util */, + 7789ABC9133AA82000CEFCC7 /* Supporting Files */, + ); + name = SpriteBuilder; + path = ccBuilder; + sourceTree = ""; + }; + 7789ABC9133AA82000CEFCC7 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + D2E0168618D783F800927430 /* SpriteBuilder.sdef */, + 7789ABCB133AA82000CEFCC7 /* InfoPlist.strings */, + 7789ABCE133AA82000CEFCC7 /* SpriteBuilder-Prefix.pch */, + 7789ABCF133AA82000CEFCC7 /* main.m */, + 7789ABD1133AA82000CEFCC7 /* Credits.rtf */, + 776041E81498F8ED0078095D /* SpriteBuilder-Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 7789ABEF133AB17100CEFCC7 /* libs */ = { + isa = PBXGroup; + children = ( + 8341326918DADF8C0088FFAB /* optipng */, + 80AD79911863871200B653B7 /* PVRTexTool */, + B7D0918717C2C1310007FE7F /* Cocos2d */, + B7AC699117A079C80041B8BD /* InspectorTabBar */, + B7AC696C179F50850041B8BD /* BFColorPickerPopover */, + E3D839DE171356F1004F6127 /* pngquant */, + E3E8D64316B3128600742107 /* Ogg compression */, + E3F4087216A9EEAE009A0253 /* CCZ compression */, + E3DEF5B5169B358500B9DCF4 /* Lame */, + B794AB96177CDFF7004FF493 /* FormatConverter */, + E380B24A1642FC240006D31C /* Tupac */, + E35A134E15B038D700C9AA15 /* ThoMoNetworking */, + E3E087611566907F008F1FDB /* JSCocoa */, + E32BBCAA156135C300C58395 /* HashValue */, + E3C5C1A51504D30C000CF6F3 /* SCEvents */, + 77E198DB13858CD1006C361B /* TabBar */, + E36F3C3A152C756D00AAD805 /* RelativePath */, + E3AF6CDC15F0CF6C0048DB2A /* MMMarkdown */, + ); + path = libs; + sourceTree = ""; + }; + 7789ACEB133AB6A700CEFCC7 /* Resources */ = { + isa = PBXGroup; + children = ( + 7B5135C11947CC2500DE177D /* LocalizationInAppPurchasesPIDs.plist */, + DC0A8D3E18C8C274009A619D /* SpriteKitTextureAtlasToolPath.txt */, + B7AC69DB17A9D9700041B8BD /* defaultTemplates.zip */, + E390C780170A371E003E9E92 /* Generated */, + E3AF6CE015F0CFAE0048DB2A /* Documentation */, + E35DBBDD14F3D1830070A6E4 /* Configurations */, + 776041E71498F7DE0078095D /* Sparkle (for updates) */, + 776041E41498F6AF0078095D /* Images */, + ); + path = Resources; + sourceTree = ""; + }; + 77E198DB13858CD1006C361B /* TabBar */ = { + isa = PBXGroup; + children = ( + 77E1992D13858D80006C361B /* res */, + 77E1990513858D78006C361B /* NSBezierPath_AMShading.h */, + 77E1990613858D78006C361B /* NSBezierPath_AMShading.m */, + 77E1990713858D78006C361B /* NSString_AITruncation.h */, + 77E1990813858D78006C361B /* NSString_AITruncation.m */, + 77E1990913858D78006C361B /* PSMMetalTabStyle.h */, + 77E1990A13858D78006C361B /* PSMMetalTabStyle.m */, + 77E1990B13858D78006C361B /* PSMOverflowPopUpButton.h */, + 77E1990C13858D78006C361B /* PSMOverflowPopUpButton.m */, + 77E1990D13858D78006C361B /* PSMProgressIndicator.h */, + 77E1990E13858D78006C361B /* PSMProgressIndicator.m */, + 77E1990F13858D78006C361B /* PSMRolloverButton.h */, + 77E1991013858D78006C361B /* PSMRolloverButton.m */, + 77E1991113858D78006C361B /* PSMTabBarCell.h */, + 77E1991213858D78006C361B /* PSMTabBarCell.m */, + 77E1991313858D78006C361B /* PSMTabBarControl.h */, + 77E1991413858D78006C361B /* PSMTabBarControl.m */, + 77E1991513858D78006C361B /* PSMTabBarController.h */, + 77E1991613858D78006C361B /* PSMTabBarController.m */, + 77E1991713858D78006C361B /* PSMTabDragAssistant.h */, + 77E1991813858D78006C361B /* PSMTabDragAssistant.m */, + 77E1991913858D78006C361B /* PSMTabDragView.h */, + 77E1991A13858D78006C361B /* PSMTabDragView.m */, + 77E1991B13858D78006C361B /* PSMTabDragWindow.h */, + 77E1991C13858D78006C361B /* PSMTabDragWindow.m */, + 77E1991D13858D78006C361B /* PSMTabDragWindowController.h */, + 77E1991E13858D78006C361B /* PSMTabDragWindowController.m */, + 77E1991F13858D78006C361B /* PSMTabStyle.h */, + ); + name = TabBar; + sourceTree = ""; + }; + 77E1992D13858D80006C361B /* res */ = { + isa = PBXGroup; + children = ( + 77E1994613858DE0006C361B /* overflowImage.png */, + 77E1994713858DE0006C361B /* overflowImagePressed.png */, + 77E1994813858DE0006C361B /* pi.png */, + 77E1994913858DE0006C361B /* TabClose_Dirty_Pressed.png */, + 77E1994A13858DE0006C361B /* TabClose_Dirty_Rollover.png */, + 77E1994B13858DE0006C361B /* TabClose_Dirty.png */, + 77E1994C13858DE0006C361B /* TabClose_Front_Pressed.png */, + 77E1994D13858DE0006C361B /* TabClose_Front_Rollover.png */, + 77E1994E13858DE0006C361B /* TabClose_Front.png */, + 77E1994F13858DE0006C361B /* TabNewMetal.png */, + 77E1995013858DE0006C361B /* TabNewMetalPressed.png */, + 77E1995113858DE0006C361B /* TabNewMetalRollover.png */, + ); + name = res; + sourceTree = ""; + }; + 80AD79911863871200B653B7 /* PVRTexTool */ = { + isa = PBXGroup; + children = ( + 80AD79921863871200B653B7 /* Include */, + 80AD79A01863871200B653B7 /* libPVRTexLib.a */, + ); + path = PVRTexTool; + sourceTree = ""; + }; + 80AD79921863871200B653B7 /* Include */ = { + isa = PBXGroup; + children = ( + 80AD79931863871200B653B7 /* PVRTArray.h */, + 80AD79941863871200B653B7 /* PVRTDecompress.h */, + 80AD79951863871200B653B7 /* PVRTError.h */, + 80AD79961863871200B653B7 /* PVRTexture.h */, + 80AD79971863871200B653B7 /* PVRTextureDefines.h */, + 80AD79981863871200B653B7 /* PVRTextureFormat.h */, + 80AD79991863871200B653B7 /* PVRTextureHeader.h */, + 80AD799A1863871200B653B7 /* PVRTextureUtilities.h */, + 80AD799B1863871200B653B7 /* PVRTextureVersion.h */, + 80AD799C1863871200B653B7 /* PVRTGlobal.h */, + 80AD799D1863871200B653B7 /* PVRTMap.h */, + 80AD799E1863871200B653B7 /* PVRTString.h */, + 80AD799F1863871200B653B7 /* PVRTTexture.h */, + ); + path = Include; + sourceTree = ""; + }; + 8319539318FECDF800ED4BA0 /* PublishingOperations */ = { + isa = PBXGroup; + children = ( + E525F8D13D187525150C6EA7 /* OptimizeImageWithOptiPNGOperation.m */, + E525F7FDEB6E06727F3674DC /* OptimizeImageWithOptiPNGOperation.h */, + E525F08B2DA5BA93DA1BCA35 /* PublishSpriteSheetOperation.m */, + E525FB10982384F8E0C0E079 /* PublishSpriteSheetOperation.h */, + E525FF2CEC6DF0EB5FFCA742 /* PublishRegularFileOperation.m */, + E525F0ED6F868B09686F38DF /* PublishRegularFileOperation.h */, + E525F6FD3B484B1762858AEB /* PublishSoundFileOperation.m */, + E525F8924029BDE31AAE8FA2 /* PublishSoundFileOperation.h */, + E525F827AA0BCCAE1BF601C2 /* PublishBaseOperation.m */, + E525FD7A50FBA15D21819682 /* PublishBaseOperation.h */, + E525F8A438244586206C9177 /* PublishCCBOperation.m */, + E525F31D5A311C0DBE9C1CD6 /* PublishCCBOperation.h */, + E525FC7FEB1B9D2A5F7FFEA5 /* PublishImageOperation.m */, + E525F9495AD93524CF0F48F9 /* PublishImageOperation.h */, + E525F9BF09923348CFBEFC6C /* PublishGeneratedFilesOperation.m */, + E525F85AE82110FF3A50E129 /* PublishGeneratedFilesOperation.h */, + E525F56FE00E54E100F524F1 /* PublishSpriteKitSpriteSheetOperation.m */, + E525F954D224CDAB615AC157 /* PublishSpriteKitSpriteSheetOperation.h */, + ); + name = PublishingOperations; + sourceTree = ""; + }; + 833A5C4D192B48CB001837B3 /* SpriteBuilder Tests */ = { + isa = PBXGroup; + children = ( + 922CC3941946769B00B34854 /* Resources */, + 9203805A19465679000A8816 /* CCAnimation_Tests.m */, + 833A5C5B192B4981001837B3 /* CCBReader_Tests.m */, + 833A5C4E192B48CB001837B3 /* Supporting Files */, + ); + path = "SpriteBuilder Tests"; + sourceTree = ""; + }; + 833A5C4E192B48CB001837B3 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 833A5C4F192B48CB001837B3 /* SpriteBuilder Tests-Info.plist */, + 833A5C50192B48CB001837B3 /* InfoPlist.strings */, + 833A5C55192B48CB001837B3 /* SpriteBuilder Tests-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 8341326918DADF8C0088FFAB /* optipng */ = { + isa = PBXGroup; + children = ( + 8341326A18DADF9E0088FFAB /* optipng */, + ); + name = optipng; + sourceTree = ""; + }; + 8392006918ED91AD00B6C429 /* Cocos2dUpdater */ = { + isa = PBXGroup; + children = ( + 8392006B18ED91BC00B6C429 /* Cocos2dUpdater.h */, + 8392006C18ED91BC00B6C429 /* Cocos2dUpdater.m */, + 8392006D18ED91BC00B6C429 /* Cocos2dUpdater+Errors.h */, + 8392006E18ED91BC00B6C429 /* Cocos2dUpdater+Errors.m */, + ); + name = Cocos2dUpdater; + sourceTree = ""; + }; + 83F8672F18D1DCBD007441E4 /* Constants */ = { + isa = PBXGroup; + children = ( + 83DC65E818D898D50028EF72 /* SBUserDefaultsKeys.h */, + 83DC65E918D898D50028EF72 /* SBUserDefaultsKeys.m */, + 83F8673218D1DCEA007441E4 /* SBErrors.h */, + 83F8673318D1DCEA007441E4 /* SBErrors.m */, + 4DB7C95319083ACF00ECE19F /* NotificationNames.h */, + 4DB7C95419083ACF00ECE19F /* NotificationNames.m */, + ); + name = Constants; + sourceTree = ""; + }; + 92154ABC18A5531800BD215C /* CCPhysicsPivotJoint */ = { + isa = PBXGroup; + children = ( + 92154ACE18A5540400BD215C /* Supporting Files */, + 92154ABD18A5531800BD215C /* CCBPhysicsPivotJoint.h */, + 92154ABE18A5531800BD215C /* CCBPhysicsPivotJoint.m */, + 9294EC9118C660480059014C /* CCBPhyicsPivotJointPlaceholder.h */, + 9294EC9218C660480059014C /* CCBPhyicsPivotJointPlaceholder.m */, + ); + path = CCPhysicsPivotJoint; + sourceTree = ""; + }; + 92154ACE18A5540400BD215C /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 92154ABF18A5531800BD215C /* CCBPProperties.plist */, + 92154AC018A5531800BD215C /* CCPhysicsPivotJoint-Info.plist */, + 92154AC118A5531800BD215C /* CCPhysicsPivotJoint-Prefix.pch */, + 92154AC218A5531800BD215C /* InfoPlist.strings */, + 92154AC418A5531800BD215C /* Icon.png */, + 92154AC518A5531800BD215C /* Icon@2x.png */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 922CC3941946769B00B34854 /* Resources */ = { + isa = PBXGroup; + children = ( + 922CC3971946873A00B34854 /* AnimationTest2.ccb */, + 922CC395194676B600B34854 /* AnimationTest1.ccb */, + ); + name = Resources; + sourceTree = ""; + }; + 926D13E718B57E1500582959 /* CCPhysicsPinJoint */ = { + isa = PBXGroup; + children = ( + 926D13F718B57E2A00582959 /* Supporting Files */, + 926D13F818B57E7F00582959 /* CCBPhysicsPinJoint.h */, + 926D13F918B57E7F00582959 /* CCBPhysicsPinJoint.m */, + 9294EC9418C6606F0059014C /* CCBPhysicsPinJointPlacefolder.h */, + 9294EC9518C6606F0059014C /* CCBPhysicsPinJointPlacefolder.m */, + ); + path = CCPhysicsPinJoint; + sourceTree = ""; + }; + 926D13F718B57E2A00582959 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 926D13FD18B57FEA00582959 /* CCPhysicsPinJoint-Info.plist */, + 926D13FE18B57FEA00582959 /* CCPhysicsPinJoint-Prefix.pch */, + 926D13EA18B57E1500582959 /* CCBPProperties.plist */, + 926D13ED18B57E1600582959 /* InfoPlist.strings */, + 926D13EF18B57E1600582959 /* Icon.png */, + 926D13F018B57E1600582959 /* icon@2x.png */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 92B792BB18C92C60007DF895 /* CCPhysicsSpringJoint */ = { + isa = PBXGroup; + children = ( + 92B792BC18C92C60007DF895 /* CCBPhyicsSpringJointPlaceholder.h */, + 92B792BD18C92C60007DF895 /* CCBPhyicsSpringJointPlaceholder.m */, + 92B792BE18C92C60007DF895 /* CCBPhysicsSpringJoint.h */, + 92B792BF18C92C60007DF895 /* CCBPhysicsSpringJoint.m */, + 92B792C018C92C60007DF895 /* CCBPProperties.plist */, + 92B792C118C92C60007DF895 /* CCPhysicsSpringJoint-Info.plist */, + 92B792C218C92C60007DF895 /* CCPhysicsSpringJoint-Prefix.pch */, + 92B792C318C92C60007DF895 /* InfoPlist.strings */, + 92B792C518C92C60007DF895 /* Icon.png */, + 92B792C618C92C60007DF895 /* Icon@2x.png */, + ); + path = CCPhysicsSpringJoint; + sourceTree = ""; + }; + B7083DEF17B1C31E006628C7 /* Localization Editor */ = { + isa = PBXGroup; + children = ( + B7083DF717B1CBC8006628C7 /* LocalizationEditorHandler.h */, + B7083DF817B1CBC8006628C7 /* LocalizationEditorHandler.m */, + 7BF55302193F8A7500183F09 /* LocalizationTranslateWindow.xib */, + 7BF55305193F912100183F09 /* LocalizationTranslateWindow.h */, + 7BF55306193F912200183F09 /* LocalizationTranslateWindow.m */, + B7083DF217B1C363006628C7 /* LocalizationEditorWindow.xib */, + B7083DF417B1CB88006628C7 /* LocalizationEditorWindow.h */, + B7083DF517B1CB88006628C7 /* LocalizationEditorWindow.m */, + B7083DFA17B2CC65006628C7 /* LocaliztaionEditorLanguageList.plist */, + B7083DFC17B2CDA0006628C7 /* LocalizationEditorLanguage.h */, + B7083DFD17B2CDA0006628C7 /* LocalizationEditorLanguage.m */, + B7083DFF17B2F992006628C7 /* LocalizationEditorTranslation.h */, + B7083E0017B2F992006628C7 /* LocalizationEditorTranslation.m */, + B7083E0217B32623006628C7 /* LocalizationEditorLanguageTableView.h */, + B7083E0317B32623006628C7 /* LocalizationEditorLanguageTableView.m */, + B7083E0517B32DAD006628C7 /* LocalizationEditorTranslationTableView.h */, + B7083E0617B32DAD006628C7 /* LocalizationEditorTranslationTableView.m */, + ); + name = "Localization Editor"; + sourceTree = ""; + }; + B729AC54181F091800BA0D9C /* CCSlider */ = { + isa = PBXGroup; + children = ( + B729AC55181F091800BA0D9C /* Supporting Files */, + B729AC68181F0C2200BA0D9C /* CCBPSlider.h */, + B729AC69181F0C2200BA0D9C /* CCBPSlider.m */, + ); + path = CCSlider; + sourceTree = ""; + }; + B729AC55181F091800BA0D9C /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B729AC62181F0B5000BA0D9C /* CCBPProperties.plist */, + B729AC63181F0B5000BA0D9C /* Icon.png */, + B729AC64181F0B5000BA0D9C /* Icon@2x.png */, + B729AC56181F091800BA0D9C /* CCSlider-Info.plist */, + B729AC57181F091800BA0D9C /* InfoPlist.strings */, + B729AC5A181F091800BA0D9C /* CCSlider-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B73788DB1804AC5E0076A88C /* CCScrollView */ = { + isa = PBXGroup; + children = ( + B73788DC1804AC5E0076A88C /* Supporting Files */, + B72D1DCD18612D340091252F /* CCBPScrollView.h */, + B72D1DCE18612D340091252F /* CCBPScrollView.m */, + ); + path = CCScrollView; + sourceTree = ""; + }; + B73788DC1804AC5E0076A88C /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B73788E91804AD5C0076A88C /* CCBPProperties.plist */, + B73788EA1804AD5C0076A88C /* Icon.png */, + B73788DD1804AC5E0076A88C /* CCScrollView-Info.plist */, + B73788DE1804AC5E0076A88C /* InfoPlist.strings */, + B73788E11804AC5E0076A88C /* CCScrollView-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B794AB96177CDFF7004FF493 /* FormatConverter */ = { + isa = PBXGroup; + children = ( + B794AB97177CE09D004FF493 /* FCFormatConverter.h */, + B794AB98177CE09D004FF493 /* FCFormatConverter.mm */, + ); + name = FormatConverter; + sourceTree = ""; + }; + B79F90DA17FF30DC00908504 /* CCPhysicsNode */ = { + isa = PBXGroup; + children = ( + B79F90DB17FF30DC00908504 /* Supporting Files */, + B79F90EC17FF366C00908504 /* CCBPPhysicsNode.h */, + B79F90ED17FF366C00908504 /* CCBPPhysicsNode.m */, + ); + path = CCPhysicsNode; + sourceTree = ""; + }; + B79F90DB17FF30DC00908504 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B79F90DC17FF30DC00908504 /* CCPhysicsNode-Info.plist */, + B79F90DD17FF30DC00908504 /* InfoPlist.strings */, + B79F90E017FF30DC00908504 /* CCPhysicsNode-Prefix.pch */, + B79F90E817FF33BB00908504 /* CCBPProperties.plist */, + B79F90E917FF33BB00908504 /* Icon.png */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B79F90E717FF335000908504 /* Physics */ = { + isa = PBXGroup; + children = ( + 92B792BB18C92C60007DF895 /* CCPhysicsSpringJoint */, + 926D13E718B57E1500582959 /* CCPhysicsPinJoint */, + 92154ABC18A5531800BD215C /* CCPhysicsPivotJoint */, + B79F90DA17FF30DC00908504 /* CCPhysicsNode */, + 926D13D418B57A8100582959 /* CCBPhysicsJoint.h */, + 926D13D518B57A8100582959 /* CCBPhysicsJoint.m */, + 926D13D118B57A4900582959 /* CCScaleFreeNode.h */, + 926D13D218B57A4900582959 /* CCScaleFreeNode.m */, + 922E8EFC18C13666008E1764 /* OutletDrawWindow.h */, + 922E8EFD18C13666008E1764 /* OutletDrawWindow.m */, + 92B792CF18C92D80007DF895 /* CCBPhysicsTwoBodyJoint.h */, + 92B792D018C92D80007DF895 /* CCBPhysicsTwoBodyJoint.m */, + 92B7930618CAA4C7007DF895 /* CCBPhysicsJoint+Private.h */, + ); + name = Physics; + sourceTree = ""; + }; + B7AC696C179F50850041B8BD /* BFColorPickerPopover */ = { + isa = PBXGroup; + children = ( + B7AC696D179F50850041B8BD /* BFColorPickerPopover.h */, + B7AC696E179F50850041B8BD /* BFColorPickerPopover.m */, + B7AC696F179F50850041B8BD /* BFColorPickerPopover_LICENSE.txt */, + B7AC6970179F50850041B8BD /* BFPopoverColorWell.h */, + B7AC6971179F50850041B8BD /* BFPopoverColorWell.m */, + B7AC6972179F50850041B8BD /* Extensions */, + B7AC6979179F50850041B8BD /* Helper Classes */, + ); + path = BFColorPickerPopover; + sourceTree = ""; + }; + B7AC6972179F50850041B8BD /* Extensions */ = { + isa = PBXGroup; + children = ( + B7AC6973179F50850041B8BD /* NSColor+BFColorPickerPopover.h */, + B7AC6974179F50850041B8BD /* NSColor+BFColorPickerPopover.m */, + B7AC6975179F50850041B8BD /* NSColorPanel+BFColorPickerPopover.h */, + B7AC6976179F50850041B8BD /* NSColorPanel+BFColorPickerPopover.m */, + B7AC6977179F50850041B8BD /* NSColorWell+BFColorPickerPopover.h */, + B7AC6978179F50850041B8BD /* NSColorWell+BFColorPickerPopover.m */, + ); + path = Extensions; + sourceTree = ""; + }; + B7AC6979179F50850041B8BD /* Helper Classes */ = { + isa = PBXGroup; + children = ( + B7AC697A179F50850041B8BD /* BFColorPickerPopoverView.h */, + B7AC697B179F50850041B8BD /* BFColorPickerPopoverView.m */, + B7AC697C179F50850041B8BD /* BFColorPickerViewController.h */, + B7AC697D179F50850041B8BD /* BFColorPickerViewController.m */, + B7AC697E179F50850041B8BD /* BFIconTabBar.h */, + B7AC697F179F50850041B8BD /* BFIconTabBar.m */, + ); + path = "Helper Classes"; + sourceTree = ""; + }; + B7AC699117A079C80041B8BD /* InspectorTabBar */ = { + isa = PBXGroup; + children = ( + B7AC699217A079C80041B8BD /* NSDictionary+SMKeyValueObserving.h */, + B7AC699317A079C80041B8BD /* NSDictionary+SMKeyValueObserving.m */, + B7AC699417A079C80041B8BD /* SMBar.h */, + B7AC699517A079C80041B8BD /* SMBar.m */, + B7AC699617A079C80041B8BD /* SMTabBar.h */, + B7AC699717A079C80041B8BD /* SMTabBar.m */, + B7AC699817A079C80041B8BD /* SMTabBarButtonCell.h */, + B7AC699917A079C80041B8BD /* SMTabBarButtonCell.m */, + B7AC699A17A079C80041B8BD /* SMTabBarItem.h */, + B7AC699B17A079C80041B8BD /* SMTabBarItem.m */, + ); + path = InspectorTabBar; + sourceTree = ""; + }; + B7AC69CE17A756950041B8BD /* Property Inspector */ = { + isa = PBXGroup; + children = ( + B7AC69CF17A758A40041B8BD /* PropertyInspectorHandler.h */, + B7AC69D017A758A40041B8BD /* PropertyInspectorHandler.m */, + B7AC69D217A75E7E0041B8BD /* PropertyInspectorTemplateCollectionView.h */, + B7AC69D317A75E7E0041B8BD /* PropertyInspectorTemplateCollectionView.m */, + B7AC69D517A827470041B8BD /* PropertyInspectorTemplate.h */, + B7AC69D617A827470041B8BD /* PropertyInspectorTemplate.m */, + ); + name = "Property Inspector"; + sourceTree = ""; + }; + B7C3532417F65547005697C1 /* CCSprite9Slice */ = { + isa = PBXGroup; + children = ( + B7C3532517F65547005697C1 /* Supporting Files */, + B72D1DD318612D790091252F /* CCBPSprite9Slice.h */, + B72D1DD418612D790091252F /* CCBPSprite9Slice.m */, + ); + path = CCSprite9Slice; + sourceTree = ""; + }; + B7C3532517F65547005697C1 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B7C3533017F655B5005697C1 /* Icon.png */, + B7C3532617F65547005697C1 /* CCSprite9Slice-Info.plist */, + B7C3532717F65547005697C1 /* InfoPlist.strings */, + B7C3532A17F65547005697C1 /* CCSprite9Slice-Prefix.pch */, + B7C3532E17F65585005697C1 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B7C3533B17FA306C005697C1 /* Physics Editor */ = { + isa = PBXGroup; + children = ( + 9297AC0518A1BE94003C3705 /* PolyDecomposition.h */, + 9297AC0618A1BE94003C3705 /* PolyDecomposition.mm */, + B7C3533F17FA3DF1005697C1 /* PhysicsHandler.h */, + B7C3534017FA3DF1005697C1 /* PhysicsHandler.m */, + B7C3533C17FA30BB005697C1 /* NodePhysicsBody.h */, + B7C3533D17FA30BB005697C1 /* NodePhysicsBody.m */, + ); + name = "Physics Editor"; + sourceTree = ""; + }; + B7C623B417F383CE00928F91 /* CCButton */ = { + isa = PBXGroup; + children = ( + B7C623B517F383CE00928F91 /* Supporting Files */, + B7C623C517F3870A00928F91 /* CCBPButton.h */, + B7C623C617F3870A00928F91 /* CCBPButton.m */, + ); + path = CCButton; + sourceTree = ""; + }; + B7C623B517F383CE00928F91 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B7C623C117F3860A00928F91 /* Icon.png */, + B7C623B617F383CE00928F91 /* CCButton-Info.plist */, + B7C623B717F383CE00928F91 /* InfoPlist.strings */, + B7C623BA17F383CE00928F91 /* CCButton-Prefix.pch */, + B7C623C317F3868C00928F91 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B7C623CF17F38B7800928F91 /* CCControl */ = { + isa = PBXGroup; + children = ( + B7C623D017F38B7800928F91 /* Supporting Files */, + B72D1DC118612CA70091252F /* CCBPControl.h */, + B72D1DC218612CA70091252F /* CCBPControl.m */, + ); + path = CCControl; + sourceTree = ""; + }; + B7C623D017F38B7800928F91 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B7C623D117F38B7800928F91 /* CCControl-Info.plist */, + B7C623D217F38B7800928F91 /* InfoPlist.strings */, + B7C623D517F38B7800928F91 /* CCControl-Prefix.pch */, + B7C623DC17F392FE00928F91 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B7D0917E17C2C12A0007FE7F /* Products */ = { + isa = PBXGroup; + children = ( + B7D0918417C2C12B0007FE7F /* libcocos2d.a */, + B7C048EF18A4653B0038C53E /* libObjectiveChipmunk.a */, + ); + name = Products; + sourceTree = ""; + }; + B7D0918717C2C1310007FE7F /* Cocos2d */ = { + isa = PBXGroup; + children = ( + B7D0917D17C2C12A0007FE7F /* cocos2d-osx.xcodeproj */, + ); + name = Cocos2d; + sourceTree = ""; + }; + B7EE699718188E0900B983FE /* CCTextField */ = { + isa = PBXGroup; + children = ( + B7EE699818188E0900B983FE /* Supporting Files */, + B7EE69AE1819822500B983FE /* CCBPTextField.h */, + B7EE69AF1819822500B983FE /* CCBPTextField.m */, + ); + path = CCTextField; + sourceTree = ""; + }; + B7EE699818188E0900B983FE /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B7EE69AC18188F2800B983FE /* CCBPProperties.plist */, + B7EE699918188E0900B983FE /* CCTextField-Info.plist */, + B7EE699A18188E0900B983FE /* InfoPlist.strings */, + B7EE699D18188E0900B983FE /* CCTextField-Prefix.pch */, + B7EE69A818188EF900B983FE /* Icon.png */, + B7EE69A918188EF900B983FE /* Icon@2x.png */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B7EE69FA1819EE0D00B983FE /* CCLayoutBox */ = { + isa = PBXGroup; + children = ( + B7EE69FB1819EE0D00B983FE /* Supporting Files */, + B72D1DC718612CF50091252F /* CCBPLayoutBox.h */, + B72D1DC818612CF50091252F /* CCBPLayoutBox.m */, + ); + path = CCLayoutBox; + sourceTree = ""; + }; + B7EE69FB1819EE0D00B983FE /* Supporting Files */ = { + isa = PBXGroup; + children = ( + B7EE6A0B1819EF1500B983FE /* CCBPProperties.plist */, + B7EE6A0C1819EF1500B983FE /* Icon.png */, + B7EE6A0D1819EF1500B983FE /* Icon@2x.png */, + B7EE69FC1819EE0D00B983FE /* CCLayoutBox-Info.plist */, + B7EE69FD1819EE0D00B983FE /* InfoPlist.strings */, + B7EE6A001819EE0D00B983FE /* CCLayoutBox-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + B7F02D4517D12D9E008A2E2D /* About Box */ = { + isa = PBXGroup; + children = ( + B7DE84951937C6380039FB72 /* SpriteBuilder-logo.png */, + B7DE84911937B18B0039FB72 /* signup-bg.png */, + B7DE84921937B18B0039FB72 /* signup-bottom.png */, + B7F02D4617D12DB1008A2E2D /* about-bg.png */, + B7F02D4717D12DB1008A2E2D /* about-bg@2x.png */, + ); + name = "About Box"; + sourceTree = ""; + }; + D2E0167218D782B500927430 /* SpriteBuilderCommands */ = { + isa = PBXGroup; + children = ( + D2E0167518D782CC00927430 /* SpriteBuilderCommand.h */, + D2E0167618D782CC00927430 /* SpriteBuilderCommand.m */, + ); + name = SpriteBuilderCommands; + sourceTree = ""; + }; + DC05E76718D0A9BD00592A1E /* SBButtonNode */ = { + isa = PBXGroup; + children = ( + DC05E76818D0A9BD00592A1E /* CCBPluginSBButtonNode.h */, + DC05E76918D0A9BD00592A1E /* CCBPluginSBButtonNode.m */, + DC05E76A18D0A9BD00592A1E /* CCBPProperties.plist */, + DC05E76B18D0A9BD00592A1E /* Icon.png */, + DC05E76C18D0A9BD00592A1E /* Icon@2x.png */, + ); + path = SBButtonNode; + sourceTree = ""; + }; + DC05E76D18D0A9BD00592A1E /* SBControlNode */ = { + isa = PBXGroup; + children = ( + DC05E76E18D0A9BD00592A1E /* CCBPluginSBControlNode.h */, + DC05E76F18D0A9BD00592A1E /* CCBPluginSBControlNode.m */, + DC05E77018D0A9BD00592A1E /* CCBPProperties.plist */, + ); + path = SBControlNode; + sourceTree = ""; + }; + DC6802F2189145830060BE39 /* SKSpriteNode */ = { + isa = PBXGroup; + children = ( + DC6802F3189145830060BE39 /* CCBPluginSKSpriteNode.h */, + DC6802F4189145830060BE39 /* CCBPluginSKSpriteNode.m */, + DC6802F5189145840060BE39 /* CCBPProperties.plist */, + DC6802F6189145840060BE39 /* Icon.png */, + DC6802F7189145840060BE39 /* Icon@2x.png */, + ); + path = SKSpriteNode; + sourceTree = ""; + }; + DC680309189146900060BE39 /* SKLabelNode */ = { + isa = PBXGroup; + children = ( + DC68030A189146900060BE39 /* CCBPluginSKLabelNode.h */, + DC68030B189146900060BE39 /* CCBPluginSKLabelNode.m */, + DC68030C189146900060BE39 /* CCBPProperties.plist */, + DC68030D189146900060BE39 /* Icon.png */, + DC68030E189146900060BE39 /* Icon@2x.png */, + ); + path = SKLabelNode; + sourceTree = ""; + }; + DC68032D189156A60060BE39 /* SKSpriteNodeWithColor */ = { + isa = PBXGroup; + children = ( + DC68032E189156A60060BE39 /* CCBPluginSKColorSpriteNode.h */, + DC68032F189156A60060BE39 /* CCBPluginSKColorSpriteNode.m */, + DC680330189156A60060BE39 /* CCBPProperties.plist */, + DC680331189156A60060BE39 /* Icon.png */, + DC680332189156A60060BE39 /* Icon@2x.png */, + ); + path = SKSpriteNodeWithColor; + sourceTree = ""; + }; + DCB9F1411890500E00128D78 /* SpriteKitNodes */ = { + isa = PBXGroup; + children = ( + DCFB064218E32BBD00DF02A0 /* SKFile */, + DCB9F15A1890607D00128D78 /* SKNode */, + DC680309189146900060BE39 /* SKLabelNode */, + DC6802F2189145830060BE39 /* SKSpriteNode */, + DC68032D189156A60060BE39 /* SKSpriteNodeWithColor */, + DC05E76D18D0A9BD00592A1E /* SBControlNode */, + DC05E76718D0A9BD00592A1E /* SBButtonNode */, + DCB9F14B1890506E00128D78 /* compatibility categories */, + ); + path = SpriteKitNodes; + sourceTree = ""; + }; + DCB9F14B1890506E00128D78 /* compatibility categories */ = { + isa = PBXGroup; + children = ( + DC68031918914E650060BE39 /* CCNode+SKNode.h */, + DC68031A18914E650060BE39 /* CCNode+SKNode.m */, + ); + name = "compatibility categories"; + sourceTree = ""; + }; + DCB9F15A1890607D00128D78 /* SKNode */ = { + isa = PBXGroup; + children = ( + DCB9F15B1890607D00128D78 /* CCBPluginSKNode.h */, + DCB9F15C1890607D00128D78 /* CCBPluginSKNode.m */, + DCB9F15D1890607D00128D78 /* CCBPProperties.plist */, + DCB9F1601890607D00128D78 /* Icon.png */, + DCB9F1611890607D00128D78 /* Icon@2x.png */, + ); + path = SKNode; + sourceTree = ""; + }; + DCFB064218E32BBD00DF02A0 /* SKFile */ = { + isa = PBXGroup; + children = ( + DCFB064C18E32BFA00DF02A0 /* CCBPluginSKFile.h */, + DCFB064D18E32BFA00DF02A0 /* CCBPluginSKFile.m */, + DCFB064518E32BBD00DF02A0 /* CCBPProperties.plist */, + DCFB064618E32BBD00DF02A0 /* Icon.png */, + DCFB064718E32BBD00DF02A0 /* Icon@2x.png */, + ); + path = SKFile; + sourceTree = ""; + }; + E3214C3F15D3B9D0002413A7 /* Custom Properties */ = { + isa = PBXGroup; + children = ( + E3214C4015D3BF4D002413A7 /* CustomPropSettingsWindow.xib */, + E3214C4215D3C29D002413A7 /* CustomPropSettingsWindow.h */, + E3214C4315D3C29D002413A7 /* CustomPropSettingsWindow.m */, + E3214C4515D3C3AF002413A7 /* CustomPropSetting.h */, + E3214C4615D3C3AF002413A7 /* CustomPropSetting.m */, + ); + name = "Custom Properties"; + sourceTree = ""; + }; + E32BBCAA156135C300C58395 /* HashValue */ = { + isa = PBXGroup; + children = ( + E32BBCAF1561361200C58395 /* HashValue.h */, + E32BBCB01561361200C58395 /* HashValue.m */, + ); + name = HashValue; + sourceTree = ""; + }; + E335CAED1576031B00A612EE /* Sequencer */ = { + isa = PBXGroup; + children = ( + 5811305E1639BF1200A86D70 /* SequencerTimelineDrawDelegate.h */, + E335CAF1157603C200A612EE /* SequencerHandler.h */, + E335CAF2157603C200A612EE /* SequencerHandler.m */, + E335CAF4157649F900A612EE /* SequencerExpandBtnCell.h */, + E335CAF5157649F900A612EE /* SequencerExpandBtnCell.m */, + E335CAF91576592600A612EE /* SequencerCell.h */, + E335CAFA1576592600A612EE /* SequencerCell.m */, + E335CB011577838800A612EE /* SequencerOutlineView.h */, + E335CB021577838800A612EE /* SequencerOutlineView.m */, + E335CB0D1578C2C600A612EE /* SequencerStructureCell.h */, + E335CB0E1578C2C600A612EE /* SequencerStructureCell.m */, + E3E8B4851578F8F800373983 /* SequencerTimelineView.h */, + E3E8B4861578F8F800373983 /* SequencerTimelineView.m */, + E3E8B49F157CC57E00373983 /* SequencerScrubberSelectionView.h */, + E3E8B4A0157CC57E00373983 /* SequencerScrubberSelectionView.m */, + E3E8B4A6157CD67000373983 /* SequencerSequence.h */, + E3E8B4A7157CD67000373983 /* SequencerSequence.m */, + E36ECCE3158648EE003C177E /* SequencerNodeProperty.h */, + E36ECCE4158648EE003C177E /* SequencerNodeProperty.m */, + E36ECD0B15868F57003C177E /* SequencerKeyframe.h */, + E36ECD0C15868F57003C177E /* SequencerKeyframe.m */, + E3A0ED56159118F3000BDF4B /* SequencerSettingsWindow.xib */, + E3A0ED58159119E7000BDF4B /* SequencerSettingsWindow.h */, + E3A0ED59159119E7000BDF4B /* SequencerSettingsWindow.m */, + E3FD4DDD15A455B90032C2DD /* SequencerSequenceArrayController.h */, + E3FD4DDE15A455B90032C2DD /* SequencerSequenceArrayController.m */, + E3F73DB41593908A00D74084 /* SequencerDurationWindow.h */, + E3F73DB51593908A00D74084 /* SequencerDurationWindow.m */, + E3F73DB71593916E00D74084 /* SequencerDurationWindow.xib */, + E3926186159C69D20034FF1D /* SequencerKeyframeEasing.h */, + E3926187159C69D20034FF1D /* SequencerKeyframeEasing.m */, + E3FD4DCE15A09F6D0032C2DD /* SequencerKeyframeEasingWindow.xib */, + E3FD4DD115A0A2C10032C2DD /* SequencerKeyframeEasingWindow.h */, + E3FD4DD215A0A2C10032C2DD /* SequencerKeyframeEasingWindow.m */, + E33C2AB415CAE2580043EF9B /* SequencerStretchWindow.xib */, + E33C2AB615CAE3950043EF9B /* SequencerStretchWindow.h */, + E33C2AB715CAE3960043EF9B /* SequencerStretchWindow.m */, + E33C2AAD15C9A0D40043EF9B /* SequencerUtil.h */, + E33C2AAE15C9A0D40043EF9B /* SequencerUtil.m */, + E3D6BA1C16C46E11006AFE0A /* SequencerSoundChannel.h */, + E3D6BA1D16C46E11006AFE0A /* SequencerSoundChannel.m */, + E3D6BA2116C46E41006AFE0A /* SequencerCallbackChannel.h */, + E3D6BA2216C46E41006AFE0A /* SequencerCallbackChannel.m */, + E3D6BA2416C46E91006AFE0A /* SequencerChannel.h */, + E3D6BA2516C46E91006AFE0A /* SequencerChannel.m */, + E3DA6FEC16CAEC7800B12FFB /* SequencerPopoverHandler.h */, + E3DA6FED16CAEC7800B12FFB /* SequencerPopoverHandler.m */, + E3DA6FF116CAF7D400B12FFB /* SequencerPopoverView.xib */, + E312973116CC377700A09155 /* SequencerPopoverBlock.h */, + E312973216CC377700A09155 /* SequencerPopoverBlock.m */, + E312972D16CC33B200A09155 /* SequencerPopoverBlock.xib */, + E312973416CC677400A09155 /* SequencerPopoverSound.xib */, + E312973616CC67CA00A09155 /* SequencerPopoverSound.h */, + E312973716CC67CA00A09155 /* SequencerPopoverSound.m */, + 8045F13A183AF1DC0082BD94 /* SequencerButtonCell.h */, + 8045F13B183AF1DC0082BD94 /* SequencerButtonCell.m */, + 921EEADE18A5884300D864C2 /* SequencerJoints.h */, + 921EEADF18A5884300D864C2 /* SequencerJoints.m */, + E525F6D55650A58DC2F3698B /* AnimationPlaybackManager.m */, + E525FFA89CA744B94C708834 /* AnimationPlaybackManager.h */, + ); + name = Sequencer; + sourceTree = ""; + }; + E335CB071577C55F00A612EE /* Node info */ = { + isa = PBXGroup; + children = ( + E3B4223014E5CF96004547D6 /* NodeInfo.h */, + E3B4223114E5CF97004547D6 /* NodeInfo.m */, + E335CB081577C5FB00A612EE /* CCNode+NodeInfo.h */, + E335CB091577C5FB00A612EE /* CCNode+NodeInfo.m */, + ); + name = "Node info"; + sourceTree = ""; + }; + E346286C155C23100043EAB1 /* Rulers, Guides & Notes */ = { + isa = PBXGroup; + children = ( + E34E5D6415357CF2000201FB /* RulersLayer.h */, + E34E5D6515357CF2000201FB /* RulersLayer.m */, + E3A16AF11536D096004B528A /* GuidesLayer.h */, + E3A16AF21536D096004B528A /* GuidesLayer.m */, + 4D0C1E7218F472D600B028CA /* SnapLayer.h */, + 4D0C1E7318F472D600B028CA /* SnapLayer.m */, + E3F3F83D153C72A3005443EE /* NotesLayer.h */, + E3F3F83E153C72A3005443EE /* NotesLayer.m */, + E3F3F846153D9126005443EE /* StickyNoteEditView.xib */, + E3F3F841153C7700005443EE /* StickyNote.h */, + E3F3F842153C7700005443EE /* StickyNote.m */, + ); + name = "Rulers, Guides & Notes"; + sourceTree = ""; + }; + E346286D155D21F10043EAB1 /* Publishing */ = { + isa = PBXGroup; + children = ( + 8319539318FECDF800ED4BA0 /* PublishingOperations */, + E346286E155D22290043EAB1 /* CCBPublisher.h */, + E346286F155D22290043EAB1 /* CCBPublisher.m */, + E3618D5416655041009F5805 /* CCBPublisherTemplate.h */, + E3618D5516655041009F5805 /* CCBPublisherTemplate.m */, + E525FD2D849749BB67455943 /* DateCache.m */, + E525FDB29C5EE936AB40BE96 /* DateCache.h */, + E525F7EE37BDD5941E6C0AC9 /* PublishRenamedFilesLookup.m */, + E525F9A9F017343391589C8B /* PublishRenamedFilesLookup.h */, + E525F6FADF087E6FE3765DC9 /* PublishingTaskStatusProgress.m */, + E525F876D70C7C45655B870F /* PublishingTaskStatusProgress.h */, + E525F0A6B228717C246675C0 /* PublishLogging.h */, + ); + name = Publishing; + sourceTree = ""; + }; + E35392461518AD0A00471721 /* Core */ = { + isa = PBXGroup; + children = ( + E3D59123150F5367004180CA /* CCBFile */, + E3B7AEC714E3193500DFD402 /* CCNode */, + B7EE69FA1819EE0D00B983FE /* CCLayoutBox */, + E3C365ED14E9E4D1007CD5FF /* CCSprite */, + B7C3532417F65547005697C1 /* CCSprite9Slice */, + E35DBB8214F225D30070A6E4 /* CCNodeColor */, + E35DBB9A14F244BC0070A6E4 /* CCNodeGradient */, + E35DBBCE14F2AA360070A6E4 /* CCLabelBMFont */, + E35DBBEB14F3E2390070A6E4 /* CCLabelTTF */, + E35DBC0B14F4D72B0070A6E4 /* CCParticleSystem */, + ); + name = Core; + sourceTree = ""; + }; + E35392481518AD4100471721 /* UI */ = { + isa = PBXGroup; + children = ( + B7C623CF17F38B7800928F91 /* CCControl */, + B7C623B417F383CE00928F91 /* CCButton */, + B73788DB1804AC5E0076A88C /* CCScrollView */, + B7EE699718188E0900B983FE /* CCTextField */, + B729AC54181F091800BA0D9C /* CCSlider */, + ); + name = UI; + sourceTree = ""; + }; + E35A134E15B038D700C9AA15 /* ThoMoNetworking */ = { + isa = PBXGroup; + children = ( + E35A134F15B038D700C9AA15 /* ThoMoClient */, + E35A135315B038D700C9AA15 /* ThoMoClientStub.h */, + E35A135415B038D700C9AA15 /* ThoMoNetworking.h */, + E35A135515B038D700C9AA15 /* ThoMoNetworkStub.h */, + E35A135615B038D700C9AA15 /* ThoMoNetworkStub.m */, + E35A135715B038D700C9AA15 /* ThoMoServer */, + E35A135B15B038D700C9AA15 /* ThoMoServerStub.h */, + E35A135C15B038D700C9AA15 /* ThoMoTCPConnection.h */, + E35A135D15B038D700C9AA15 /* ThoMoTCPConnection.m */, + E35A135E15B038D700C9AA15 /* ThoMoTCPConnectionDelegateProtocol.h */, + ); + path = ThoMoNetworking; + sourceTree = ""; + }; + E35A134F15B038D700C9AA15 /* ThoMoClient */ = { + isa = PBXGroup; + children = ( + E35A135015B038D700C9AA15 /* ThoMoClientDelegateProtocol.h */, + E35A135115B038D700C9AA15 /* ThoMoClientStub.m */, + E35A135215B038D700C9AA15 /* ThoMoClientStub_private.h */, + ); + path = ThoMoClient; + sourceTree = ""; + }; + E35A135715B038D700C9AA15 /* ThoMoServer */ = { + isa = PBXGroup; + children = ( + E35A135815B038D700C9AA15 /* ThoMoServerDelegateProtocol.h */, + E35A135915B038D700C9AA15 /* ThoMoServerStub.m */, + E35A135A15B038D700C9AA15 /* ThoMoServerStub_private.h */, + ); + path = ThoMoServer; + sourceTree = ""; + }; + E35DBB8214F225D30070A6E4 /* CCNodeColor */ = { + isa = PBXGroup; + children = ( + E35DBB8314F225D30070A6E4 /* Supporting Files */, + B78AE44917E263B20028BE0B /* CCBPNodeColor.h */, + B78AE44A17E263B20028BE0B /* CCBPNodeColor.m */, + ); + name = CCNodeColor; + path = CCLayerColor; + sourceTree = ""; + }; + E35DBB8314F225D30070A6E4 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCA915E416BF00CF95EF /* Icon.png */, + E35DBB8414F225D30070A6E4 /* CCLayerColor-Info.plist */, + E35DBB8514F225D30070A6E4 /* InfoPlist.strings */, + E35DBB8814F225D30070A6E4 /* CCLayerColor-Prefix.pch */, + E35DBB8F14F226560070A6E4 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E35DBB9A14F244BC0070A6E4 /* CCNodeGradient */ = { + isa = PBXGroup; + children = ( + E35DBB9B14F244BC0070A6E4 /* Supporting Files */, + B78AE44C17E263FC0028BE0B /* CCBPNodeGradient.h */, + B78AE44D17E263FC0028BE0B /* CCBPNodeGradient.m */, + ); + name = CCNodeGradient; + path = CCLayerGradient; + sourceTree = ""; + }; + E35DBB9B14F244BC0070A6E4 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCAB15E416D200CF95EF /* Icon.png */, + E35DBB9C14F244BC0070A6E4 /* CCLayerGradient-Info.plist */, + E35DBB9D14F244BC0070A6E4 /* InfoPlist.strings */, + E35DBBA014F244BC0070A6E4 /* CCLayerGradient-Prefix.pch */, + E35DBBA714F245490070A6E4 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E35DBBCE14F2AA360070A6E4 /* CCLabelBMFont */ = { + isa = PBXGroup; + children = ( + E35DBBCF14F2AA360070A6E4 /* Supporting Files */, + B72D1DC418612CD50091252F /* CCBPLabelBMFont.h */, + B72D1DC518612CD50091252F /* CCBPLabelBMFont.m */, + ); + path = CCLabelBMFont; + sourceTree = ""; + }; + E35DBBCF14F2AA360070A6E4 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCAF15E4170400CF95EF /* Icon.png */, + E35DBBD014F2AA360070A6E4 /* CCLabelBMFont-Info.plist */, + E35DBBD114F2AA360070A6E4 /* InfoPlist.strings */, + E35DBBD414F2AA360070A6E4 /* CCLabelBMFont-Prefix.pch */, + E35DBBDB14F2AB740070A6E4 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E35DBBDD14F3D1830070A6E4 /* Configurations */ = { + isa = PBXGroup; + children = ( + E35DBBDE14F3D1B60070A6E4 /* FontListTTF.plist */, + E3B7BC9B15E3B7F100CF95EF /* NodePlugInsList.plist */, + E3B19F6C15E65229000B023E /* DefaultResourcesList.plist */, + ); + name = Configurations; + sourceTree = ""; + }; + E35DBBEB14F3E2390070A6E4 /* CCLabelTTF */ = { + isa = PBXGroup; + children = ( + E35DBBEC14F3E2390070A6E4 /* Supporting Files */, + E3A16AF41536D69A004B528A /* CCBPLabelTTF.h */, + E3A16AF51536D69A004B528A /* CCBPLabelTTF.m */, + ); + path = CCLabelTTF; + sourceTree = ""; + }; + E35DBBEC14F3E2390070A6E4 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCB115E4171700CF95EF /* Icon.png */, + E35DBBED14F3E2390070A6E4 /* CCLabelTTF-Info.plist */, + E35DBBEE14F3E2390070A6E4 /* InfoPlist.strings */, + E35DBBF114F3E2390070A6E4 /* CCLabelTTF-Prefix.pch */, + E35DBBF814F3E29E0070A6E4 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E35DBC0B14F4D72B0070A6E4 /* CCParticleSystem */ = { + isa = PBXGroup; + children = ( + E35DBC0C14F4D72B0070A6E4 /* Supporting Files */, + E325F65314F5749800D29BCF /* CCBPParticleSystem.h */, + E325F65414F5749800D29BCF /* CCBPParticleSystem.m */, + ); + path = CCParticleSystem; + sourceTree = ""; + }; + E35DBC0C14F4D72B0070A6E4 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCB915E4E14200CF95EF /* Icon.png */, + E35DBC0D14F4D72B0070A6E4 /* CCParticleSystem-Info.plist */, + E35DBC0E14F4D72B0070A6E4 /* InfoPlist.strings */, + E35DBC1114F4D72B0070A6E4 /* CCParticleSystem-Prefix.pch */, + E35DBC1814F4D7D50070A6E4 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E36F3C3A152C756D00AAD805 /* RelativePath */ = { + isa = PBXGroup; + children = ( + E36F3C3B152C756D00AAD805 /* NSString+RelativePath.h */, + E36F3C3C152C756D00AAD805 /* NSString+RelativePath.m */, + ); + path = RelativePath; + sourceTree = ""; + }; + E380B24A1642FC240006D31C /* Tupac */ = { + isa = PBXGroup; + children = ( + E380B24C1642FC3C0006D31C /* pvrtc.h */, + E380B24D1642FC3C0006D31C /* TexturePacker.cpp */, + E380B24E1642FC3C0006D31C /* TexturePacker.h */, + E380B24F1642FC3C0006D31C /* Tupac.h */, + E380B2501642FC3C0006D31C /* Tupac.mm */, + E39108041679365600391C3B /* MaxRectsBinPack.cpp */, + E39108051679365600391C3B /* MaxRectsBinPack.h */, + E39108061679365600391C3B /* Rect.cpp */, + E39108071679365600391C3B /* Rect.h */, + ); + name = Tupac; + sourceTree = ""; + }; + E390C77A170A2C20003E9E92 /* About Box & Email list */ = { + isa = PBXGroup; + children = ( + E390C77B170A2C9B003E9E92 /* AboutWindow.h */, + E390C77C170A2C9B003E9E92 /* AboutWindow.m */, + E390C77D170A2C9B003E9E92 /* AboutWindow.xib */, + B7DE848E1937A8390039FB72 /* RegistrationWindow.h */, + B7DE848F1937A8390039FB72 /* RegistrationWindow.m */, + B7DE848C1937A8030039FB72 /* RegistrationWindow.xib */, + ); + name = "About Box & Email list"; + sourceTree = ""; + }; + E398C01D14FB813C0078E771 /* PlugIns (Exporters) */ = { + isa = PBXGroup; + children = ( + E398C02414FB81A30078E771 /* Cocos2D iPhone */, + 92101C2C1891F1BB0004F93B /* CCBPublishDelegate.h */, + ); + name = "PlugIns (Exporters)"; + path = ccBuilder; + sourceTree = ""; + }; + E398C02414FB81A30078E771 /* Cocos2D iPhone */ = { + isa = PBXGroup; + children = ( + E398C02514FB81A30078E771 /* Supporting Files */, + E398C03914FB8F850078E771 /* CCBXCocos2diPhone.h */, + E398C03A14FB8F850078E771 /* CCBXCocos2diPhone.m */, + E3F2C21114FC157E007B660D /* CCBXCocos2diPhoneWriter.h */, + E3F2C21214FC157E007B660D /* CCBXCocos2diPhoneWriter.m */, + ); + name = "Cocos2D iPhone"; + path = "../Cocos2D iPhone"; + sourceTree = ""; + }; + E398C02514FB81A30078E771 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E398C02614FB81A30078E771 /* Cocos2D iPhone-Info.plist */, + E398C02714FB81A30078E771 /* InfoPlist.strings */, + E398C02A14FB81A30078E771 /* Cocos2D iPhone-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E3AF6CD615F0A77F0048DB2A /* Help */ = { + isa = PBXGroup; + children = ( + E3AF6CD715F0A7E10048DB2A /* HelpWindow.xib */, + E3AF6CD915F0A9BC0048DB2A /* HelpWindow.h */, + E3AF6CDA15F0A9BC0048DB2A /* HelpWindow.m */, + E3AF6CE215F0DBA90048DB2A /* HelpPage.h */, + E3AF6CE315F0DBA90048DB2A /* HelpPage.m */, + E3347419169DC5A6000737CC /* APIDocsWindow.h */, + E334741A169DC5A6000737CC /* APIDocsWindow.m */, + E334741B169DC5A6000737CC /* APIDocsWindow.xib */, + ); + name = Help; + sourceTree = ""; + }; + E3AF6CDC15F0CF6C0048DB2A /* MMMarkdown */ = { + isa = PBXGroup; + children = ( + E3AF6CDD15F0CF8B0048DB2A /* libMMMarkdown-Mac.a */, + E3AF6CDE15F0CF8B0048DB2A /* MMMarkdown.h */, + ); + name = MMMarkdown; + sourceTree = ""; + }; + E3B7AEC714E3193500DFD402 /* CCNode */ = { + isa = PBXGroup; + children = ( + E3B7AEC814E3193500DFD402 /* Supporting Files */, + B72D1DCA18612D100091252F /* CCBPNode.h */, + B72D1DCB18612D100091252F /* CCBPNode.m */, + ); + path = CCNode; + sourceTree = ""; + }; + E3B7AEC814E3193500DFD402 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCA315E4167900CF95EF /* Icon.png */, + E3B7AEC914E3193500DFD402 /* CCNode-Info.plist */, + E3B7AECA14E3193500DFD402 /* InfoPlist.strings */, + E3B7AECD14E3193500DFD402 /* CCNode-Prefix.pch */, + E3B7AEE114E336C300DFD402 /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E3B7AED114E31A7800DFD402 /* PlugIns (Nodes) */ = { + isa = PBXGroup; + children = ( + DCB9F1411890500E00128D78 /* SpriteKitNodes */, + E35392461518AD0A00471721 /* Core */, + E35392481518AD4100471721 /* UI */, + B79F90E717FF335000908504 /* Physics */, + ); + name = "PlugIns (Nodes)"; + sourceTree = ""; + }; + E3B7AEDA14E3242600DFD402 /* PlugIn Manager */ = { + isa = PBXGroup; + children = ( + E3B7AEDB14E3246100DFD402 /* PlugInManager.h */, + E3B7AEDC14E3246100DFD402 /* PlugInManager.m */, + E3B7AEDE14E32E7F00DFD402 /* PlugInNode.h */, + E3B7AEDF14E32E7F00DFD402 /* PlugInNode.m */, + E398C03114FB86D20078E771 /* PlugInExport.h */, + E398C03214FB86D20078E771 /* PlugInExport.m */, + E398C03514FB8A430078E771 /* CCBX.h */, + E398C03614FB8A430078E771 /* CCBX.m */, + B7AC69B817A2F4470041B8BD /* PlugInNodeViewHandler.h */, + B7AC69B917A2F4470041B8BD /* PlugInNodeViewHandler.m */, + B7AC69BE17A3129C0041B8BD /* PlugInNodeCollectionView.h */, + B7AC69BF17A3129C0041B8BD /* PlugInNodeCollectionView.m */, + ); + name = "PlugIn Manager"; + sourceTree = ""; + }; + E3B7AEE614E33E5700DFD402 /* Inspector Properties */ = { + isa = PBXGroup; + children = ( + E3B7AEED14E34A4D00DFD402 /* InspectorValue.h */, + E3B7AEEE14E34A4D00DFD402 /* InspectorValue.m */, + E3214C4815D40F01002413A7 /* InspectorCustom.h */, + E3214C4915D40F01002413A7 /* InspectorCustom.m */, + E3214C4A15D40F01002413A7 /* InspectorCustom.xib */, + E3214C5A15D54355002413A7 /* InspectorCustomEdit.h */, + E3214C5B15D54355002413A7 /* InspectorCustomEdit.m */, + E3214C5C15D54355002413A7 /* InspectorCustomEdit.xib */, + E32D8CC414EC257000F4BD5E /* InspectorCodeConnections.xib */, + E32D8CC614EC25D800F4BD5E /* InspectorCodeConnections.h */, + E32D8CC714EC25D800F4BD5E /* InspectorCodeConnections.m */, + E3C9CCB7161D08B8008A3784 /* InspectorCodeConnectionsJS.xib */, + E3C9CCB9161D0BBF008A3784 /* InspectorCodeConnectionsJS.h */, + E3C9CCBA161D0BBF008A3784 /* InspectorCodeConnectionsJS.m */, + E3B4223314E5E68A004547D6 /* InspectorSeparator.xib */, + E3B4223514E5E6AC004547D6 /* InspectorSeparator.h */, + E3B4223614E5E6AC004547D6 /* InspectorSeparator.m */, + E325F64E14F5622200D29BCF /* InspectorSeparatorSub.xib */, + E325F65014F5669600D29BCF /* InspectorSeparatorSub.h */, + E325F65114F5669600D29BCF /* InspectorSeparatorSub.m */, + E3B7AEE814E33F4C00DFD402 /* InspectorPosition.xib */, + E3DA6FF316CB293000B12FFB /* InspectorPopoverPosition.xib */, + E3B7AEEA14E342E200DFD402 /* InspectorPosition.h */, + E3B7AEEB14E342E200DFD402 /* InspectorPosition.m */, + E3FEA8A614E45EEF00119FBE /* InspectorSize.xib */, + E3FEA8A814E45F1000119FBE /* InspectorSize.h */, + E3FEA8A914E45F1000119FBE /* InspectorSize.m */, + E3FEA8AB14E47C5700119FBE /* InspectorPoint.xib */, + E3FEA8AD14E47C7500119FBE /* InspectorPoint.h */, + E3FEA8AE14E47C7500119FBE /* InspectorPoint.m */, + E3FEA8B014E4872D00119FBE /* InspectorPointLock.xib */, + E3FEA8B214E4874C00119FBE /* InspectorPointLock.h */, + E3FEA8B314E4874C00119FBE /* InspectorPointLock.m */, + E3FEA8B514E4929300119FBE /* InspectorScaleLock.xib */, + E3DA6FF516CB2AC000B12FFB /* InspectorPopoverScaleLock.xib */, + E3FEA8B714E492D900119FBE /* InspectorScaleLock.h */, + E3FEA8B814E492D900119FBE /* InspectorScaleLock.m */, + E3FEA8BA14E4989900119FBE /* InspectorDegrees.xib */, + E3DA6FF716CB2B2900B12FFB /* InspectorPopoverDegrees.xib */, + E3FEA8BC14E498B600119FBE /* InspectorDegrees.h */, + E3FEA8BD14E498B700119FBE /* InspectorDegrees.m */, + E3FEA8BF14E49D8300119FBE /* InspectorInteger.xib */, + E3B4220F14E49DEB004547D6 /* InspectorInteger.h */, + E3B4221014E49DEB004547D6 /* InspectorInteger.m */, + 929C9FBD187E38AC009ED9DF /* InspectorPopoverFloat.xib */, + E35DBBFA14F3EE210070A6E4 /* InspectorFloat.xib */, + E35DBBFC14F3EE400070A6E4 /* InspectorFloat.h */, + E35DBBFD14F3EE400070A6E4 /* InspectorFloat.m */, + E3B5EE8616D6E0A900C07990 /* InspectorFloatXY.h */, + E3B5EE8716D6E0A900C07990 /* InspectorFloatXY.m */, + E3B5EE8816D6E0AA00C07990 /* InspectorFloatXY.xib */, + E334069615517225000FBD0B /* InspectorFloatScale.xib */, + E318CB3816D83F3B00348E0D /* InspectorPopoverFloatXY.xib */, + E33406991551725F000FBD0B /* InspectorFloatScale.h */, + E334069A1551725F000FBD0B /* InspectorFloatScale.m */, + E325F64414F531F500D29BCF /* InspectorFloatVar.xib */, + E325F64614F5336E00D29BCF /* InspectorFloatVar.h */, + E325F64714F5336E00D29BCF /* InspectorFloatVar.m */, + 922E8EF418BFE47A008E1764 /* InspectorFloatCheck.h */, + 922E8EF518BFE47A008E1764 /* InspectorFloatCheck.m */, + 922E8EF618BFE47A008E1764 /* InspectorFloatCheck.xib */, + 92F0961A18F891A900D47A94 /* InspectorEnabledFloat.h */, + 92F0961B18F891A900D47A94 /* InspectorEnabledFloat.m */, + 92F0961C18F891A900D47A94 /* InspectorEnabledFloat.xib */, + E3B4221214E4A350004547D6 /* InspectorCheck.xib */, + E3B4221414E4A380004547D6 /* InspectorCheck.h */, + E3B4221514E4A381004547D6 /* InspectorCheck.m */, + E3B4221714E4BE6B004547D6 /* InspectorSpriteFrame.xib */, + E3DA6FF916CB2B8700B12FFB /* InspectorPopoverSpriteFrame.xib */, + E3B4221914E4BE87004547D6 /* InspectorSpriteFrame.h */, + E3B4221A14E4BE87004547D6 /* InspectorSpriteFrame.m */, + E35DBC2414F4FEF80070A6E4 /* InspectorTexture.xib */, + E35DBC2614F4FF3E0070A6E4 /* InspectorTexture.h */, + E35DBC2714F4FF3F0070A6E4 /* InspectorTexture.m */, + E3DA6FFB16CB2BEB00B12FFB /* InspectorPopoverByte.xib */, + E3B4221E14E58C75004547D6 /* InspectorByte.h */, + E3B4221F14E58C75004547D6 /* InspectorByte.m */, + E3B4221C14E58C35004547D6 /* InspectorByte.xib */, + E3B4222114E58FEE004547D6 /* InspectorColor3.xib */, + E3DA6FFD16CB2C3C00B12FFB /* InspectorPopoverColor3.xib */, + E3B4222314E59034004547D6 /* InspectorColor3.h */, + E3B4222414E59035004547D6 /* InspectorColor3.m */, + B7737D4E17CC102D005F775A /* InspectorColor4.xib */, + B7737D4C17CC102D005F775A /* InspectorColor4.h */, + B7737D4D17CC102D005F775A /* InspectorColor4.m */, + E325F64914F53FD000D29BCF /* InspectorColor4FVar.xib */, + E325F64B14F53FF000D29BCF /* InspectorColor4FVar.h */, + E325F64C14F53FF000D29BCF /* InspectorColor4FVar.m */, + E3B4222614E5992F004547D6 /* InspectorFlip.xib */, + E3B4222814E59F5C004547D6 /* InspectorFlip.h */, + E3B4222914E59F5C004547D6 /* InspectorFlip.m */, + E3B4222B14E5A828004547D6 /* InspectorBlendmode.xib */, + E3B4222D14E5A848004547D6 /* InspectorBlendmode.h */, + E3B4222E14E5A849004547D6 /* InspectorBlendmode.m */, + E35DBBBE14F29E9D0070A6E4 /* InspectorFntFile.xib */, + E35DBBC014F29EF80070A6E4 /* InspectorFntFile.h */, + E35DBBC114F29EF80070A6E4 /* InspectorFntFile.m */, + E3D59132150F85D8004180CA /* InspectorCCBFile.xib */, + E3D59134150F861E004180CA /* InspectorCCBFile.h */, + E3D59135150F861E004180CA /* InspectorCCBFile.m */, + E35DBBC314F2A2900070A6E4 /* InspectorText.xib */, + E35DBBC514F2A2A40070A6E4 /* InspectorText.h */, + E35DBBC614F2A2A50070A6E4 /* InspectorText.m */, + 8076F9521862459A003C4153 /* InspectorStringSimple.xib */, + 8076F94C18624318003C4153 /* InspectorStringSimple.h */, + 8076F94D18624318003C4153 /* InspectorStringSimple.m */, + E3C65105151A3B7C00D639C0 /* InspectorString.xib */, + E3C65108151A65ED00D639C0 /* InspectorString.h */, + E3C65109151A65ED00D639C0 /* InspectorString.m */, + E35DBBE014F3DCDE0070A6E4 /* InspectorFontTTF.xib */, + E35DBBE214F3DD0A0070A6E4 /* InspectorFontTTF.h */, + E35DBBE314F3DD0A0070A6E4 /* InspectorFontTTF.m */, + E35DBC1A14F4DED00070A6E4 /* InspectorStartStop.xib */, + E35DBC1C14F4DF030070A6E4 /* InspectorStartStop.h */, + E35DBC1D14F4DF040070A6E4 /* InspectorStartStop.m */, + E35DBC1F14F4ED0D0070A6E4 /* InspectorIntegerLabeled.xib */, + E35DBC2114F4ED960070A6E4 /* InspectorIntegerLabeled.h */, + E35DBC2214F4ED970070A6E4 /* InspectorIntegerLabeled.m */, + E385A41F14F69FF300DFB12D /* InspectorBlock.xib */, + E385A42114F6A01900DFB12D /* InspectorBlock.h */, + E385A42214F6A01900DFB12D /* InspectorBlock.m */, + E3C65127151C7B8F00D639C0 /* InspectorBlockCCControl.xib */, + E3C65129151C7E3600D639C0 /* InspectorBlockCCControl.h */, + E3C6512A151C7E3600D639C0 /* InspectorBlockCCControl.m */, + 921EEB2818ADE43700D864C2 /* InspectorNodeReference.xib */, + 921EEB2A18ADE5C600D864C2 /* InspectorNodeReference.h */, + 921EEB2B18ADE5C600D864C2 /* InspectorNodeReference.m */, + 92BF8AB0192BCDF300C1BC28 /* InspectorButton.h */, + 92BF8AB1192BCDF300C1BC28 /* InspectorButton.m */, + 92BF8AB6192BCE8D00C1BC28 /* InspectorButton.xib */, + 92B91021193412A600E346B5 /* InspectorAnimation.xib */, + 92B91024193413F500E346B5 /* InspectorAnimation.h */, + 92B91025193413F500E346B5 /* InspectorAnimation.m */, + 92B6D0D9193FE1DC00FD27F4 /* InspectorPhysicsUnavailable.xib */, + 92B6D0DC193FE32100FD27F4 /* InspectorPhysicsUnavailable.h */, + 92B6D0DD193FE32100FD27F4 /* InspectorPhysicsUnavailable.m */, + ); + name = "Inspector Properties"; + sourceTree = ""; + }; + E3B7BC9D15E3B97900CF95EF /* Toolbar */ = { + isa = PBXGroup; + children = ( + E3B7BC9E15E3BCFE00CF95EF /* MainToolbarDelegate.h */, + E3B7BC9F15E3BCFE00CF95EF /* MainToolbarDelegate.m */, + ); + name = Toolbar; + path = ..; + sourceTree = ""; + }; + E3C365ED14E9E4D1007CD5FF /* CCSprite */ = { + isa = PBXGroup; + children = ( + E3C365EE14E9E4D1007CD5FF /* Supporting Files */, + B72D1DD018612D570091252F /* CCBPSprite.h */, + B72D1DD118612D570091252F /* CCBPSprite.m */, + ); + path = CCSprite; + sourceTree = ""; + }; + E3C365EE14E9E4D1007CD5FF /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCA515E4168D00CF95EF /* Icon.png */, + E3C365EF14E9E4D1007CD5FF /* CCSprite-Info.plist */, + E3C365F014E9E4D1007CD5FF /* InfoPlist.strings */, + E3C365F314E9E4D1007CD5FF /* CCSprite-Prefix.pch */, + E3C365F914E9E599007CD5FF /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E3C5C1A11504D144000CF6F3 /* Resource Manager */ = { + isa = PBXGroup; + children = ( + 92976367187775A0008F997B /* ResourceManagerPreivewAudio.h */, + 92976368187775A0008F997B /* ResourceManagerPreviewAudio.m */, + 92976369187775A0008F997B /* ResourceManagerPreviewAudio.xib */, + E3C5C1A21504D17E000CF6F3 /* ResourceManager.h */, + E3C5C1A31504D17E000CF6F3 /* ResourceManager.m */, + E3C5C1B315075CDD000CF6F3 /* ResourceManagerUtil.h */, + E3C5C1B415075CDD000CF6F3 /* ResourceManagerUtil.m */, + E3462865155BF6C50043EAB1 /* ResourceManagerOutlineHandler.h */, + E3462866155BF6C50043EAB1 /* ResourceManagerOutlineHandler.m */, + E33C2AAA15C987EB0043EF9B /* ResourceManagerOutlineView.h */, + E33C2AAB15C987EB0043EF9B /* ResourceManagerOutlineView.m */, + E3583FAF1756C228002DF0B0 /* ResourceManagerPreviewView.xib */, + E37FCAF2175D68FF009F81D6 /* ResourceManagerPreviewView.h */, + E37FCAF3175D68FF009F81D6 /* ResourceManagerPreviewView.m */, + B7AC69AE17A0A10E0041B8BD /* ResourceManagerTilelessEditorManager.h */, + B7AC69AF17A0A10E0041B8BD /* ResourceManagerTilelessEditorManager.m */, + ); + name = "Resource Manager"; + sourceTree = ""; + }; + E3C5C1A51504D30C000CF6F3 /* SCEvents */ = { + isa = PBXGroup; + children = ( + E3C5C1A61504D30C000CF6F3 /* SCConstants.h */, + E3C5C1A71504D30C000CF6F3 /* SCEvent.h */, + E3C5C1A81504D30C000CF6F3 /* SCEvent.m */, + E3C5C1A91504D30C000CF6F3 /* SCEventListenerProtocol.h */, + E3C5C1AA1504D30C000CF6F3 /* SCEvents.h */, + E3C5C1AB1504D30C000CF6F3 /* SCEvents.m */, + ); + path = SCEvents; + sourceTree = ""; + }; + E3D59123150F5367004180CA /* CCBFile */ = { + isa = PBXGroup; + children = ( + E3D59124150F5367004180CA /* Supporting Files */, + E3D59137150F8C5A004180CA /* CCBPCCBFile.h */, + E3D59138150F8C5A004180CA /* CCBPCCBFile.m */, + ); + path = CCBFile; + sourceTree = ""; + }; + E3D59124150F5367004180CA /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E3B7BCA115E4166000CF95EF /* Icon.png */, + E3D59125150F5367004180CA /* CCBFile-Info.plist */, + E3D59126150F5367004180CA /* InfoPlist.strings */, + E3D59129150F5367004180CA /* CCBFile-Prefix.pch */, + E3D59130150F5676004180CA /* CCBPProperties.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E3D839DE171356F1004F6127 /* pngquant */ = { + isa = PBXGroup; + children = ( + E3D839DA171356EC004F6127 /* pngquant */, + E3D839DB171356EC004F6127 /* pngquant-COPYING */, + ); + name = pngquant; + sourceTree = ""; + }; + E3DCFD851562611700BD7D7F /* Error handling & notifications */ = { + isa = PBXGroup; + children = ( + E3462871155D22FC0043EAB1 /* CCBWarnings.h */, + E3462872155D22FC0043EAB1 /* CCBWarnings.m */, + E3DCFD9B15629FC700BD7D7F /* TaskStatusWindow.xib */, + E3DCFD9D1562A3AD00BD7D7F /* TaskStatusWindow.h */, + E3DCFD9E1562A3AD00BD7D7F /* TaskStatusWindow.m */, + 80D06080183317F2001F27F9 /* WarningTableView.h */, + 80D06081183317F2001F27F9 /* WarningTableView.m */, + 80F936F01833F8970032454F /* WarningTableViewHandler.h */, + 80F936F11833F8970032454F /* WarningTableViewHandler.m */, + 80E97F6218370F400052647D /* WarningCell.h */, + 80E97F6318370F400052647D /* WarningCell.m */, + E525F9BDAEF872AB23D84977 /* TaskStatusUpdaterProtocol.h */, + ); + name = "Error handling & notifications"; + sourceTree = ""; + }; + E3DEF5B5169B358500B9DCF4 /* Lame */ = { + isa = PBXGroup; + children = ( + E3DEF5B6169B359C00B9DCF4 /* lame */, + E3DEF5B8169B35DF00B9DCF4 /* lame-COPYING */, + ); + name = Lame; + sourceTree = ""; + }; + E3E087611566907F008F1FDB /* JSCocoa */ = { + isa = PBXGroup; + children = ( + E3E0876515669080008F1FDB /* Info.plist */, + ); + name = JSCocoa; + path = "cocos2d-iphone/external/JSCocoa"; + sourceTree = ""; + }; + E3E8D64316B3128600742107 /* Ogg compression */ = { + isa = PBXGroup; + children = ( + E3E8D64416B3129700742107 /* oggenc */, + ); + name = "Ogg compression"; + sourceTree = ""; + }; + E3F4087216A9EEAE009A0253 /* CCZ compression */ = { + isa = PBXGroup; + children = ( + E3F4087316A9EEC5009A0253 /* ccz */, + ); + name = "CCZ compression"; + sourceTree = ""; + }; + FA98CFC5154E7D1C006E58C5 /* ccbpublish */ = { + isa = PBXGroup; + children = ( + FA98CFC6154E7D1C006E58C5 /* ccbpublish.m */, + FA98CFC8154E7D1C006E58C5 /* Supporting Files */, + ); + path = ccbpublish; + sourceTree = ""; + }; + FA98CFC8154E7D1C006E58C5 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + FA98CFC9154E7D1C006E58C5 /* ccbpublish-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 7789ABBD133AA82000CEFCC7 /* SpriteBuilder */ = { + isa = PBXNativeTarget; + buildConfigurationList = 7789ABDC133AA82000CEFCC7 /* Build configuration list for PBXNativeTarget "SpriteBuilder" */; + buildPhases = ( + DC3DD33018A948560004D2AC /* ShellScript */, + 7789ABBA133AA82000CEFCC7 /* Sources */, + 7789ABBB133AA82000CEFCC7 /* Frameworks */, + 7789ABBC133AA82000CEFCC7 /* Resources */, + 776C6897138878FB00153214 /* Copy Files (Sparkle framework) */, + E3B7AED414E31E5D00DFD402 /* Copy PlugIns */, + E3E086E315663928008F1FDB /* Copy Player */, + ); + buildRules = ( + ); + dependencies = ( + DCFB065018E32C2D00DF02A0 /* PBXTargetDependency */, + DC05E79818D0ADDC00592A1E /* PBXTargetDependency */, + DC05E79A18D0ADDC00592A1E /* PBXTargetDependency */, + 92A805C518D3CFAC004508E3 /* PBXTargetDependency */, + 926D13E618B57C4200582959 /* PBXTargetDependency */, + 92154AE218A5567400BD215C /* PBXTargetDependency */, + DC680338189157B00060BE39 /* PBXTargetDependency */, + DC680314189146C80060BE39 /* PBXTargetDependency */, + DC680316189146C80060BE39 /* PBXTargetDependency */, + DCB9F16B189060DF00128D78 /* PBXTargetDependency */, + B729AC6C181F0D1400BA0D9C /* PBXTargetDependency */, + B7EE6A091819EE6000B983FE /* PBXTargetDependency */, + B7EE69A618188EB800B983FE /* PBXTargetDependency */, + B73788EE1804AF5E0076A88C /* PBXTargetDependency */, + B79F90E517FF31A300908504 /* PBXTargetDependency */, + B7C3533317F65652005697C1 /* PBXTargetDependency */, + B7C623DA17F3902900928F91 /* PBXTargetDependency */, + B7C623BF17F384B200928F91 /* PBXTargetDependency */, + B7D0918917C2C16E0007FE7F /* PBXTargetDependency */, + E398C02F14FB82090078E771 /* PBXTargetDependency */, + E3B7AED314E31AEF00DFD402 /* PBXTargetDependency */, + E3C365F814E9E4DD007CD5FF /* PBXTargetDependency */, + E35DBB8E14F226230070A6E4 /* PBXTargetDependency */, + E35DBBA514F244FA0070A6E4 /* PBXTargetDependency */, + E35DBBD914F2AA720070A6E4 /* PBXTargetDependency */, + E35DBBF614F3E26B0070A6E4 /* PBXTargetDependency */, + E3D5912E150F53CD004180CA /* PBXTargetDependency */, + E35DBC1614F4D7920070A6E4 /* PBXTargetDependency */, + ); + name = SpriteBuilder; + productName = ccBuilder; + productReference = 7789ABBE133AA82000CEFCC7 /* SpriteBuilder.app */; + productType = "com.apple.product-type.application"; + }; + 833A5C49192B48CA001837B3 /* SpriteBuilder Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 833A5C58192B48CB001837B3 /* Build configuration list for PBXNativeTarget "SpriteBuilder Tests" */; + buildPhases = ( + 833A5C46192B48CA001837B3 /* Sources */, + 833A5C47192B48CA001837B3 /* Frameworks */, + 833A5C48192B48CA001837B3 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 9203806119465955000A8816 /* PBXTargetDependency */, + 833A5C60192B4F00001837B3 /* PBXTargetDependency */, + 833A5C57192B48CB001837B3 /* PBXTargetDependency */, + ); + name = "SpriteBuilder Tests"; + productName = "SpriteBuilder Tests"; + productReference = 833A5C4A192B48CB001837B3 /* SpriteBuilder Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 92154ACF18A5560B00BD215C /* CCPhysicsPivotJoint */ = { + isa = PBXNativeTarget; + buildConfigurationList = 92154AD818A5560B00BD215C /* Build configuration list for PBXNativeTarget "CCPhysicsPivotJoint" */; + buildPhases = ( + 92154AD018A5560B00BD215C /* Sources */, + 92154AD218A5560B00BD215C /* Frameworks */, + 92154AD418A5560B00BD215C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCPhysicsPivotJoint; + productName = CCPhysicsNode; + productReference = 92154ADB18A5560B00BD215C /* CCPhysicsPivotJoint.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + 926D13D718B57B9500582959 /* CCPhysicsPinJoint */ = { + isa = PBXNativeTarget; + buildConfigurationList = 926D13E018B57B9500582959 /* Build configuration list for PBXNativeTarget "CCPhysicsPinJoint" */; + buildPhases = ( + 926D13D818B57B9500582959 /* Sources */, + 926D13DA18B57B9500582959 /* Frameworks */, + 926D13DC18B57B9500582959 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCPhysicsPinJoint; + productName = CCPhysicsNode; + productReference = 926D13E318B57B9500582959 /* CCPhysicsPinJoint.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + 92B7900118C808B7007DF895 /* CCPhysicsSpringJoint */ = { + isa = PBXNativeTarget; + buildConfigurationList = 92B7900A18C808B7007DF895 /* Build configuration list for PBXNativeTarget "CCPhysicsSpringJoint" */; + buildPhases = ( + 92B7900218C808B7007DF895 /* Sources */, + 92B7900418C808B7007DF895 /* Frameworks */, + 92B7900618C808B7007DF895 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCPhysicsSpringJoint; + productName = CCPhysicsNode; + productReference = 92B7900D18C808B7007DF895 /* CCPhysicsSpringJoint.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B729AC51181F091800BA0D9C /* CCSlider */ = { + isa = PBXNativeTarget; + buildConfigurationList = B729AC61181F091800BA0D9C /* Build configuration list for PBXNativeTarget "CCSlider" */; + buildPhases = ( + B729AC4E181F091800BA0D9C /* Sources */, + B729AC4F181F091800BA0D9C /* Frameworks */, + B729AC50181F091800BA0D9C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCSlider; + productName = CCSlider; + productReference = B729AC52181F091800BA0D9C /* CCSlider.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B73788D81804AC5D0076A88C /* CCScrollView */ = { + isa = PBXNativeTarget; + buildConfigurationList = B73788E81804AC5E0076A88C /* Build configuration list for PBXNativeTarget "CCScrollView" */; + buildPhases = ( + B73788D51804AC5D0076A88C /* Sources */, + B73788D61804AC5D0076A88C /* Frameworks */, + B73788D71804AC5D0076A88C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCScrollView; + productName = CCScrollView; + productReference = B73788D91804AC5D0076A88C /* CCScrollView.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B79F90D717FF30DB00908504 /* CCPhysicsNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = B79F90E117FF30DC00908504 /* Build configuration list for PBXNativeTarget "CCPhysicsNode" */; + buildPhases = ( + B79F90D417FF30DB00908504 /* Sources */, + B79F90D517FF30DB00908504 /* Frameworks */, + B79F90D617FF30DB00908504 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCPhysicsNode; + productName = CCPhysicsNode; + productReference = B79F90D817FF30DB00908504 /* CCPhysicsNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B7C3532117F65547005697C1 /* CCSprite9Slice */ = { + isa = PBXNativeTarget; + buildConfigurationList = B7C3532B17F65548005697C1 /* Build configuration list for PBXNativeTarget "CCSprite9Slice" */; + buildPhases = ( + B7C3531E17F65547005697C1 /* Sources */, + B7C3531F17F65547005697C1 /* Frameworks */, + B7C3532017F65547005697C1 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCSprite9Slice; + productName = CCSprite9Slice; + productReference = B7C3532217F65547005697C1 /* CCSprite9Slice.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B7C623B017F383CE00928F91 /* CCButton */ = { + isa = PBXNativeTarget; + buildConfigurationList = B7C623BB17F383CE00928F91 /* Build configuration list for PBXNativeTarget "CCButton" */; + buildPhases = ( + B7C623AD17F383CE00928F91 /* Sources */, + B7C623AE17F383CE00928F91 /* Frameworks */, + B7C623AF17F383CE00928F91 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCButton; + productName = CCButton; + productReference = B7C623B117F383CE00928F91 /* CCButton.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B7C623CC17F38B7800928F91 /* CCControl */ = { + isa = PBXNativeTarget; + buildConfigurationList = B7C623D617F38B7800928F91 /* Build configuration list for PBXNativeTarget "CCControl" */; + buildPhases = ( + B7C623C917F38B7800928F91 /* Sources */, + B7C623CA17F38B7800928F91 /* Frameworks */, + B7C623CB17F38B7800928F91 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCControl; + productName = CCControl; + productReference = B7C623CD17F38B7800928F91 /* CCControl.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B7EE699418188E0800B983FE /* CCTextField */ = { + isa = PBXNativeTarget; + buildConfigurationList = B7EE69A418188E0900B983FE /* Build configuration list for PBXNativeTarget "CCTextField" */; + buildPhases = ( + B7EE699118188E0800B983FE /* Sources */, + B7EE699218188E0800B983FE /* Frameworks */, + B7EE699318188E0800B983FE /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCTextField; + productName = CCTextField; + productReference = B7EE699518188E0800B983FE /* CCTextField.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + B7EE69F71819EE0D00B983FE /* CCLayoutBox */ = { + isa = PBXNativeTarget; + buildConfigurationList = B7EE6A071819EE0D00B983FE /* Build configuration list for PBXNativeTarget "CCLayoutBox" */; + buildPhases = ( + B7EE69F41819EE0D00B983FE /* Sources */, + B7EE69F51819EE0D00B983FE /* Frameworks */, + B7EE69F61819EE0D00B983FE /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCLayoutBox; + productName = CCLayoutBox; + productReference = B7EE69F81819EE0D00B983FE /* CCLayoutBox.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + DC05E77718D0ACCB00592A1E /* SBControlNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC05E78018D0ACCB00592A1E /* Build configuration list for PBXNativeTarget "SBControlNode" */; + buildPhases = ( + DC05E77818D0ACCB00592A1E /* Sources */, + DC05E77A18D0ACCB00592A1E /* Frameworks */, + DC05E77C18D0ACCB00592A1E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SBControlNode; + productName = CCNode; + productReference = DC05E78318D0ACCB00592A1E /* SBControlNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + DC05E78418D0ACE000592A1E /* SBButtonNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC05E78D18D0ACE000592A1E /* Build configuration list for PBXNativeTarget "SBButtonNode" */; + buildPhases = ( + DC05E78518D0ACE000592A1E /* Sources */, + DC05E78718D0ACE000592A1E /* Frameworks */, + DC05E78918D0ACE000592A1E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SBButtonNode; + productName = CCNode; + productReference = DC05E79018D0ACE000592A1E /* SBButtonNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + DC5129BD1891450D0091873D /* SKSpriteNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC5129C61891450D0091873D /* Build configuration list for PBXNativeTarget "SKSpriteNode" */; + buildPhases = ( + DC5129BE1891450D0091873D /* Sources */, + DC5129C01891450D0091873D /* Frameworks */, + DC5129C21891450D0091873D /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SKSpriteNode; + productName = CCNode; + productReference = DC5129C91891450D0091873D /* SKSpriteNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + DC6802FC1891466C0060BE39 /* SKLabelNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC6803051891466C0060BE39 /* Build configuration list for PBXNativeTarget "SKLabelNode" */; + buildPhases = ( + DC6802FD1891466C0060BE39 /* Sources */, + DC6802FF1891466C0060BE39 /* Frameworks */, + DC6803011891466C0060BE39 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SKLabelNode; + productName = CCNode; + productReference = DC6803081891466C0060BE39 /* SKLabelNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + DC68031D189156310060BE39 /* SKColorSpriteNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC680326189156310060BE39 /* Build configuration list for PBXNativeTarget "SKColorSpriteNode" */; + buildPhases = ( + DC68031E189156310060BE39 /* Sources */, + DC680320189156310060BE39 /* Frameworks */, + DC680322189156310060BE39 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SKColorSpriteNode; + productName = CCNode; + productReference = DC680329189156310060BE39 /* SKColorSpriteNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + DCB9F14C1890600D00128D78 /* SKNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = DCB9F1551890600D00128D78 /* Build configuration list for PBXNativeTarget "SKNode" */; + buildPhases = ( + DCB9F14D1890600D00128D78 /* Sources */, + DCB9F14F1890600D00128D78 /* Frameworks */, + DCB9F1511890600D00128D78 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SKNode; + productName = CCNode; + productReference = DCB9F1581890600D00128D78 /* SKNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + DCFB063318E32B7500DF02A0 /* SKFile */ = { + isa = PBXNativeTarget; + buildConfigurationList = DCFB063C18E32B7500DF02A0 /* Build configuration list for PBXNativeTarget "SKFile" */; + buildPhases = ( + DCFB063418E32B7500DF02A0 /* Sources */, + DCFB063618E32B7500DF02A0 /* Frameworks */, + DCFB063818E32B7500DF02A0 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SKFile; + productName = CCNode; + productReference = DCFB063F18E32B7500DF02A0 /* SKFile.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E35DBB7F14F225D30070A6E4 /* CCNodeColor */ = { + isa = PBXNativeTarget; + buildConfigurationList = E35DBB8914F225D30070A6E4 /* Build configuration list for PBXNativeTarget "CCNodeColor" */; + buildPhases = ( + E35DBB7C14F225D30070A6E4 /* Sources */, + E35DBB7D14F225D30070A6E4 /* Frameworks */, + E35DBB7E14F225D30070A6E4 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCNodeColor; + productName = CCLayerColor; + productReference = E35DBB8014F225D30070A6E4 /* CCNodeColor.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E35DBB9714F244BB0070A6E4 /* CCNodeGradient */ = { + isa = PBXNativeTarget; + buildConfigurationList = E35DBBA114F244BC0070A6E4 /* Build configuration list for PBXNativeTarget "CCNodeGradient" */; + buildPhases = ( + E35DBB9414F244BB0070A6E4 /* Sources */, + E35DBB9514F244BB0070A6E4 /* Frameworks */, + E35DBB9614F244BB0070A6E4 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCNodeGradient; + productName = CCLayerGradient; + productReference = E35DBB9814F244BB0070A6E4 /* CCNodeGradient.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E35DBBCB14F2AA350070A6E4 /* CCLabelBMFont */ = { + isa = PBXNativeTarget; + buildConfigurationList = E35DBBD514F2AA360070A6E4 /* Build configuration list for PBXNativeTarget "CCLabelBMFont" */; + buildPhases = ( + E35DBBC814F2AA350070A6E4 /* Sources */, + E35DBBC914F2AA350070A6E4 /* Frameworks */, + E35DBBCA14F2AA350070A6E4 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCLabelBMFont; + productName = CCLabelBMFont; + productReference = E35DBBCC14F2AA350070A6E4 /* CCLabelBMFont.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E35DBBE814F3E2390070A6E4 /* CCLabelTTF */ = { + isa = PBXNativeTarget; + buildConfigurationList = E35DBBF214F3E2390070A6E4 /* Build configuration list for PBXNativeTarget "CCLabelTTF" */; + buildPhases = ( + E35DBBE514F3E2390070A6E4 /* Sources */, + E35DBBE614F3E2390070A6E4 /* Frameworks */, + E35DBBE714F3E2390070A6E4 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCLabelTTF; + productName = CCLabelTTF; + productReference = E35DBBE914F3E2390070A6E4 /* CCLabelTTF.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E35DBC0814F4D72B0070A6E4 /* CCParticleSystem */ = { + isa = PBXNativeTarget; + buildConfigurationList = E35DBC1214F4D72C0070A6E4 /* Build configuration list for PBXNativeTarget "CCParticleSystem" */; + buildPhases = ( + E35DBC0514F4D72B0070A6E4 /* Sources */, + E35DBC0614F4D72B0070A6E4 /* Frameworks */, + E35DBC0714F4D72B0070A6E4 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCParticleSystem; + productName = CCParticleSystem; + productReference = E35DBC0914F4D72B0070A6E4 /* CCParticleSystem.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E398C02114FB81A30078E771 /* Cocos2D iPhone */ = { + isa = PBXNativeTarget; + buildConfigurationList = E398C02B14FB81A30078E771 /* Build configuration list for PBXNativeTarget "Cocos2D iPhone" */; + buildPhases = ( + E398C01E14FB81A30078E771 /* Sources */, + E398C01F14FB81A30078E771 /* Frameworks */, + E398C02014FB81A30078E771 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Cocos2D iPhone"; + productName = "Cocos2D iPhone"; + productReference = E398C02214FB81A30078E771 /* Cocos2D iPhone.ccbPlugExport */; + productType = "com.apple.product-type.bundle"; + }; + E3B7AEC414E3193500DFD402 /* CCNode */ = { + isa = PBXNativeTarget; + buildConfigurationList = E3B7AECE14E3193500DFD402 /* Build configuration list for PBXNativeTarget "CCNode" */; + buildPhases = ( + E3B7AEC114E3193500DFD402 /* Sources */, + E3B7AEC214E3193500DFD402 /* Frameworks */, + E3B7AEC314E3193500DFD402 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCNode; + productName = CCNode; + productReference = E3B7AEC514E3193500DFD402 /* CCNode.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E3C365EA14E9E4D1007CD5FF /* CCSprite */ = { + isa = PBXNativeTarget; + buildConfigurationList = E3C365F414E9E4D1007CD5FF /* Build configuration list for PBXNativeTarget "CCSprite" */; + buildPhases = ( + E3C365E714E9E4D1007CD5FF /* Sources */, + E3C365E814E9E4D1007CD5FF /* Frameworks */, + E3C365E914E9E4D1007CD5FF /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCSprite; + productName = CCSprite; + productReference = E3C365EB14E9E4D1007CD5FF /* CCSprite.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + E3D59120150F5367004180CA /* CCBFile */ = { + isa = PBXNativeTarget; + buildConfigurationList = E3D5912A150F5367004180CA /* Build configuration list for PBXNativeTarget "CCBFile" */; + buildPhases = ( + E3D5911D150F5367004180CA /* Sources */, + E3D5911E150F5367004180CA /* Frameworks */, + E3D5911F150F5367004180CA /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCBFile; + productName = CCBFile; + productReference = E3D59121150F5367004180CA /* CCBFile.ccbPlugNode */; + productType = "com.apple.product-type.bundle"; + }; + FA98CFC0154E7D1C006E58C5 /* ccbpublish */ = { + isa = PBXNativeTarget; + buildConfigurationList = FA98CFCE154E7D1C006E58C5 /* Build configuration list for PBXNativeTarget "ccbpublish" */; + buildPhases = ( + FA98CFBD154E7D1C006E58C5 /* Sources */, + FA98CFBE154E7D1C006E58C5 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ccbpublish; + productName = ccbpublish; + productReference = FA98CFC1154E7D1C006E58C5 /* ccbpublish */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 7789ABB5133AA82000CEFCC7 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0500; + TargetAttributes = { + 7789ABBD133AA82000CEFCC7 = { + DevelopmentTeam = U2K5E32W7G; + SystemCapabilities = { + com.apple.InAppPurchase = { + enabled = 1; + }; + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 833A5C49192B48CA001837B3 = { + TestTargetID = 7789ABBD133AA82000CEFCC7; + }; + }; + }; + buildConfigurationList = 7789ABB8133AA82000CEFCC7 /* Build configuration list for PBXProject "SpriteBuilder" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + English, + ); + mainGroup = 7789ABB3133AA82000CEFCC7; + productRefGroup = 7789ABBF133AA82000CEFCC7 /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = B7D0917E17C2C12A0007FE7F /* Products */; + ProjectRef = B7D0917D17C2C12A0007FE7F /* cocos2d-osx.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 7789ABBD133AA82000CEFCC7 /* SpriteBuilder */, + 833A5C49192B48CA001837B3 /* SpriteBuilder Tests */, + E398C02114FB81A30078E771 /* Cocos2D iPhone */, + E3B7AEC414E3193500DFD402 /* CCNode */, + B7EE69F71819EE0D00B983FE /* CCLayoutBox */, + E3C365EA14E9E4D1007CD5FF /* CCSprite */, + B7C3532117F65547005697C1 /* CCSprite9Slice */, + E35DBB7F14F225D30070A6E4 /* CCNodeColor */, + E35DBB9714F244BB0070A6E4 /* CCNodeGradient */, + E35DBBCB14F2AA350070A6E4 /* CCLabelBMFont */, + E35DBBE814F3E2390070A6E4 /* CCLabelTTF */, + E35DBC0814F4D72B0070A6E4 /* CCParticleSystem */, + E3D59120150F5367004180CA /* CCBFile */, + B7C623B017F383CE00928F91 /* CCButton */, + B7C623CC17F38B7800928F91 /* CCControl */, + B7EE699418188E0800B983FE /* CCTextField */, + B73788D81804AC5D0076A88C /* CCScrollView */, + B729AC51181F091800BA0D9C /* CCSlider */, + B79F90D717FF30DB00908504 /* CCPhysicsNode */, + 92154ACF18A5560B00BD215C /* CCPhysicsPivotJoint */, + 926D13D718B57B9500582959 /* CCPhysicsPinJoint */, + 92B7900118C808B7007DF895 /* CCPhysicsSpringJoint */, + FA98CFC0154E7D1C006E58C5 /* ccbpublish */, + DCB9F14C1890600D00128D78 /* SKNode */, + DC5129BD1891450D0091873D /* SKSpriteNode */, + DC6802FC1891466C0060BE39 /* SKLabelNode */, + DC68031D189156310060BE39 /* SKColorSpriteNode */, + DC05E77718D0ACCB00592A1E /* SBControlNode */, + DC05E78418D0ACE000592A1E /* SBButtonNode */, + DCFB063318E32B7500DF02A0 /* SKFile */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + B7C048EF18A4653B0038C53E /* libObjectiveChipmunk.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libObjectiveChipmunk.a; + remoteRef = B7C048EE18A4653B0038C53E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + B7D0918417C2C12B0007FE7F /* libcocos2d.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libcocos2d.a; + remoteRef = B7D0918317C2C12B0007FE7F /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 7789ABBC133AA82000CEFCC7 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 92B8A32818E1063600EE52FC /* seq-locked-faint.png in Resources */, + 921EEADD18A5760700D864C2 /* joint-pivot@2x.png in Resources */, + 92F12E4E18847BC800AB8F32 /* seq-keyframe-x4-sel.png in Resources */, + 92F12E4F18847BC800AB8F32 /* seq-keyframe-x4.png in Resources */, + 92DC215F188073C500C8DCCD /* select-scale.png in Resources */, + 92DC2160188073C500C8DCCD /* select-crosshair.png in Resources */, + 92DC2161188073C500C8DCCD /* select-skew.png in Resources */, + 92DC2162188073C500C8DCCD /* select-rotation.png in Resources */, + 929C9FC0187E391C009ED9DF /* InspectorPopoverFloat.xib in Resources */, + 92D9D48218F8AB3800F167C1 /* joint-connection-disconnected.png in Resources */, + 92F0960A18F8851300D47A94 /* inspector-body-remove.png in Resources */, + B7DE84961937C6380039FB72 /* SpriteBuilder-logo.png in Resources */, + 92BF5E5D187B658D0072C3A1 /* InspectorStringSimple.xib in Resources */, + 92F0960918F8851300D47A94 /* inspector-body-bg.png in Resources */, + 92BF5E5B187B43F00072C3A1 /* ResourceManagerPreviewAudio.xib in Resources */, + 92154ACB18A5531800BD215C /* Icon@2x.png in Resources */, + 80F90905183C188400A714FC /* seq-visible-faint.png in Resources */, + 8045F136183ADA900082BD94 /* seq-visible.png in Resources */, + B71706D0184ECD660081720A /* select-rotation@2x.png in Resources */, + 8045F137183ADA900082BD94 /* seq-notset.png in Resources */, + 8045F138183ADA900082BD94 /* seq-locked.png in Resources */, + 80FBACCD183423F800C4BB69 /* inspector-warning@2x.png in Resources */, + 80FBACCE183423F800C4BB69 /* inspector-warning.png in Resources */, + 92F0960D18F8851300D47A94 /* inspector-body-remove@2x.png in Resources */, + 80E95C5A1836E44900D864CA /* select-locked.png in Resources */, + 80FBACD91834553000C4BB69 /* visible-icon.png in Resources */, + B7E775E218563F8C004221AA /* frame-fixed.png in Resources */, + B71706CD184ECD660081720A /* select-crosshair@2x.png in Resources */, + 7789ABCD133AA82000CEFCC7 /* InfoPlist.strings in Resources */, + 7789ABD3133AA82000CEFCC7 /* Credits.rtf in Resources */, + 7789ABD9133AA82000CEFCC7 /* MainMenu.xib in Resources */, + 7789ACEF133AB6A700CEFCC7 /* icon.icns in Resources */, + 7789ACF1133BD5E800CEFCC7 /* header-bg.png in Resources */, + 772BE567133E40D60009B5B9 /* missing-texture.png in Resources */, + B73788F51804D80B0076A88C /* ccb.icns in Resources */, + B75CB46518468FA70036259F /* seq-btn-loop.png in Resources */, + 772BE57C134398EE0009B5B9 /* NewDocWindow.xib in Resources */, + 774F95C613638D74005D43EB /* missing-particle-texture.png in Resources */, + 774E4EC2136D98AB0025D0A8 /* select-bl.png in Resources */, + 9218DF3C1919B04D0033851E /* joint-pivot-mode-bg@2x.png in Resources */, + 774E4EC3136D98AB0025D0A8 /* select-br.png in Resources */, + 774E4EC4136D98AB0025D0A8 /* select-pt.png in Resources */, + 774E4EC5136D98AB0025D0A8 /* select-tl.png in Resources */, + 774E4EC6136D98AB0025D0A8 /* select-tr.png in Resources */, + 774E4ECE136DFFB70025D0A8 /* btn-move-hi.png in Resources */, + 774E4ECF136DFFB70025D0A8 /* btn-move.png in Resources */, + 774E4ED0136DFFB70025D0A8 /* btn-rotate-hi.png in Resources */, + 774E4ED1136DFFB70025D0A8 /* btn-rotate.png in Resources */, + 774E4ED2136DFFB70025D0A8 /* btn-scale-hi.png in Resources */, + 774E4ED3136DFFB70025D0A8 /* btn-scale.png in Resources */, + 77E1995213858DE0006C361B /* overflowImage.png in Resources */, + 77E1995313858DE0006C361B /* overflowImagePressed.png in Resources */, + 77E1995413858DE0006C361B /* pi.png in Resources */, + 92154ACA18A5531800BD215C /* Icon.png in Resources */, + 77E1995513858DE0006C361B /* TabClose_Dirty_Pressed.png in Resources */, + 77E1995613858DE0006C361B /* TabClose_Dirty_Rollover.png in Resources */, + 77E1995713858DE0006C361B /* TabClose_Dirty.png in Resources */, + 9218DF2E1919B04D0033851E /* joint-pivot-mode-l-off.png in Resources */, + 926D13C618B5778300582959 /* joint-distance-slide-sel.png in Resources */, + 77E1995813858DE0006C361B /* TabClose_Front_Pressed.png in Resources */, + B7C3533717FA0FEF005697C1 /* inspector-physics.png in Resources */, + 77E1995913858DE0006C361B /* TabClose_Front_Rollover.png in Resources */, + 77E1995A13858DE0006C361B /* TabClose_Front.png in Resources */, + 9218DF301919B04D0033851E /* joint-pivot-mode-r-off.png in Resources */, + 77E1995B13858DE0006C361B /* TabNewMetal.png in Resources */, + 77E1995C13858DE0006C361B /* TabNewMetalPressed.png in Resources */, + 9218DF3D1919B04D0033851E /* joint-pivot-handle-ratchetmark@2x.png in Resources */, + 921EEAD818A5760700D864C2 /* joint-anchor.png in Resources */, + 926D13C818B5778300582959 /* joint-distance-slide.png in Resources */, + 77E1995D13858DE0006C361B /* TabNewMetalRollover.png in Resources */, + B75CB46618468FA70036259F /* seq-btn-loop@2x.png in Resources */, + 776C68911388107400153214 /* missing-font.fnt in Resources */, + D2E0168B18D789E800927430 /* SpriteBuilder.sdef in Resources */, + B71706D1184ECD660081720A /* select-scale@2x.png in Resources */, + 776C68921388107400153214 /* missing-font.png in Resources */, + B7096E26180CD98E00164A8A /* doc-layer.png in Resources */, + 776C6896138874C200153214 /* dsa_pub.pem in Resources */, + 77D33EAD138EFBD800012A88 /* StageSizeWindow.xib in Resources */, + 7729F03A1390215400CAA44F /* frame-iphone.png in Resources */, + 7729F03D1390600200CAA44F /* frame-ipad.png in Resources */, + 776A370B139544A200960E94 /* TB_actualSize.png in Resources */, + 776A370C139544A200960E94 /* TB_grab.png in Resources */, + 9218DF3A1919B04D0033851E /* joint-pivot-mode-l-off@2x.png in Resources */, + 92F0960718F8851300D47A94 /* inspector-body-remove-dis.png in Resources */, + 776A370D139544A200960E94 /* TB_select.png in Resources */, + B7096E27180CD98E00164A8A /* doc-layer@2x.png in Resources */, + 776A370E139544A200960E94 /* TB_zoomIn.png in Resources */, + 776A370F139544A200960E94 /* TB_zoomOut.png in Resources */, + 776A37B8139BCE3600960E94 /* TB_imageAssets.png in Resources */, + 77055FB513D0E5CA009DD63A /* logo-icon.png in Resources */, + 77055FB613D0E5CA009DD63A /* logo.png in Resources */, + 92F0960F18F8851300D47A94 /* inspector-body-disconnected@2x.png in Resources */, + E3B7AEE914E33F4C00DFD402 /* InspectorPosition.xib in Resources */, + E3FEA8A714E45EEF00119FBE /* InspectorSize.xib in Resources */, + E3FEA8AC14E47C5700119FBE /* InspectorPoint.xib in Resources */, + 92154AC718A5531800BD215C /* CCBPProperties.plist in Resources */, + E3FEA8B114E4872D00119FBE /* InspectorPointLock.xib in Resources */, + 921EEB2918ADE43700D864C2 /* InspectorNodeReference.xib in Resources */, + E3FEA8B614E4929300119FBE /* InspectorScaleLock.xib in Resources */, + E3FEA8BB14E4989A00119FBE /* InspectorDegrees.xib in Resources */, + E3FEA8C014E49D8300119FBE /* InspectorInteger.xib in Resources */, + B71706D2184ECD660081720A /* select-skew@2x.png in Resources */, + E3B4221314E4A350004547D6 /* InspectorCheck.xib in Resources */, + E3B4221814E4BE6B004547D6 /* InspectorSpriteFrame.xib in Resources */, + 92F0961618F8855A00D47A94 /* inspector-body-goto-hi.png in Resources */, + 9218DF2A1919B04D0033851E /* joint-pivot-handle-ratchet.png in Resources */, + 92BF8AB7192BCE8D00C1BC28 /* InspectorButton.xib in Resources */, + 92F0961718F8855A00D47A94 /* inspector-body-goto.png in Resources */, + B759E4B81880B60B00E8166C /* logo-white.png in Resources */, + E3B4221D14E58C35004547D6 /* InspectorByte.xib in Resources */, + E3B4222214E58FEE004547D6 /* InspectorColor3.xib in Resources */, + 9218DF2F1919B04D0033851E /* joint-pivot-mode-l-on.png in Resources */, + 9218DF351919B04D0033851E /* joint-pivot-handle-max.png in Resources */, + E3B4222714E5992F004547D6 /* InspectorFlip.xib in Resources */, + E3B4222C14E5A828004547D6 /* InspectorBlendmode.xib in Resources */, + B7DE84931937B18B0039FB72 /* signup-bg.png in Resources */, + 9218DF291919B04D0033851E /* joint-pivot-handle-min.png in Resources */, + DC2AF0AB18C8C38A00508967 /* SpriteKitTextureAtlasToolPath.txt in Resources */, + E3B4223414E5E68B004547D6 /* InspectorSeparator.xib in Resources */, + A09AB6F714E993AA009C8B91 /* fps_images.png in Resources */, + B71706CE184ECD660081720A /* select-move.png in Resources */, + E32D8CC514EC257000F4BD5E /* InspectorCodeConnections.xib in Resources */, + E35DBBBF14F29E9D0070A6E4 /* InspectorFntFile.xib in Resources */, + E35DBBC414F2A2900070A6E4 /* InspectorText.xib in Resources */, + 9218DF2C1919B04D0033851E /* joint-pivot-handle-ref.png in Resources */, + E35DBBDF14F3D1B60070A6E4 /* FontListTTF.plist in Resources */, + E35DBBE114F3DCDF0070A6E4 /* InspectorFontTTF.xib in Resources */, + 9218DF3B1919B04D0033851E /* joint-pivot-mode-s-off@2x.png in Resources */, + E35DBBFB14F3EE210070A6E4 /* InspectorFloat.xib in Resources */, + E35DBC1B14F4DED00070A6E4 /* InspectorStartStop.xib in Resources */, + E35DBC2014F4ED0E0070A6E4 /* InspectorIntegerLabeled.xib in Resources */, + E35DBC2514F4FEF90070A6E4 /* InspectorTexture.xib in Resources */, + 926D13C218B5778300582959 /* joint-distance-handle-short.png in Resources */, + E325F64514F531F500D29BCF /* InspectorFloatVar.xib in Resources */, + 9218DF411919B04D0033851E /* joint-pivot-handle-ref@2x.png in Resources */, + E325F64A14F53FD000D29BCF /* InspectorColor4FVar.xib in Resources */, + 9218DF2B1919B04D0033851E /* joint-pivot-handle-ratchetmark.png in Resources */, + E325F64F14F5622200D29BCF /* InspectorSeparatorSub.xib in Resources */, + E385A42014F69FF300DFB12D /* InspectorBlock.xib in Resources */, + E398C04014FBC9D00078E771 /* PublishTypeAccessoryView.xib in Resources */, + B7096E28180CD98E00164A8A /* doc-node.png in Resources */, + E385080B150AB232007E162A /* segmctrl-bg.png in Resources */, + E3D59133150F85D8004180CA /* InspectorCCBFile.xib in Resources */, + 92F0960518F8851300D47A94 /* inspector-body-connected.png in Resources */, + E3C65106151A3B7C00D639C0 /* InspectorString.xib in Resources */, + E3C65128151C7B9000D639C0 /* InspectorBlockCCControl.xib in Resources */, + E34E5D6A153585EC000201FB /* ruler-bg-horizontal.png in Resources */, + E34E5D6B153585EC000201FB /* ruler-bg-vertical.png in Resources */, + B7096E2B180CD98E00164A8A /* doc-scene.png in Resources */, + E34E5D6E1535AA78000201FB /* ruler-mark-major.png in Resources */, + E34E5D6F1535AA78000201FB /* ruler-mark-minor.png in Resources */, + E34E5D711535B34F000201FB /* ruler-mark-origin.png in Resources */, + 92F0960618F8851300D47A94 /* inspector-body-disconnected.png in Resources */, + E34E5D731535BC5E000201FB /* ruler-numbers.png in Resources */, + E3A16AF01536C885004B528A /* ruler-guide.png in Resources */, + E3B9AF431538612200489438 /* ruler-xy.png in Resources */, + E3F3F845153C7772005443EE /* notes-bg.png in Resources */, + E3F3F847153D9126005443EE /* StickyNoteEditView.xib in Resources */, + E3F3F849153DB893005443EE /* notes-close.png in Resources */, + 921EEAD618A5760700D864C2 /* joint-anchor-sel.png in Resources */, + 9218DF371919B04D0033851E /* joint-pivot-mode-l-on@2x.png in Resources */, + E3F3F84B153DBA43005443EE /* notes-close-down.png in Resources */, + 92F0961918F8855A00D47A94 /* inspector-body-goto@2x.png in Resources */, + E35A2D8D1540111A00F78B72 /* position-0.png in Resources */, + E35A2D8E1540111A00F78B72 /* position-1.png in Resources */, + 92F0960818F8851300D47A94 /* inspector-body-remove-hi.png in Resources */, + E35A2D8F1540111A00F78B72 /* position-2.png in Resources */, + E35A2D901540111A00F78B72 /* position-3.png in Resources */, + 7B5135C21947CC2500DE177D /* LocalizationInAppPurchasesPIDs.plist in Resources */, + 921EEADC18A5760700D864C2 /* joint-pivot.png in Resources */, + E3EDBC1615483EE000EEF1F3 /* ResolutionSettingsWindow.xib in Resources */, + E370BA0C1549B2460048ED73 /* scale-0.png in Resources */, + E370BA0D1549B2460048ED73 /* scale-1.png in Resources */, + E334069715517225000FBD0B /* InspectorFloatScale.xib in Resources */, + E3DCFD9C15629FC700BD7D7F /* TaskStatusWindow.xib in Resources */, + 9218DF401919B04D0033851E /* joint-pivot-handle-max@2x.png in Resources */, + E335CAEB15751C0D00A612EE /* seq-ctrl-bg.png in Resources */, + 926D13C418B5778300582959 /* joint-distance-sel.png in Resources */, + E335CAF815764E6B00A612EE /* seq-btn-expand.png in Resources */, + E335CAFD15765BB700A612EE /* seq-vseparator.png in Resources */, + E335CB0C1577D64C00A612EE /* seq-btn-collapse.png in Resources */, + E3E8B48A1578FEB100373983 /* seq-tl-bg.png in Resources */, + E3E8B48E15791FFB00373983 /* seq-tl-mark-major.png in Resources */, + 9218DF391919B04D0033851E /* joint-pivot-mode-r-off@2x.png in Resources */, + E3E8B48F15791FFB00373983 /* seq-tl-mark-minor.png in Resources */, + B7096E2E180CD98E00164A8A /* doc-sprite@2x.png in Resources */, + E3E8B49015791FFB00373983 /* seq-tl-mark-origin.png in Resources */, + E3E8B4921579326A00373983 /* seq-timedisplay-bg.png in Resources */, + B73788F71804D8200076A88C /* ccbproj.icns in Resources */, + B7DE848D1937A8030039FB72 /* RegistrationWindow.xib in Resources */, + E3E8B49915793AF800373983 /* seq-btn-play.png in Resources */, + 926D13C118B5778300582959 /* joint-distance-handle-long@2x.png in Resources */, + E3E8B49A15793AF800373983 /* seq-btn-restart.png in Resources */, + E3E8B49B15793AF800373983 /* seq-btn-run.png in Resources */, + 926D13CA18B5778300582959 /* joint-distance.png in Resources */, + E3E8B49C15793AF800373983 /* seq-btn-stepback.png in Resources */, + E3E8B49D15793AF800373983 /* seq-btn-stepforward.png in Resources */, + E3E8B49E15793AF800373983 /* seq-btn-stop.png in Resources */, + E3E8B4A4157CD5DB00373983 /* seq-scrub-handle.png in Resources */, + 926D13C518B5778300582959 /* joint-distance-sel@2x.png in Resources */, + E3E8B4A5157CD5DB00373983 /* seq-scrub-line.png in Resources */, + B7C3533817FA0FEF005697C1 /* inspector-physics@2x.png in Resources */, + 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 */, + E39B63A21587E56D009BDE38 /* seq-row-1-bg.png in Resources */, + E39B63A31587E56D009BDE38 /* seq-row-n-bg.png in Resources */, + E3A0ED52158FE3AB000BDF4B /* btn-dropdown.png in Resources */, + B73788F91804D8690076A88C /* ccbi.icns in Resources */, + E3A0ED55158FEAC0000BDF4B /* btn-dropdown-arrows.png in Resources */, + E3A0ED57159118F3000BDF4B /* SequencerSettingsWindow.xib in Resources */, + E3F73DB81593916E00D74084 /* SequencerDurationWindow.xib in Resources */, + E3E0557D159B8466001066C5 /* seq-keyframe-easein.png in Resources */, + E3E0557E159B8466001066C5 /* seq-keyframe-easeout.png in Resources */, + E3E0557F159B8466001066C5 /* seq-keyframe-interpol.png in Resources */, + E392618F159CAAA10034FF1D /* seq-keyframe-interpol-vis.png in Resources */, + 9218DF341919B04D0033851E /* joint-pivot-motor.png in Resources */, + E3926190159CAAA10034FF1D /* seq-keyframe-l-sel.png in Resources */, + 8341326B18DADF9E0088FFAB /* optipng in Resources */, + 926D13C018B5778300582959 /* joint-distance-handle-long.png in Resources */, + E3926191159CAAA10034FF1D /* seq-keyframe-l.png in Resources */, + 9218DF311919B04D0033851E /* joint-pivot-mode-r-on.png in Resources */, + E3926192159CAAA10034FF1D /* seq-keyframe-r-sel.png in Resources */, + E3926193159CAAA10034FF1D /* seq-keyframe-r.png in Resources */, + B78B8B10185FF982006ADBBE /* Folder.icns in Resources */, + E3FD4DCF15A09F6D0032C2DD /* SequencerKeyframeEasingWindow.xib in Resources */, + E3FD4DDB15A301EF0032C2DD /* seq-next-seq.png in Resources */, + E3DFA7CD15ACA0CD005D3B6F /* frame-android-medium.png in Resources */, + 9218DF2D1919B04D0033851E /* joint-pivot-mode-bg.png in Resources */, + E3DFA7CE15ACA0CD005D3B6F /* frame-android-small.png in Resources */, + 922E8EF818BFE47A008E1764 /* InspectorFloatCheck.xib in Resources */, + E3DFA7CF15ACA0CD005D3B6F /* frame-android-xsmall.png in Resources */, + E3E2704815B18CF500287470 /* TB_play.png in Resources */, + E3E2704915B18CF500287470 /* TB_stop.png in Resources */, + E3E2704B15B1904400287470 /* toolbar-bottom.png in Resources */, + E326EFB615C84123006D6CE6 /* seq-endmarker.png in Resources */, + 921EEADA18A5760700D864C2 /* joint-pivot-sel.png in Resources */, + E33C2AB515CAE2590043EF9B /* SequencerStretchWindow.xib in Resources */, + E33C2ABA15CBF2580043EF9B /* seq-keyframe-hint.png in Resources */, + E3214C4115D3BF4D002413A7 /* CustomPropSettingsWindow.xib in Resources */, + E3214C4C15D40F01002413A7 /* InspectorCustom.xib in Resources */, + E3214C5E15D54356002413A7 /* InspectorCustomEdit.xib in Resources */, + B71706CF184ECD660081720A /* select-move@2x.png in Resources */, + B759E4B91880B60B00E8166C /* logo-white@2x.png in Resources */, + E3B7BC9C15E3B7F100CF95EF /* NodePlugInsList.plist in Resources */, + E3B7BCBE15E505CC00CF95EF /* TB_plugins.png in Resources */, + 9218DF3E1919B04D0033851E /* joint-pivot-handle-ratchet@2x.png in Resources */, + E3B19F6D15E65229000B023E /* DefaultResourcesList.plist in Resources */, + E360789015EBA5420040A172 /* sel-frame.png in Resources */, + B7096E29180CD98E00164A8A /* doc-node@2x.png in Resources */, + E36078BC15EE0B2C0040A172 /* sel-round.png in Resources */, + E3AF6CD815F0A7E10048DB2A /* HelpWindow.xib in Resources */, + E3AF6CE115F0CFAE0048DB2A /* Documentation in Resources */, + E3AF6CE615F0F5760048DB2A /* help-logo.png in Resources */, + E3DFE831160226760068CB50 /* frame-iphone5.png in Resources */, + 9218DF421919B04D0033851E /* joint-pivot-motor@2x.png in Resources */, + E3C9CCB8161D08B8008A3784 /* InspectorCodeConnectionsJS.xib in Resources */, + 58FA2034162D73F3006B8856 /* TB_bottomPanel.png in Resources */, + 58FA2035162D73F3006B8856 /* TB_leftPanel.png in Resources */, + 58FA2036162D73F3006B8856 /* TB_rightPanel.png in Resources */, + 921EEAD718A5760700D864C2 /* joint-anchor-sel@2x.png in Resources */, + E367E32016384F0C00247F12 /* orientation-landscapeleft.png in Resources */, + E367E32116384F0C00247F12 /* orientation-landscaperight.png in Resources */, + 92B91022193412A600E346B5 /* InspectorAnimation.xib in Resources */, + 92D9D48418F8AB3800F167C1 /* joint-connection-bg.png in Resources */, + E367E32316384F0C00247F12 /* orientation-upsidedown.png in Resources */, + E367E32516384F3600247F12 /* orientation-portrait.png in Resources */, + 581130601639C52500A86D70 /* seq-startmarker.png in Resources */, + 92F0960E18F8851300D47A94 /* inspector-body-connected@2x.png in Resources */, + E3808DB41641C45B00398456 /* PublishSettingsWindow.xib in Resources */, + E38DAB22165AC18800EA24E4 /* reshandler-spritesheet-folder.png in Resources */, + B759E4B51880B4D000E8166C /* help-logo@2x.png in Resources */, + B7096E2C180CD98E00164A8A /* doc-scene@2x.png in Resources */, + E35D78D616826C0100A53BEF /* SpriteSheetSettingsWindow.xib in Resources */, + E3DEF5B7169B359C00B9DCF4 /* lame in Resources */, + E3DEF5B9169B35DF00B9DCF4 /* lame-COPYING in Resources */, + 92F0961E18F891A900D47A94 /* InspectorEnabledFloat.xib in Resources */, + E334741D169DC5A7000737CC /* APIDocsWindow.xib in Resources */, + 92F0961818F8855A00D47A94 /* inspector-body-goto-hi@2x.png in Resources */, + E3F4087416A9EEC5009A0253 /* ccz in Resources */, + E312EDC616AF71FE000778C8 /* CCBReaderInternalRenamedProps.plist in Resources */, + E3E8D64616B3129E00742107 /* oggenc in Resources */, + E3DA6FF216CAF7D400B12FFB /* SequencerPopoverView.xib in Resources */, + E3DA6FF416CB293100B12FFB /* InspectorPopoverPosition.xib in Resources */, + 92D9D48518F8AB3800F167C1 /* joint-connection-bg@2x.png in Resources */, + E3DA6FF616CB2AC000B12FFB /* InspectorPopoverScaleLock.xib in Resources */, + E3DA6FF816CB2B2900B12FFB /* InspectorPopoverDegrees.xib in Resources */, + E3DA6FFA16CB2B8700B12FFB /* InspectorPopoverSpriteFrame.xib in Resources */, + E3DA6FFC16CB2BEB00B12FFB /* InspectorPopoverByte.xib in Resources */, + E3DA6FFE16CB2C3C00B12FFB /* InspectorPopoverColor3.xib in Resources */, + 5BA3DC36192110BA0055DD96 /* GuideGridSizeWindow.xib in Resources */, + B7C3533A17FA2EDA005697C1 /* select-physics-corner.png in Resources */, + E312972E16CC33B200A09155 /* SequencerPopoverBlock.xib in Resources */, + E312973516CC677400A09155 /* SequencerPopoverSound.xib in Resources */, + 9218DF321919B04D0033851E /* joint-pivot-mode-s-off.png in Resources */, + E32FA2F816D5781600254653 /* seq-row-channel-bg.png in Resources */, + E3B5EE8A16D6E0AA00C07990 /* InspectorFloatXY.xib in Resources */, + E318CB3916D83F3B00348E0D /* InspectorPopoverFloatXY.xib in Resources */, + E390C77F170A2C9B003E9E92 /* AboutWindow.xib in Resources */, + E390C781170A371E003E9E92 /* Generated in Resources */, + B7096E2A180CD98E00164A8A /* doc-particlesystem.png in Resources */, + E334A4DE170CF475001604F7 /* seq-btn-end.png in Resources */, + E334A4DF170CF475001604F7 /* toolbar-bottom-noborder.png in Resources */, + 921EEADB18A5760700D864C2 /* joint-pivot-sel@2x.png in Resources */, + E334A4E6170D0020001604F7 /* debugger-bug.png in Resources */, + E3D839DC171356EC004F6127 /* pngquant in Resources */, + E3D839DD171356EC004F6127 /* pngquant-COPYING in Resources */, + E38F79361715FD8D00E299E4 /* editor-warning.png in Resources */, + E3C12B1F171E0DE7001EEDDB /* editor-check.png in Resources */, + E388FD19171F03C7002548ED /* editor-border.png in Resources */, + B7DE84941937B18B0039FB72 /* signup-bottom.png in Resources */, + E3748303171F83A300486659 /* editor-jump.png in Resources */, + 92F0961018F8851300D47A94 /* inspector-body-bg@2x.png in Resources */, + 926D13C718B5778300582959 /* joint-distance-slide-sel@2x.png in Resources */, + E39C917B174C134C00092BD1 /* toolbar-btn-add.png in Resources */, + E3583FB01756C228002DF0B0 /* ResourceManagerPreviewView.xib in Resources */, + E37FCAEE175D2704009F81D6 /* ui-cogs.png in Resources */, + 921EEAD918A5760700D864C2 /* joint-anchor@2x.png in Resources */, + 92D9D48018F8AB3800F167C1 /* joint-connection-connected.png in Resources */, + B7096E2D180CD98E00164A8A /* doc-sprite.png in Resources */, + 9218DF3F1919B04D0033851E /* joint-pivot-handle-min@2x.png in Resources */, + E37FCAEF175D2704009F81D6 /* ui-cogs@2x.png in Resources */, + B794AB91177A30EB004FF493 /* ui-nopreview.png in Resources */, + B732A1841799736500333C56 /* TB_build.png in Resources */, + 92F0960C18F8851300D47A94 /* inspector-body-remove-dis@2x.png in Resources */, + B732A1851799736500333C56 /* TB_build@2x.png in Resources */, + B7AC6969179E03BF0041B8BD /* select-corner.png in Resources */, + B7AC6981179F50850041B8BD /* BFColorPickerPopover_LICENSE.txt in Resources */, + B7AC69A517A07DAD0041B8BD /* inspector-folder.png in Resources */, + B7AC69A617A07DAD0041B8BD /* inspector-objects.png in Resources */, + 9218DF381919B04D0033851E /* joint-pivot-mode-s-on@2x.png in Resources */, + B7AC69A917A0923B0041B8BD /* inspector-nodes.png in Resources */, + B7AC69AD17A0938C0041B8BD /* inspector-nodes@2x.png in Resources */, + B7AC69B217A1969E0041B8BD /* header-bg2.png in Resources */, + B7AC69B417A1A2040041B8BD /* header-bg2-crop.png in Resources */, + B72D1DC0186125E80091252F /* Requirements.plist in Resources */, + 7BF55303193F8A7500183F09 /* LocalizationTranslateWindow.xib in Resources */, + B7AC69C917A70A4B0041B8BD /* inspector-codeconnections.png in Resources */, + 92D9D48318F8AB3800F167C1 /* joint-connection-disconnected@2x.png in Resources */, + 926D13C918B5778300582959 /* joint-distance-slide@2x.png in Resources */, + 926D13CB18B5778300582959 /* joint-distance@2x.png in Resources */, + B7AC69CA17A70A4B0041B8BD /* inspector-codeconnections@2x.png in Resources */, + 9218DF331919B04D0033851E /* joint-pivot-mode-s-on.png in Resources */, + B7AC69CB17A70A4B0041B8BD /* inspector-props.png in Resources */, + 92154AC918A5531800BD215C /* InfoPlist.strings in Resources */, + B7AC69CC17A70A4B0041B8BD /* inspector-props@2x.png in Resources */, + B7AC69CD17A70A4B0041B8BD /* inspector-template.png in Resources */, + 92F0960B18F8851300D47A94 /* inspector-body-remove-hi@2x.png in Resources */, + B7AC69DC17A9D9700041B8BD /* defaultTemplates.zip in Resources */, + 926D13C318B5778300582959 /* joint-distance-handle-short@2x.png in Resources */, + B7083DF317B1C363006628C7 /* LocalizationEditorWindow.xib in Resources */, + B7083DFB17B2CC65006628C7 /* LocaliztaionEditorLanguageList.plist in Resources */, + B7737D5017CC102D005F775A /* InspectorColor4.xib in Resources */, + 92B1B9D6192429A400DB91F5 /* joint-pivot-range@2x.png in Resources */, + B7DEBD6417D113B800942E4D /* SpriteBuilder.icns in Resources */, + 9218DF361919B04D0033851E /* joint-pivot-mode-r-on@2x.png in Resources */, + B7F02D4817D12DB1008A2E2D /* about-bg.png in Resources */, + B7F02D4917D12DB1008A2E2D /* about-bg@2x.png in Resources */, + B78AE45217E3B1600028BE0B /* scale-2.png in Resources */, + 92D9D48118F8AB3800F167C1 /* joint-connection-connected@2x.png in Resources */, + B78AE45317E3B1600028BE0B /* scale-3.png in Resources */, + B78AE45417E3B1600028BE0B /* scale-4.png in Resources */, + E525F50C89C6296C9FE062F9 /* ruler-numbers.fnt in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 833A5C48192B48CA001837B3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 922CC3981946873A00B34854 /* AnimationTest2.ccb in Resources */, + 833A5C52192B48CB001837B3 /* InfoPlist.strings in Resources */, + 922CC396194676B600B34854 /* AnimationTest1.ccb in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92154AD418A5560B00BD215C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 92154ADE18A5565C00BD215C /* CCBPProperties.plist in Resources */, + 92154ADF18A5565C00BD215C /* InfoPlist.strings in Resources */, + 92154AE018A5565C00BD215C /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 926D13DC18B57B9500582959 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 926D13F518B57E1600582959 /* Icon.png in Resources */, + 926D13F418B57E1600582959 /* InfoPlist.strings in Resources */, + 926D13F218B57E1600582959 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92B7900618C808B7007DF895 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9254805618D7706F00236DED /* InfoPlist.strings in Resources */, + 92B792D918C933B7007DF895 /* CCBPProperties.plist in Resources */, + 92B792D718C9339E007DF895 /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B729AC50181F091800BA0D9C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B729AC66181F0B5000BA0D9C /* Icon.png in Resources */, + B729AC67181F0B5000BA0D9C /* Icon@2x.png in Resources */, + B729AC59181F091800BA0D9C /* InfoPlist.strings in Resources */, + B729AC65181F0B5000BA0D9C /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B73788D71804AC5D0076A88C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B73788EC1804AD5C0076A88C /* Icon.png in Resources */, + B73788E01804AC5E0076A88C /* InfoPlist.strings in Resources */, + B73788EB1804AD5C0076A88C /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B79F90D617FF30DB00908504 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B79F90EB17FF33BB00908504 /* Icon.png in Resources */, + B79F90DF17FF30DC00908504 /* InfoPlist.strings in Resources */, + B79F90EA17FF33BB00908504 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C3532017F65547005697C1 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7C3533117F655B5005697C1 /* Icon.png in Resources */, + B7C3532917F65547005697C1 /* InfoPlist.strings in Resources */, + B7C3532F17F65585005697C1 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C623AF17F383CE00928F91 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7C623C417F3868C00928F91 /* CCBPProperties.plist in Resources */, + B7C623C217F3860A00928F91 /* Icon.png in Resources */, + B7C623B917F383CE00928F91 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C623CB17F38B7800928F91 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7C623D417F38B7800928F91 /* InfoPlist.strings in Resources */, + B7C623DD17F392FE00928F91 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7EE699318188E0800B983FE /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7EE69AA18188EF900B983FE /* Icon.png in Resources */, + B7EE69AB18188EF900B983FE /* Icon@2x.png in Resources */, + B7EE699C18188E0900B983FE /* InfoPlist.strings in Resources */, + B7EE69AD18188F2800B983FE /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7EE69F61819EE0D00B983FE /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7EE6A0F1819EF1500B983FE /* Icon.png in Resources */, + B7EE6A101819EF1500B983FE /* Icon@2x.png in Resources */, + B7EE69FF1819EE0D00B983FE /* InfoPlist.strings in Resources */, + B7EE6A0E1819EF1500B983FE /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC05E77C18D0ACCB00592A1E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC05E79618D0AD8100592A1E /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC05E78918D0ACE000592A1E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC05E79418D0AD7800592A1E /* Icon@2x.png in Resources */, + DC05E79318D0AD7800592A1E /* Icon.png in Resources */, + DC05E79218D0AD7800592A1E /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC5129C21891450D0091873D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC6802FA189145840060BE39 /* Icon.png in Resources */, + DC6802FB189145840060BE39 /* Icon@2x.png in Resources */, + DC6802F9189145840060BE39 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC6803011891466C0060BE39 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC680311189146900060BE39 /* Icon.png in Resources */, + DC680312189146900060BE39 /* Icon@2x.png in Resources */, + DC680310189146900060BE39 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC680322189156310060BE39 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC680335189156A60060BE39 /* Icon.png in Resources */, + DC680336189156A60060BE39 /* Icon@2x.png in Resources */, + DC680334189156A60060BE39 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCB9F1511890600D00128D78 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DCB9F1671890607D00128D78 /* Icon.png in Resources */, + DCB9F1681890607D00128D78 /* Icon@2x.png in Resources */, + DCB9F1651890607D00128D78 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCFB063818E32B7500DF02A0 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DCFB064A18E32BBD00DF02A0 /* Icon.png in Resources */, + DCFB064B18E32BBD00DF02A0 /* Icon@2x.png in Resources */, + DCFB064918E32BBD00DF02A0 /* CCBPProperties.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBB7E14F225D30070A6E4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBB8714F225D30070A6E4 /* InfoPlist.strings in Resources */, + E35DBB9014F226560070A6E4 /* CCBPProperties.plist in Resources */, + E3B7BCAA15E416BF00CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBB9614F244BB0070A6E4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBB9F14F244BC0070A6E4 /* InfoPlist.strings in Resources */, + E35DBBA814F245490070A6E4 /* CCBPProperties.plist in Resources */, + E3B7BCAC15E416D200CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBBCA14F2AA350070A6E4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBBD314F2AA360070A6E4 /* InfoPlist.strings in Resources */, + E35DBBDC14F2AB740070A6E4 /* CCBPProperties.plist in Resources */, + E3B7BCB015E4170400CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBBE714F3E2390070A6E4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBBF014F3E2390070A6E4 /* InfoPlist.strings in Resources */, + E35DBBF914F3E29E0070A6E4 /* CCBPProperties.plist in Resources */, + E3B7BCB215E4171700CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBC0714F4D72B0070A6E4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E35DBC1014F4D72B0070A6E4 /* InfoPlist.strings in Resources */, + E35DBC1914F4D7D50070A6E4 /* CCBPProperties.plist in Resources */, + E3B7BCBA15E4E14200CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E398C02014FB81A30078E771 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E398C02914FB81A30078E771 /* InfoPlist.strings in Resources */, + 92B792CD18C92C60007DF895 /* Icon@2x.png in Resources */, + 92B792CB18C92C60007DF895 /* InfoPlist.strings in Resources */, + 8076F9531862459A003C4153 /* InspectorStringSimple.xib in Resources */, + 9297636B187775A0008F997B /* ResourceManagerPreviewAudio.xib in Resources */, + 92B792CC18C92C60007DF895 /* Icon.png in Resources */, + 92B792C918C92C60007DF895 /* CCBPProperties.plist in Resources */, + 92B792CA18C92C60007DF895 /* CCPhysicsSpringJoint-Info.plist in Resources */, + D2E0168A18D789E700927430 /* SpriteBuilder.sdef in Resources */, + 9254805A18D913C500236DED /* seq-locked-faint.png in Resources */, + 929C9FBE187E38AC009ED9DF /* InspectorPopoverFloat.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3B7AEC314E3193500DFD402 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E3B7AECC14E3193500DFD402 /* InfoPlist.strings in Resources */, + E3B7AEE214E336C300DFD402 /* CCBPProperties.plist in Resources */, + E3B7BCA415E4167900CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3C365E914E9E4D1007CD5FF /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E3C365F214E9E4D1007CD5FF /* InfoPlist.strings in Resources */, + E3C365FA14E9E599007CD5FF /* CCBPProperties.plist in Resources */, + E3B7BCA615E4168D00CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3D5911F150F5367004180CA /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E3D59128150F5367004180CA /* InfoPlist.strings in Resources */, + E3D59131150F5676004180CA /* CCBPProperties.plist in Resources */, + E3B7BCA215E4166000CF95EF /* Icon.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + DC3DD33018A948560004D2AC /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "#!/bin/bash\n# This script updates the generated Xcode projects...\n# Uncomment the lines as needed. Avoid committing comment changes.\n\n# Updates Cocos2D Project ....\n#\"$SRCROOT/../scripts/GenerateTemplateProject.sh\" PROJECTNAME\n# Updates Sprite Kit Project ....\n\"$SRCROOT/../scripts/GenerateTemplateProject.sh\" SPRITEKITPROJECTNAME\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 7789ABBA133AA82000CEFCC7 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 92B792D318C92FEF007DF895 /* CCBPhysicsTwoBodyJoint.m in Sources */, + 92B792D218C92FE7007DF895 /* CCBPhysicsSpringJoint.m in Sources */, + 9294EC8E18C65EC10059014C /* CCBPhysicsPinJoint.m in Sources */, + 9294EC8F18C65EC10059014C /* CCBPhysicsPivotJoint.m in Sources */, + 9294EC9018C65EC10059014C /* CCBPhysicsJoint.m in Sources */, + 9297AC2118A2C0D2003C3705 /* PolyDecomposition.mm in Sources */, + 9297636D18777BAF008F997B /* ResourceManagerPreviewAudio.m in Sources */, + 80271CCC1862478D00917BC0 /* InspectorStringSimple.m in Sources */, + 80B149C9183D73930085935B /* SoundFileImageController.m in Sources */, + 8045F13D183AF3FF0082BD94 /* SequencerButtonCell.m in Sources */, + 80279C7F183A8EAB005C6050 /* WarningCell.m in Sources */, + 80FBACC31833FAE000C4BB69 /* WarningTableView.m in Sources */, + 80FBACC41833FAE000C4BB69 /* WarningTableViewHandler.m in Sources */, + 921EEAE018A5884300D864C2 /* SequencerJoints.m in Sources */, + B75CB48B184D31270036259F /* UsageManager.m in Sources */, + 7789ABD0133AA82000CEFCC7 /* main.m in Sources */, + 7789ABD6133AA82000CEFCC7 /* AppDelegate.m in Sources */, + 7789ACEA133AB47A00CEFCC7 /* CocosScene.m in Sources */, + 772BE565133C06320009B5B9 /* NSFlippedView.m in Sources */, + 772BE572133E48350009B5B9 /* CCBGlobals.m in Sources */, + 772BE5801343A6EF0009B5B9 /* CCBWriterInternal.m in Sources */, + 772BE58E134BB6C00009B5B9 /* CCBDocument.m in Sources */, + 772BE594134BC2BF0009B5B9 /* CCBReaderInternalV1.m in Sources */, + 771B2B321353818200B260BA /* NewDocWindowController.m in Sources */, + 77156DB1137F0351005EF746 /* CCBSpriteSheetParser.m in Sources */, + DC68033C189169510060BE39 /* CCNode+SKNode.m in Sources */, + 77E1992013858D78006C361B /* NSBezierPath_AMShading.m in Sources */, + 77E1992113858D78006C361B /* NSString_AITruncation.m in Sources */, + 77E1992213858D78006C361B /* PSMMetalTabStyle.m in Sources */, + 77E1992313858D78006C361B /* PSMOverflowPopUpButton.m in Sources */, + 77E1992413858D78006C361B /* PSMProgressIndicator.m in Sources */, + 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 */, + 77E1992B13858D78006C361B /* PSMTabDragWindow.m in Sources */, + 77E1992C13858D78006C361B /* PSMTabDragWindowController.m in Sources */, + 776C683E1385C02000153214 /* CCBOutlineView.m in Sources */, + 92BF8AB2192BCDF300C1BC28 /* InspectorButton.m in Sources */, + 776C68421385C4F100153214 /* CCBTextFieldCell.m in Sources */, + 922E8EFE18C13666008E1764 /* OutletDrawWindow.m in Sources */, + 776C68451385D37E00153214 /* CCBTableView.m in Sources */, + 77D33EAB138EA4F900012A88 /* CCBUtil.m in Sources */, + 77E7D04B138F777A00E8EE67 /* CCBModalSheetController.m in Sources */, + 77E7D04F138F78F600E8EE67 /* StageSizeWindow.m in Sources */, + 776A37B61398D6BF00960E94 /* CCBGLView.m in Sources */, + 4DB7C95719083B9C00ECE19F /* NotificationNames.m in Sources */, + E3B7AEDD14E3246100DFD402 /* PlugInManager.m in Sources */, + E3B7AEE014E32E7F00DFD402 /* PlugInNode.m in Sources */, + E3B7AEEC14E342E200DFD402 /* InspectorPosition.m in Sources */, + E3B7AEEF14E34A4D00DFD402 /* InspectorValue.m in Sources */, + E3FEA8AA14E45F1000119FBE /* InspectorSize.m in Sources */, + E3FEA8AF14E47C7500119FBE /* InspectorPoint.m in Sources */, + E3FEA8B414E4874C00119FBE /* InspectorPointLock.m in Sources */, + B77EC96618087011004C09FF /* CCBProjCreator.m in Sources */, + E3FEA8B914E492DA00119FBE /* InspectorScaleLock.m in Sources */, + E3FEA8BE14E498B700119FBE /* InspectorDegrees.m in Sources */, + E3B4221114E49DEB004547D6 /* InspectorInteger.m in Sources */, + 92F0961D18F891A900D47A94 /* InspectorEnabledFloat.m in Sources */, + E3B4221614E4A381004547D6 /* InspectorCheck.m in Sources */, + E3B4221B14E4BE87004547D6 /* InspectorSpriteFrame.m in Sources */, + E3B4222014E58C75004547D6 /* InspectorByte.m in Sources */, + E3B4222514E59035004547D6 /* InspectorColor3.m in Sources */, + E3B4222A14E59F5D004547D6 /* InspectorFlip.m in Sources */, + 5BA3DC35192110B90055DD96 /* GuideGridSizeWindow.m in Sources */, + E3B4222F14E5A849004547D6 /* InspectorBlendmode.m in Sources */, + E3B4223214E5CF97004547D6 /* NodeInfo.m in Sources */, + E3B4223714E5E6AD004547D6 /* InspectorSeparator.m in Sources */, + 83DC65EA18D898D50028EF72 /* SBUserDefaultsKeys.m in Sources */, + E3C3660114EA0507007CD5FF /* TexturePropertySetter.m in Sources */, + E3C3660414EB2C1B007CD5FF /* CCBReaderInternal.m in Sources */, + E32D8CC814EC25D800F4BD5E /* InspectorCodeConnections.m in Sources */, + E35DBBC214F29EF80070A6E4 /* InspectorFntFile.m in Sources */, + E35DBBC714F2A2A50070A6E4 /* InspectorText.m in Sources */, + E35DBBE414F3DD0B0070A6E4 /* InspectorFontTTF.m in Sources */, + E35DBBFE14F3EE410070A6E4 /* InspectorFloat.m in Sources */, + E35DBC1E14F4DF050070A6E4 /* InspectorStartStop.m in Sources */, + 921EEB2C18ADE5C600D864C2 /* InspectorNodeReference.m in Sources */, + E35DBC2314F4ED980070A6E4 /* InspectorIntegerLabeled.m in Sources */, + E35DBC2814F4FF410070A6E4 /* InspectorTexture.m in Sources */, + 9297AC3018A43BCA003C3705 /* NSArray+Query.m in Sources */, + E325F64814F5336E00D29BCF /* InspectorFloatVar.m in Sources */, + E325F64D14F53FF100D29BCF /* InspectorColor4FVar.m in Sources */, + E325F65214F5669600D29BCF /* InspectorSeparatorSub.m in Sources */, + E385A42314F6A01900DFB12D /* InspectorBlock.m in Sources */, + E398C03314FB86D20078E771 /* PlugInExport.m in Sources */, + E398C03814FB8A430078E771 /* CCBX.m in Sources */, + E398C04314FBCA620078E771 /* PublishTypeAccessoryView.m in Sources */, + E3C5C1A41504D17E000CF6F3 /* ResourceManager.m in Sources */, + 9249983218B7E1F500DE9ADA /* SceneGraph.m in Sources */, + E3C5C1AC1504D30C000CF6F3 /* SCEvent.m in Sources */, + E3C5C1AD1504D30C000CF6F3 /* SCEvents.m in Sources */, + E3C5C1B515075CDD000CF6F3 /* ResourceManagerUtil.m in Sources */, + E3C5C1C91508F35E000CF6F3 /* CCBAnimationParser.m in Sources */, + E3850809150AA9AE007E162A /* ImageAndTextCell.m in Sources */, + E3D59136150F861E004180CA /* InspectorCCBFile.m in Sources */, + E33BC1B81510E4B6009AE29A /* NodeGraphPropertySetter.m in Sources */, + E3C6510A151A65ED00D639C0 /* InspectorString.m in Sources */, + E3C6512B151C7E3700D639C0 /* InspectorBlockCCControl.m in Sources */, + E36F3C3D152C756D00AAD805 /* NSString+RelativePath.m in Sources */, + E34E5D6615357CF2000201FB /* RulersLayer.m in Sources */, + E3A16AF31536D096004B528A /* GuidesLayer.m in Sources */, + E3B9AF4B153C150D00489438 /* CCBTransparentWindow.m in Sources */, + E3B9AF4E153C48E300489438 /* CCBTransparentView.m in Sources */, + E3F3F83F153C72A3005443EE /* NotesLayer.m in Sources */, + E3F3F843153C7700005443EE /* StickyNote.m in Sources */, + E35A2D9C1540207000F78B72 /* PositionPropertySetter.m in Sources */, + E3EDBC101546D23000EEF1F3 /* ResolutionSetting.m in Sources */, + E3EDBC1415483E3200EEF1F3 /* ResolutionSettingsWindow.m in Sources */, + E3EDBC251549971000EEF1F3 /* CCBFileUtil.m in Sources */, + E334069B1551725F000FBD0B /* InspectorFloatScale.m in Sources */, + E3799EAD155979BF00196B4A /* ProjectSettings.m in Sources */, + E3462867155BF6C50043EAB1 /* ResourceManagerOutlineHandler.m in Sources */, + E346286B155C18D80043EAB1 /* SavePanelLimiter.m in Sources */, + 8392006F18ED91BC00B6C429 /* Cocos2dUpdater.m in Sources */, + E3462870155D22290043EAB1 /* CCBPublisher.m in Sources */, + E3462873155D22FC0043EAB1 /* CCBWarnings.m in Sources */, + E32BBCB11561361200C58395 /* HashValue.m in Sources */, + E3DCFD9F1562A3AD00BD7D7F /* TaskStatusWindow.m in Sources */, + E335CAF3157603C200A612EE /* SequencerHandler.m in Sources */, + E335CAF6157649F900A612EE /* SequencerExpandBtnCell.m in Sources */, + 4D0C1E7618F4760800B028CA /* SnapLayer.m in Sources */, + E335CAFB1576592600A612EE /* SequencerCell.m in Sources */, + E335CB001576702300A612EE /* MainWindow.m in Sources */, + E335CB031577838800A612EE /* SequencerOutlineView.m in Sources */, + 922E8EF718BFE47A008E1764 /* InspectorFloatCheck.m in Sources */, + E335CB061577995F00A612EE /* CCBSplitView.m in Sources */, + E335CB0A1577C5FB00A612EE /* CCNode+NodeInfo.m in Sources */, + E335CB0F1578C2C600A612EE /* SequencerStructureCell.m in Sources */, + E3E8B4871578F8F800373983 /* SequencerTimelineView.m in Sources */, + E3E8B4A1157CC57E00373983 /* SequencerScrubberSelectionView.m in Sources */, + E3E8B4A8157CD67000373983 /* SequencerSequence.m in Sources */, + 926D13D318B57A4900582959 /* CCScaleFreeNode.m in Sources */, + E36ECCE5158648EE003C177E /* SequencerNodeProperty.m in Sources */, + E36ECD0D15868F57003C177E /* SequencerKeyframe.m in Sources */, + E3A0ED5A159119E7000BDF4B /* SequencerSettingsWindow.m in Sources */, + E3F73DB61593908A00D74084 /* SequencerDurationWindow.m in Sources */, + E3E05578159B2322001066C5 /* NSString+AppendToFile.m in Sources */, + E3926188159C69D20034FF1D /* SequencerKeyframeEasing.m in Sources */, + E3FD4DD315A0A2C10032C2DD /* SequencerKeyframeEasingWindow.m in Sources */, + E3FD4DDF15A455B90032C2DD /* SequencerSequenceArrayController.m in Sources */, + B7DE84901937A8390039FB72 /* RegistrationWindow.m in Sources */, + E35A135F15B038D700C9AA15 /* ThoMoClientStub.m in Sources */, + E35A136015B038D700C9AA15 /* ThoMoNetworkStub.m in Sources */, + E35A136115B038D700C9AA15 /* ThoMoServerStub.m in Sources */, + E35A136215B038D700C9AA15 /* ThoMoTCPConnection.m in Sources */, + E33C2AAC15C987EB0043EF9B /* ResourceManagerOutlineView.m in Sources */, + E33C2AAF15C9A0D40043EF9B /* SequencerUtil.m in Sources */, + 926D139518B2DC2E00582959 /* NSDictionary+Query.m in Sources */, + E33C2AB815CAE3980043EF9B /* SequencerStretchWindow.m in Sources */, + E3214C4415D3C29D002413A7 /* CustomPropSettingsWindow.m in Sources */, + E3214C4715D3C3AF002413A7 /* CustomPropSetting.m in Sources */, + E3214C4B15D40F01002413A7 /* InspectorCustom.m in Sources */, + E3214C5D15D54356002413A7 /* InspectorCustomEdit.m in Sources */, + E3B7BCA015E3BCFE00CF95EF /* MainToolbarDelegate.m in Sources */, + E3AF6CDB15F0A9BC0048DB2A /* HelpWindow.m in Sources */, + E3AF6CE415F0DBA90048DB2A /* HelpPage.m in Sources */, + E3C9CCBB161D0BBF008A3784 /* InspectorCodeConnectionsJS.m in Sources */, + E34039BE1624BF610067C7B8 /* CCBDocumentController.m in Sources */, + 581BCFE8162DADE7007DE600 /* CCBSplitHorizontalView.m in Sources */, + E3808DB71641CB6400398456 /* PublishSettingsWindow.m in Sources */, + E3808DBA1641D4B800398456 /* CCBTextFieldLabel.m in Sources */, + E380B2521642FC3C0006D31C /* TexturePacker.cpp in Sources */, + E380B2531642FC3C0006D31C /* Tupac.mm in Sources */, + B7C3534117FA3DF1005697C1 /* PhysicsHandler.m in Sources */, + E3618D5616655041009F5805 /* CCBPublisherTemplate.m in Sources */, + E39108081679365600391C3B /* MaxRectsBinPack.cpp in Sources */, + E39108091679365600391C3B /* Rect.cpp in Sources */, + 8392007018ED91BC00B6C429 /* Cocos2dUpdater+Errors.m in Sources */, + E35D78D516826C0100A53BEF /* SpriteSheetSettingsWindow.m in Sources */, + E334741C169DC5A7000737CC /* APIDocsWindow.m in Sources */, + E3D6BA1E16C46E11006AFE0A /* SequencerSoundChannel.m in Sources */, + D2E0168118D7838F00927430 /* SpriteBuilderCommand.m in Sources */, + E3D6BA2316C46E41006AFE0A /* SequencerCallbackChannel.m in Sources */, + 921EEB2418ADB7EA00D864C2 /* GeometryUtil.m in Sources */, + E3D6BA2616C46E91006AFE0A /* SequencerChannel.m in Sources */, + E3DA6FEE16CAEC7800B12FFB /* SequencerPopoverHandler.m in Sources */, + E312973316CC377700A09155 /* SequencerPopoverBlock.m in Sources */, + E312973816CC67CB00A09155 /* SequencerPopoverSound.m in Sources */, + E3B5EE8916D6E0AA00C07990 /* InspectorFloatXY.m in Sources */, + E390C77E170A2C9B003E9E92 /* AboutWindow.m in Sources */, + E334A4E4170CFDE3001604F7 /* CCBTextField.m in Sources */, + B7C3533E17FA30BB005697C1 /* NodePhysicsBody.m in Sources */, + E3C12B1B171DD386001EEDDB /* NSWindow+CCBAccessoryView.m in Sources */, + E37FCAF4175D68FF009F81D6 /* ResourceManagerPreviewView.m in Sources */, + E37FCAF9175FF70F009F81D6 /* CCBImageView.m in Sources */, + B78DA3641773A89B00B85CC0 /* CCBButtonUnclickable.m in Sources */, + B78DA3691773EA0E00B85CC0 /* NSPasteboard+CCB.m in Sources */, + B794AB99177CE09D004FF493 /* FCFormatConverter.mm in Sources */, + B7AC6980179F50850041B8BD /* BFColorPickerPopover.m in Sources */, + B7AC6982179F50850041B8BD /* BFPopoverColorWell.m in Sources */, + B7AC6983179F50850041B8BD /* NSColor+BFColorPickerPopover.m in Sources */, + B7AC6984179F50850041B8BD /* NSColorPanel+BFColorPickerPopover.m in Sources */, + B7AC6985179F50850041B8BD /* NSColorWell+BFColorPickerPopover.m in Sources */, + B7AC6986179F50850041B8BD /* BFColorPickerPopoverView.m in Sources */, + B7AC6987179F50850041B8BD /* BFColorPickerViewController.m in Sources */, + B7AC6988179F50850041B8BD /* BFIconTabBar.m in Sources */, + B7AC699C17A079C80041B8BD /* NSDictionary+SMKeyValueObserving.m in Sources */, + B7AC699D17A079C80041B8BD /* SMBar.m in Sources */, + B7AC699E17A079C80041B8BD /* SMTabBar.m in Sources */, + B7AC699F17A079C80041B8BD /* SMTabBarButtonCell.m in Sources */, + B7AC69A017A079C80041B8BD /* SMTabBarItem.m in Sources */, + B7AC69B017A0A10E0041B8BD /* ResourceManagerTilelessEditorManager.m in Sources */, + B7AC69B717A1B9930041B8BD /* CCBImageBrowserView.m in Sources */, + B7AC69BA17A2F4470041B8BD /* PlugInNodeViewHandler.m in Sources */, + B7AC69C017A3129C0041B8BD /* PlugInNodeCollectionView.m in Sources */, + B7AC69C317A320E30041B8BD /* CCBColorView.m in Sources */, + B7AC69D117A758A40041B8BD /* PropertyInspectorHandler.m in Sources */, + B7AC69D417A75E7E0041B8BD /* PropertyInspectorTemplateCollectionView.m in Sources */, + B7AC69D717A827470041B8BD /* PropertyInspectorTemplate.m in Sources */, + B7083DF617B1CB88006628C7 /* LocalizationEditorWindow.m in Sources */, + B7083DF917B1CBC8006628C7 /* LocalizationEditorHandler.m in Sources */, + B7083DFE17B2CDA0006628C7 /* LocalizationEditorLanguage.m in Sources */, + B7083E0117B2F992006628C7 /* LocalizationEditorTranslation.m in Sources */, + B7083E0417B32623006628C7 /* LocalizationEditorLanguageTableView.m in Sources */, + B7083E0717B32DAD006628C7 /* LocalizationEditorTranslationTableView.m in Sources */, + B7083E0A17B567E5006628C7 /* StringPropertySetter.m in Sources */, + 83F8673418D1DCEA007441E4 /* SBErrors.m in Sources */, + B7737D4F17CC102D005F775A /* InspectorColor4.m in Sources */, + B7F02D4C17D13332008A2E2D /* CCBTransparentWindowDraggable.m in Sources */, + E525FB7B0CB67BE80AAFB31F /* OptimizeImageWithOptiPNGOperation.m in Sources */, + E525FD5C17B1032DF742AC22 /* PublishSpriteSheetOperation.m in Sources */, + E525FF5E533A11756767D753 /* PublishRegularFileOperation.m in Sources */, + E525FA6349C648C70C3F65DC /* PublishSoundFileOperation.m in Sources */, + E525F9D641B364C1235E450B /* PublishBaseOperation.m in Sources */, + 92B91026193413F500E346B5 /* InspectorAnimation.m in Sources */, + E525FBA4E26414A8E6EBA77C /* PublishCCBOperation.m in Sources */, + E525F2C0B3311DCAEC86C6B0 /* PublishImageOperation.m in Sources */, + E525F3B510C25EE6D73F2C68 /* DateCache.m in Sources */, + 7BF55307193F912200183F09 /* LocalizationTranslateWindow.m in Sources */, + E525F4E581031BFDE7E6DC9A /* NSString+Publishing.m in Sources */, + E525FA5D4791EB730859BF2C /* ProjectSettings+Convenience.m in Sources */, + E525F2137095DF73409AC768 /* PublishGeneratedFilesOperation.m in Sources */, + E525FBB73A012AC88E99B21B /* PublishRenamedFilesLookup.m in Sources */, + E525F62CDA640CE17C2C9B00 /* PublishSpriteKitSpriteSheetOperation.m in Sources */, + E525FA398CC2E279B3D65D16 /* PublishingTaskStatusProgress.m in Sources */, + E525F07CCBACEC15F8A13EC7 /* AnimationPlaybackManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 833A5C46192B48CA001837B3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9203805B19465679000A8816 /* CCAnimation_Tests.m in Sources */, + 833A5C5C192B4981001837B3 /* CCBReader_Tests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92154AD018A5560B00BD215C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9294EC9318C660480059014C /* CCBPhyicsPivotJointPlaceholder.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 926D13D818B57B9500582959 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9294EC9618C6606F0059014C /* CCBPhysicsPinJointPlacefolder.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92B7900218C808B7007DF895 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 92B792CE18C92CA1007DF895 /* CCBPhyicsSpringJointPlaceholder.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B729AC4E181F091800BA0D9C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B729AC6A181F0C2200BA0D9C /* CCBPSlider.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B73788D51804AC5D0076A88C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B72D1DCF18612D340091252F /* CCBPScrollView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B79F90D417FF30DB00908504 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B79F90EE17FF366C00908504 /* CCBPPhysicsNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C3531E17F65547005697C1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B72D1DD518612D790091252F /* CCBPSprite9Slice.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C623AD17F383CE00928F91 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7C623C717F3870A00928F91 /* CCBPButton.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C623C917F38B7800928F91 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B72D1DC318612CA70091252F /* CCBPControl.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7EE699118188E0800B983FE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7EE69B01819822500B983FE /* CCBPTextField.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7EE69F41819EE0D00B983FE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B72D1DC918612CF50091252F /* CCBPLayoutBox.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC05E77818D0ACCB00592A1E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC05E79518D0AD8100592A1E /* CCBPluginSBControlNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC05E78518D0ACE000592A1E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC05E79118D0AD7800592A1E /* CCBPluginSBButtonNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC5129BE1891450D0091873D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC680343189169E10060BE39 /* CCBPluginSKSpriteNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC6802FD1891466C0060BE39 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC68030F189146900060BE39 /* CCBPluginSKLabelNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC68031E189156310060BE39 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC680333189156A60060BE39 /* CCBPluginSKColorSpriteNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCB9F14D1890600D00128D78 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC680341189169D50060BE39 /* CCBPluginSKNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCFB063418E32B7500DF02A0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DCFB064E18E32BFA00DF02A0 /* CCBPluginSKFile.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBB7C14F225D30070A6E4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B78AE44B17E263B20028BE0B /* CCBPNodeColor.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBB9414F244BB0070A6E4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B78AE44E17E263FC0028BE0B /* CCBPNodeGradient.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBBC814F2AA350070A6E4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B72D1DC618612CD50091252F /* CCBPLabelBMFont.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBBE514F3E2390070A6E4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E3A16AF61536D69A004B528A /* CCBPLabelTTF.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E35DBC0514F4D72B0070A6E4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E325F65514F5749800D29BCF /* CCBPParticleSystem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E398C01E14FB81A30078E771 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4D0C1E7918F49A3700B028CA /* CCNode+PositionExtentions.m in Sources */, + E398C03B14FB8F850078E771 /* CCBXCocos2diPhone.m in Sources */, + E3F2C21314FC157E007B660D /* CCBXCocos2diPhoneWriter.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3B7AEC114E3193500DFD402 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B72D1DCC18612D100091252F /* CCBPNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3C365E714E9E4D1007CD5FF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B72D1DD218612D570091252F /* CCBPSprite.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3D5911D150F5367004180CA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E3D59139150F8C5A004180CA /* CCBPCCBFile.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA98CFBD154E7D1C006E58C5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FA98CFD7154E828E006E58C5 /* PlugInManager.m in Sources */, + FA98CFD9154E828E006E58C5 /* PlugInExport.m in Sources */, + FA98CFD1154E7F7D006E58C5 /* CCBX.m in Sources */, + FA98CFC7154E7D1C006E58C5 /* ccbpublish.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 833A5C57192B48CB001837B3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 7789ABBD133AA82000CEFCC7 /* SpriteBuilder */; + targetProxy = 833A5C56192B48CB001837B3 /* PBXContainerItemProxy */; + }; + 833A5C60192B4F00001837B3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = cocos2d; + targetProxy = 833A5C5F192B4F00001837B3 /* PBXContainerItemProxy */; + }; + 9203806119465955000A8816 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E398C02114FB81A30078E771 /* Cocos2D iPhone */; + targetProxy = 9203806019465955000A8816 /* PBXContainerItemProxy */; + }; + 92154AE218A5567400BD215C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 92154ACF18A5560B00BD215C /* CCPhysicsPivotJoint */; + targetProxy = 92154AE118A5567400BD215C /* PBXContainerItemProxy */; + }; + 926D13E618B57C4200582959 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 926D13D718B57B9500582959 /* CCPhysicsPinJoint */; + targetProxy = 926D13E518B57C4200582959 /* PBXContainerItemProxy */; + }; + 92A805C518D3CFAC004508E3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 92B7900118C808B7007DF895 /* CCPhysicsSpringJoint */; + targetProxy = 92A805C418D3CFAC004508E3 /* PBXContainerItemProxy */; + }; + B729AC6C181F0D1400BA0D9C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B729AC51181F091800BA0D9C /* CCSlider */; + targetProxy = B729AC6B181F0D1400BA0D9C /* PBXContainerItemProxy */; + }; + B73788EE1804AF5E0076A88C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B73788D81804AC5D0076A88C /* CCScrollView */; + targetProxy = B73788ED1804AF5E0076A88C /* PBXContainerItemProxy */; + }; + B79F90E517FF31A300908504 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B79F90D717FF30DB00908504 /* CCPhysicsNode */; + targetProxy = B79F90E417FF31A300908504 /* PBXContainerItemProxy */; + }; + B7C3533317F65652005697C1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B7C3532117F65547005697C1 /* CCSprite9Slice */; + targetProxy = B7C3533217F65652005697C1 /* PBXContainerItemProxy */; + }; + B7C623BF17F384B200928F91 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B7C623B017F383CE00928F91 /* CCButton */; + targetProxy = B7C623BE17F384B200928F91 /* PBXContainerItemProxy */; + }; + B7C623DA17F3902900928F91 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B7C623CC17F38B7800928F91 /* CCControl */; + targetProxy = B7C623D917F3902900928F91 /* PBXContainerItemProxy */; + }; + B7D0918917C2C16E0007FE7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = cocos2d; + targetProxy = B7D0918817C2C16E0007FE7F /* PBXContainerItemProxy */; + }; + B7EE69A618188EB800B983FE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B7EE699418188E0800B983FE /* CCTextField */; + targetProxy = B7EE69A518188EB800B983FE /* PBXContainerItemProxy */; + }; + B7EE6A091819EE6000B983FE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B7EE69F71819EE0D00B983FE /* CCLayoutBox */; + targetProxy = B7EE6A081819EE6000B983FE /* PBXContainerItemProxy */; + }; + DC05E79818D0ADDC00592A1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC05E77718D0ACCB00592A1E /* SBControlNode */; + targetProxy = DC05E79718D0ADDC00592A1E /* PBXContainerItemProxy */; + }; + DC05E79A18D0ADDC00592A1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC05E78418D0ACE000592A1E /* SBButtonNode */; + targetProxy = DC05E79918D0ADDC00592A1E /* PBXContainerItemProxy */; + }; + DC680314189146C80060BE39 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC5129BD1891450D0091873D /* SKSpriteNode */; + targetProxy = DC680313189146C80060BE39 /* PBXContainerItemProxy */; + }; + DC680316189146C80060BE39 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC6802FC1891466C0060BE39 /* SKLabelNode */; + targetProxy = DC680315189146C80060BE39 /* PBXContainerItemProxy */; + }; + DC680338189157B00060BE39 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC68031D189156310060BE39 /* SKColorSpriteNode */; + targetProxy = DC680337189157B00060BE39 /* PBXContainerItemProxy */; + }; + DCB9F16B189060DF00128D78 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DCB9F14C1890600D00128D78 /* SKNode */; + targetProxy = DCB9F16A189060DF00128D78 /* PBXContainerItemProxy */; + }; + DCFB065018E32C2D00DF02A0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DCFB063318E32B7500DF02A0 /* SKFile */; + targetProxy = DCFB064F18E32C2D00DF02A0 /* PBXContainerItemProxy */; + }; + E35DBB8E14F226230070A6E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E35DBB7F14F225D30070A6E4 /* CCNodeColor */; + targetProxy = E35DBB8D14F226230070A6E4 /* PBXContainerItemProxy */; + }; + E35DBBA514F244FA0070A6E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E35DBB9714F244BB0070A6E4 /* CCNodeGradient */; + targetProxy = E35DBBA414F244FA0070A6E4 /* PBXContainerItemProxy */; + }; + E35DBBD914F2AA720070A6E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E35DBBCB14F2AA350070A6E4 /* CCLabelBMFont */; + targetProxy = E35DBBD814F2AA720070A6E4 /* PBXContainerItemProxy */; + }; + E35DBBF614F3E26B0070A6E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E35DBBE814F3E2390070A6E4 /* CCLabelTTF */; + targetProxy = E35DBBF514F3E26B0070A6E4 /* PBXContainerItemProxy */; + }; + E35DBC1614F4D7920070A6E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E35DBC0814F4D72B0070A6E4 /* CCParticleSystem */; + targetProxy = E35DBC1514F4D7920070A6E4 /* PBXContainerItemProxy */; + }; + E398C02F14FB82090078E771 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E398C02114FB81A30078E771 /* Cocos2D iPhone */; + targetProxy = E398C02E14FB82090078E771 /* PBXContainerItemProxy */; + }; + E3B7AED314E31AEF00DFD402 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E3B7AEC414E3193500DFD402 /* CCNode */; + targetProxy = E3B7AED214E31AEF00DFD402 /* PBXContainerItemProxy */; + }; + E3C365F814E9E4DD007CD5FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E3C365EA14E9E4D1007CD5FF /* CCSprite */; + targetProxy = E3C365F714E9E4DD007CD5FF /* PBXContainerItemProxy */; + }; + E3D5912E150F53CD004180CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E3D59120150F5367004180CA /* CCBFile */; + targetProxy = E3D5912D150F53CD004180CA /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 7789ABCB133AA82000CEFCC7 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 7789ABCC133AA82000CEFCC7 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + 7789ABD1133AA82000CEFCC7 /* Credits.rtf */ = { + isa = PBXVariantGroup; + children = ( + 7789ABD2133AA82000CEFCC7 /* en */, + ); + name = Credits.rtf; + sourceTree = ""; + }; + 7789ABD7133AA82000CEFCC7 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 7789ABD8133AA82000CEFCC7 /* en */, + ); + name = MainMenu.xib; + sourceTree = ""; + }; + 833A5C50192B48CB001837B3 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 833A5C51192B48CB001837B3 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + 92154AC218A5531800BD215C /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 92154AC318A5531800BD215C /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + 926D13ED18B57E1600582959 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 926D13EE18B57E1600582959 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + 92B792C318C92C60007DF895 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 92B792C418C92C60007DF895 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B729AC57181F091800BA0D9C /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B729AC58181F091800BA0D9C /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B73788DE1804AC5E0076A88C /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B73788DF1804AC5E0076A88C /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B79F90DD17FF30DC00908504 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B79F90DE17FF30DC00908504 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B7C3532717F65547005697C1 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B7C3532817F65547005697C1 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B7C623B717F383CE00928F91 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B7C623B817F383CE00928F91 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B7C623D217F38B7800928F91 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B7C623D317F38B7800928F91 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B7EE699A18188E0900B983FE /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B7EE699B18188E0900B983FE /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B7EE69FD1819EE0D00B983FE /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B7EE69FE1819EE0D00B983FE /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E35DBB8514F225D30070A6E4 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E35DBB8614F225D30070A6E4 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E35DBB9D14F244BC0070A6E4 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E35DBB9E14F244BC0070A6E4 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E35DBBD114F2AA360070A6E4 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E35DBBD214F2AA360070A6E4 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E35DBBEE14F3E2390070A6E4 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E35DBBEF14F3E2390070A6E4 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E35DBC0E14F4D72B0070A6E4 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E35DBC0F14F4D72B0070A6E4 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E398C02714FB81A30078E771 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E398C02814FB81A30078E771 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E3B7AECA14E3193500DFD402 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E3B7AECB14E3193500DFD402 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E3C365F014E9E4D1007CD5FF /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E3C365F114E9E4D1007CD5FF /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E3D59126150F5367004180CA /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E3D59127150F5367004180CA /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 7789ABDA133AA82000CEFCC7 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + FRAMEWORK_SEARCH_PATHS = libs; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = DEBUG; + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + MACOSX_DEPLOYMENT_TARGET = 10.8; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + USER_HEADER_SEARCH_PATHS = "libs/cocos2d-iphone/external/kazmath/include/** libs/cocos2d-iphone/external/Chipmunk/objectivec/include/ libs/cocos2d-iphone/external/Chipmunk/include/ libs/cocos2d-iphone/external/ObjectAL/**"; + }; + name = Debug; + }; + 7789ABDB133AA82000CEFCC7 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + FRAMEWORK_SEARCH_PATHS = libs; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + MACOSX_DEPLOYMENT_TARGET = 10.8; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + USER_HEADER_SEARCH_PATHS = "libs/cocos2d-iphone/external/kazmath/include/** libs/cocos2d-iphone/external/Chipmunk/objectivec/include/ libs/cocos2d-iphone/external/Chipmunk/include/ libs/cocos2d-iphone/external/ObjectAL/**"; + }; + name = Release; + }; + 7789ABDD133AA82000CEFCC7 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + 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; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ccBuilder/SpriteBuilder-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "CC_DIRECTOR_MAC_THREAD=2", + "COCOS2D_DEBUG=1", + "CC_ENABLE_GL_STATE_CACHE=1", + DEBUG, + ); + HEADER_SEARCH_PATHS = ( + libs/Fragaria, + "../Examples/CocosBuilderExample/libs/CCBReader/**", + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/Chipmunk/include/chipmunk", + "libs/cocos2d-iphone/external/Chipmunk/objectivec/include/", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "ccBuilder/SpriteBuilder-Info.plist"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/libs/MMMarkdown\"", + "\"$(SRCROOT)/libs/Tupac\"", + "\"$(SRCROOT)/libs/PVRTexTool\"", + ); +<<<<<<< HEAD + "OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--deep"; +======= + MACOSX_DEPLOYMENT_TARGET = 10.9; +>>>>>>> d058712eafade524322b3963374bf3c70d4ff156 + OTHER_LDFLAGS = "-all_load"; + PRODUCT_NAME = SpriteBuilder; + PROVISIONING_PROFILE = "3C61F300-140F-4802-AB93-852E91DF6DEB"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + 7789ABDE133AA82000CEFCC7 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + 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; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ccBuilder/SpriteBuilder-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "CC_DIRECTOR_MAC_THREAD=2", + NDEBUG, + NS_BLOCK_ASSERTIONS, + "CC_ENABLE_GL_STATE_CACHE=1", + ); + HEADER_SEARCH_PATHS = ( + libs/Fragaria, + "../Examples/CocosBuilderExample/libs/CCBReader/**", + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/Chipmunk/include/chipmunk", + "libs/cocos2d-iphone/external/Chipmunk/objectivec/include/", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "ccBuilder/SpriteBuilder-Info.plist"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/libs/MMMarkdown\"", + "\"$(SRCROOT)/libs/Tupac\"", + "\"$(SRCROOT)/libs/PVRTexTool\"", + ); +<<<<<<< HEAD + "OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--deep"; +======= + MACOSX_DEPLOYMENT_TARGET = 10.9; +>>>>>>> d058712eafade524322b3963374bf3c70d4ff156 + OTHER_LDFLAGS = "-all_load"; + PRODUCT_NAME = SpriteBuilder; + PROVISIONING_PROFILE = "3C61F300-140F-4802-AB93-852E91DF6DEB"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + 833A5C59192B48CB001837B3 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/SpriteBuilder.app/Contents/MacOS/SpriteBuilder"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + COPY_PHASE_STRIP = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(DEVELOPER_FRAMEWORKS_DIR)", + "$(inherited)", + ); + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "SpriteBuilder Tests/SpriteBuilder Tests-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "SpriteBuilder Tests/SpriteBuilder Tests-Info.plist"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUNDLE_LOADER)"; + WRAPPER_EXTENSION = xctest; + }; + name = Debug; + }; + 833A5C5A192B48CB001837B3 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/SpriteBuilder.app/Contents/MacOS/SpriteBuilder"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(DEVELOPER_FRAMEWORKS_DIR)", + "$(inherited)", + ); + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "SpriteBuilder Tests/SpriteBuilder Tests-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "SpriteBuilder Tests/SpriteBuilder Tests-Info.plist"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUNDLE_LOADER)"; + WRAPPER_EXTENSION = xctest; + }; + name = Release; + }; + 92154AD918A5560B00BD215C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsPivotJoint/CCPhysicsPivotJoint-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = CCPhysicsPivotJoint; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + 92154ADA18A5560B00BD215C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsPivotJoint/CCPhysicsPivotJoint-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = CCPhysicsPivotJoint; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + 926D13E118B57B9500582959 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsPinJoint/CCPhysicsPinJoint-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = CCPhysicsPinJoint; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + 926D13E218B57B9500582959 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsPinJoint/CCPhysicsPinJoint-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = CCPhysicsPinJoint; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + 92B7900B18C808B7007DF895 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsSpringJoint/CCPhysicsSpringJoint-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = CCPhysicsSpringJoint; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + 92B7900C18C808B7007DF895 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsSpringJoint/CCPhysicsSpringJoint-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = CCPhysicsSpringJoint; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B729AC5B181F091800BA0D9C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCSlider/CCSlider-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCSlider/CCSlider-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B729AC5C181F091800BA0D9C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCSlider/CCSlider-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCSlider/CCSlider-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B73788E21804AC5E0076A88C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCScrollView/CCScrollView-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCScrollView/CCScrollView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B73788E31804AC5E0076A88C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCScrollView/CCScrollView-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCScrollView/CCScrollView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B79F90E217FF30DC00908504 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsNode/CCPhysicsNode-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B79F90E317FF30DC00908504 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCPhysicsNode/CCPhysicsNode-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCPhysicsNode/CCPhysicsNode-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B7C3532C17F65548005697C1 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCSprite9Slice/CCSprite9Slice-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCSprite9Slice/CCSprite9Slice-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B7C3532D17F65548005697C1 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCSprite9Slice/CCSprite9Slice-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCSprite9Slice/CCSprite9Slice-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B7C623BC17F383CE00928F91 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCButton/CCButton-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCButton/CCButton-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B7C623BD17F383CE00928F91 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCButton/CCButton-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCButton/CCButton-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B7C623D717F38B7800928F91 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCControl/CCControl-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCControl/CCControl-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B7C623D817F38B7800928F91 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCControl/CCControl-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCControl/CCControl-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.8; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B7EE699E18188E0900B983FE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCTextField/CCTextField-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCTextField/CCTextField-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B7EE699F18188E0900B983FE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCTextField/CCTextField-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCTextField/CCTextField-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + B7EE6A011819EE0D00B983FE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLayoutBox/CCLayoutBox-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLayoutBox/CCLayoutBox-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + B7EE6A021819EE0D00B983FE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLayoutBox/CCLayoutBox-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLayoutBox/CCLayoutBox-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + DC05E78118D0ACCB00592A1E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SBControlNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + DC05E78218D0ACCB00592A1E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SBControlNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + DC05E78E18D0ACE000592A1E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SBButtonNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + DC05E78F18D0ACE000592A1E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SBButtonNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + DC5129C71891450D0091873D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKSpriteNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + DC5129C81891450D0091873D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKSpriteNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + DC6803061891466C0060BE39 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKLabelNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + DC6803071891466C0060BE39 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKLabelNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + DC680327189156310060BE39 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKColorSpriteNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + DC680328189156310060BE39 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKColorSpriteNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + DCB9F1561890600D00128D78 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + DCB9F1571890600D00128D78 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKNode; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + DCFB063D18E32B7500DF02A0 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKFile; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + DCFB063E18E32B7500DF02A0 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = SKFile; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E35DBB8A14F225D30070A6E4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLayerColor/CCLayerColor-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLayerColor/CCLayerColor-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E35DBB8B14F225D30070A6E4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLayerColor/CCLayerColor-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLayerColor/CCLayerColor-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E35DBBA214F244BC0070A6E4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLayerGradient/CCLayerGradient-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLayerGradient/CCLayerGradient-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E35DBBA314F244BC0070A6E4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLayerGradient/CCLayerGradient-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLayerGradient/CCLayerGradient-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E35DBBD614F2AA360070A6E4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLabelBMFont/CCLabelBMFont-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLabelBMFont/CCLabelBMFont-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E35DBBD714F2AA360070A6E4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLabelBMFont/CCLabelBMFont-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCLabelBMFont/CCLabelBMFont-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E35DBBF314F3E2390070A6E4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLabelTTF/CCLabelTTF-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCLabelTTF/CCLabelTTF-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E35DBBF414F3E2390070A6E4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCLabelTTF/CCLabelTTF-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCLabelTTF/CCLabelTTF-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E35DBC1314F4D72C0070A6E4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCParticleSystem/CCParticleSystem-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCParticleSystem/CCParticleSystem-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E35DBC1414F4D72C0070A6E4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCParticleSystem/CCParticleSystem-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCParticleSystem/CCParticleSystem-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E398C02C14FB81A30078E771 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "Cocos2D iPhone/Cocos2D iPhone-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "COCOS2D_DEBUG=1", + DEBUG, + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + INFOPLIST_FILE = "Cocos2D iPhone/Cocos2D iPhone-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LIBRARY_SEARCH_PATHS = "$(inherited)"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugExport; + }; + name = Debug; + }; + E398C02D14FB81A30078E771 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "Cocos2D iPhone/Cocos2D iPhone-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + INFOPLIST_FILE = "Cocos2D iPhone/Cocos2D iPhone-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LIBRARY_SEARCH_PATHS = "$(inherited)"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugExport; + }; + name = Release; + }; + E3B7AECF14E3193500DFD402 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCNode/CCNode-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCNode/CCNode-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E3B7AED014E3193500DFD402 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCNode/CCNode-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCNode/CCNode-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + LINK_WITH_STANDARD_LIBRARIES = YES; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E3C365F514E9E4D1007CD5FF /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCSprite/CCSprite-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCSprite/CCSprite-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E3C365F614E9E4D1007CD5FF /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCSprite/CCSprite-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + ); + INFOPLIST_FILE = "CCSprite/CCSprite-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + E3D5912B150F5367004180CA /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCBFile/CCBFile-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCBFile/CCBFile-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Debug; + }; + E3D5912C150F5367004180CA /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "CCBFile/CCBFile-Prefix.pch"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + HEADER_SEARCH_PATHS = ( + "libs/cocos2d-iphone/cocos2d/**", + "libs/cocos2d-iphone/cocos2d-ui/**", + "libs/cocos2d-iphone/external/ObjectAL/**", + ); + INFOPLIST_FILE = "CCBFile/CCBFile-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + OTHER_LDFLAGS = ( + "-undefined", + dynamic_lookup, + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = ccbPlugNode; + }; + name = Release; + }; + FA98CFCC154E7D1C006E58C5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)\"", + "\"$(SRCROOT)/libs\"", + ); + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ccbpublish/ccbpublish-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "CC_DIRECTOR_MAC_THREAD=2", + NDEBUG, + NS_BLOCK_ASSERTIONS, + "CC_ENABLE_GL_STATE_CACHE=1", + "CCB_BUILDING_COMMANDLINE=1", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + FA98CFCD154E7D1C006E58C5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)\"", + "\"$(SRCROOT)/libs\"", + ); + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ccbpublish/ccbpublish-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "CC_DIRECTOR_MAC_THREAD=2", + NDEBUG, + NS_BLOCK_ASSERTIONS, + "CC_ENABLE_GL_STATE_CACHE=1", + "CCB_BUILDING_COMMANDLINE=1", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 7789ABB8133AA82000CEFCC7 /* Build configuration list for PBXProject "SpriteBuilder" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7789ABDA133AA82000CEFCC7 /* Debug */, + 7789ABDB133AA82000CEFCC7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 7789ABDC133AA82000CEFCC7 /* Build configuration list for PBXNativeTarget "SpriteBuilder" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7789ABDD133AA82000CEFCC7 /* Debug */, + 7789ABDE133AA82000CEFCC7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 833A5C58192B48CB001837B3 /* Build configuration list for PBXNativeTarget "SpriteBuilder Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 833A5C59192B48CB001837B3 /* Debug */, + 833A5C5A192B48CB001837B3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 92154AD818A5560B00BD215C /* Build configuration list for PBXNativeTarget "CCPhysicsPivotJoint" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 92154AD918A5560B00BD215C /* Debug */, + 92154ADA18A5560B00BD215C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 926D13E018B57B9500582959 /* Build configuration list for PBXNativeTarget "CCPhysicsPinJoint" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 926D13E118B57B9500582959 /* Debug */, + 926D13E218B57B9500582959 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 92B7900A18C808B7007DF895 /* Build configuration list for PBXNativeTarget "CCPhysicsSpringJoint" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 92B7900B18C808B7007DF895 /* Debug */, + 92B7900C18C808B7007DF895 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B729AC61181F091800BA0D9C /* Build configuration list for PBXNativeTarget "CCSlider" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B729AC5B181F091800BA0D9C /* Debug */, + B729AC5C181F091800BA0D9C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B73788E81804AC5E0076A88C /* Build configuration list for PBXNativeTarget "CCScrollView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B73788E21804AC5E0076A88C /* Debug */, + B73788E31804AC5E0076A88C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B79F90E117FF30DC00908504 /* Build configuration list for PBXNativeTarget "CCPhysicsNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B79F90E217FF30DC00908504 /* Debug */, + B79F90E317FF30DC00908504 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B7C3532B17F65548005697C1 /* Build configuration list for PBXNativeTarget "CCSprite9Slice" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B7C3532C17F65548005697C1 /* Debug */, + B7C3532D17F65548005697C1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B7C623BB17F383CE00928F91 /* Build configuration list for PBXNativeTarget "CCButton" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B7C623BC17F383CE00928F91 /* Debug */, + B7C623BD17F383CE00928F91 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B7C623D617F38B7800928F91 /* Build configuration list for PBXNativeTarget "CCControl" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B7C623D717F38B7800928F91 /* Debug */, + B7C623D817F38B7800928F91 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B7EE69A418188E0900B983FE /* Build configuration list for PBXNativeTarget "CCTextField" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B7EE699E18188E0900B983FE /* Debug */, + B7EE699F18188E0900B983FE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B7EE6A071819EE0D00B983FE /* Build configuration list for PBXNativeTarget "CCLayoutBox" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B7EE6A011819EE0D00B983FE /* Debug */, + B7EE6A021819EE0D00B983FE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC05E78018D0ACCB00592A1E /* Build configuration list for PBXNativeTarget "SBControlNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC05E78118D0ACCB00592A1E /* Debug */, + DC05E78218D0ACCB00592A1E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC05E78D18D0ACE000592A1E /* Build configuration list for PBXNativeTarget "SBButtonNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC05E78E18D0ACE000592A1E /* Debug */, + DC05E78F18D0ACE000592A1E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC5129C61891450D0091873D /* Build configuration list for PBXNativeTarget "SKSpriteNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC5129C71891450D0091873D /* Debug */, + DC5129C81891450D0091873D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC6803051891466C0060BE39 /* Build configuration list for PBXNativeTarget "SKLabelNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC6803061891466C0060BE39 /* Debug */, + DC6803071891466C0060BE39 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DC680326189156310060BE39 /* Build configuration list for PBXNativeTarget "SKColorSpriteNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC680327189156310060BE39 /* Debug */, + DC680328189156310060BE39 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DCB9F1551890600D00128D78 /* Build configuration list for PBXNativeTarget "SKNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DCB9F1561890600D00128D78 /* Debug */, + DCB9F1571890600D00128D78 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DCFB063C18E32B7500DF02A0 /* Build configuration list for PBXNativeTarget "SKFile" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DCFB063D18E32B7500DF02A0 /* Debug */, + DCFB063E18E32B7500DF02A0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E35DBB8914F225D30070A6E4 /* Build configuration list for PBXNativeTarget "CCNodeColor" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E35DBB8A14F225D30070A6E4 /* Debug */, + E35DBB8B14F225D30070A6E4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E35DBBA114F244BC0070A6E4 /* Build configuration list for PBXNativeTarget "CCNodeGradient" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E35DBBA214F244BC0070A6E4 /* Debug */, + E35DBBA314F244BC0070A6E4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E35DBBD514F2AA360070A6E4 /* Build configuration list for PBXNativeTarget "CCLabelBMFont" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E35DBBD614F2AA360070A6E4 /* Debug */, + E35DBBD714F2AA360070A6E4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E35DBBF214F3E2390070A6E4 /* Build configuration list for PBXNativeTarget "CCLabelTTF" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E35DBBF314F3E2390070A6E4 /* Debug */, + E35DBBF414F3E2390070A6E4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E35DBC1214F4D72C0070A6E4 /* Build configuration list for PBXNativeTarget "CCParticleSystem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E35DBC1314F4D72C0070A6E4 /* Debug */, + E35DBC1414F4D72C0070A6E4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E398C02B14FB81A30078E771 /* Build configuration list for PBXNativeTarget "Cocos2D iPhone" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E398C02C14FB81A30078E771 /* Debug */, + E398C02D14FB81A30078E771 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E3B7AECE14E3193500DFD402 /* Build configuration list for PBXNativeTarget "CCNode" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E3B7AECF14E3193500DFD402 /* Debug */, + E3B7AED014E3193500DFD402 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E3C365F414E9E4D1007CD5FF /* Build configuration list for PBXNativeTarget "CCSprite" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E3C365F514E9E4D1007CD5FF /* Debug */, + E3C365F614E9E4D1007CD5FF /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E3D5912A150F5367004180CA /* Build configuration list for PBXNativeTarget "CCBFile" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E3D5912B150F5367004180CA /* Debug */, + E3D5912C150F5367004180CA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FA98CFCE154E7D1C006E58C5 /* Build configuration list for PBXNativeTarget "ccbpublish" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FA98CFCC154E7D1C006E58C5 /* Debug */, + FA98CFCD154E7D1C006E58C5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 7789ABB5133AA82000CEFCC7 /* Project object */; +} diff --git a/SpriteBuilder/ccBuilder/AppDelegate.h b/SpriteBuilder/ccBuilder/AppDelegate.h index ffbc28331..ff8a04acc 100644 --- a/SpriteBuilder/ccBuilder/AppDelegate.h +++ b/SpriteBuilder/ccBuilder/AppDelegate.h @@ -204,6 +204,8 @@ enum { IBOutlet NSPopUpButton* menuTimelineChainedPopup; IBOutlet NSMenu* menuTimelineChained; IBOutlet NSTextField* lblTimelineChained; + + IBOutlet NSMenuItem* _menuItemExperimentalSpriteKitProject; CGSize defaultCanvasSizes[kCCBNumCanvasDevices+1]; // IBOutlet NSMenuItem* menuItemStageCentered; @@ -304,6 +306,7 @@ enum { @property (nonatomic,assign) BOOL hasOpenedDocument; @property (weak, nonatomic,readonly) CCBGLView* cocosView; + @property (nonatomic,strong) IBOutlet PropertyInspectorHandler* propertyInspectorHandler; @property (nonatomic,assign) BOOL canEditContentSize; @@ -360,10 +363,12 @@ enum { // Sequencer @property (nonatomic, readonly) BOOL playingBack; + // Methods + (AppDelegate*) appDelegate; - (void) updateTimelineMenu; +- (void) gotoAutoplaySequence; - (void) updateInspectorFromSelection; - (void) switchToDocument:(CCBDocument*) document; - (void) closeLastDocument; diff --git a/SpriteBuilder/ccBuilder/AppDelegate.m b/SpriteBuilder/ccBuilder/AppDelegate.m index e18eeb015..f7cb58316 100644 --- a/SpriteBuilder/ccBuilder/AppDelegate.m +++ b/SpriteBuilder/ccBuilder/AppDelegate.m @@ -545,6 +545,12 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification [self registerUserDefaults]; [self registerNotificationObservers]; + + // Disable experimental features + if (![[[NSUserDefaults standardUserDefaults] objectForKey:@"EnableSpriteKit"] boolValue]) + { + [[_menuItemExperimentalSpriteKitProject menu] removeItem:_menuItemExperimentalSpriteKitProject]; + } UsageManager* usageManager = [[UsageManager alloc] init]; [usageManager registerUsage]; @@ -640,7 +646,7 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification } // Open registration window - [self openRegistrationWindow]; + [self openRegistrationWindow:NULL]; } - (void)registerNotificationObservers @@ -907,7 +913,8 @@ - (void) setSelectedNodes:(NSArray*) selection physicsHandler.selectedNodePhysicsBody = self.selectedNode.nodePhysicsBody; [physicsHandler didChangeSelection]; - + + [animationPlaybackManager stop]; } - (CCNode*) selectedNode @@ -1163,7 +1170,7 @@ - (void) updateInspectorFromSelection if([sequenceHandler currentSequence].timelinePosition != 0.0f || ![sequenceHandler currentSequence].autoPlay) { - paneOffset = [self addInspectorPropertyOfType:@"SeparatorSub" name:@"name" displayName:@"Must select frame Zero of the autoplay timeline" extra:@"" readOnly:YES affectsProps:nil atOffset:0 isCodeConnection:NO]; + paneOffset = [self addInspectorPropertyOfType:@"PhysicsUnavailable" name:@"name" displayName:nil extra:@"" readOnly:YES affectsProps:nil atOffset:0 isCodeConnection:NO]; displayPluginProperties = NO; } } @@ -1388,6 +1395,8 @@ - (void) updateTimelineMenu } } } + + [animationPlaybackManager stop]; } #pragma mark Document handling @@ -1793,7 +1802,9 @@ - (void) replaceDocumentData:(NSMutableDictionary*)doc - (void) switchToDocument:(CCBDocument*) document forceReload:(BOOL)forceReload { if (!forceReload && [document.fileName isEqualToString:currentDocument.fileName]) return; - + + [animationPlaybackManager stop]; + [self prepareForDocumentSwitch]; self.currentDocument = document; @@ -2676,6 +2687,19 @@ -(void)addJoint:(NSString*)jointName at:(CGPoint)pt [self updateInspectorFromSelection]; } +- (void) gotoAutoplaySequence +{ + SequencerSequence * autoPlaySequence = [currentDocument.sequences findFirst:^BOOL(SequencerSequence * sequence, int idx) { + return sequence.autoPlay; + }]; + + if(autoPlaySequence) + { + sequenceHandler.currentSequence = autoPlaySequence; + sequenceHandler.currentSequence.timelinePosition = 0.0f; + } +} + - (void) dropAddPlugInNodeNamed:(NSString*) nodeName at:(CGPoint)pt { PlugInNode* pluginDescription = [[PlugInManager sharedManager] plugInNodeNamed:nodeName]; @@ -2685,15 +2709,8 @@ - (void) dropAddPlugInNodeNamed:(NSString*) nodeName at:(CGPoint)pt { [self modalDialogTitle:@"Changing Timeline" message:@"In order to add a new joint, you must be viewing the first frame of the 'autoplay' timeline." disableKey:@"AddJointSetSequencer"]; - SequencerSequence * autoPlaySequence = [currentDocument.sequences findFirst:^BOOL(SequencerSequence * sequence, int idx) { - return sequence.autoPlay; - }]; - - if(autoPlaySequence) - { - sequenceHandler.currentSequence = autoPlaySequence; - sequenceHandler.currentSequence.timelinePosition = 0.0f; - } + + [self gotoAutoplaySequence]; } @@ -3212,6 +3229,8 @@ - (void)publishStartAsync:(BOOL)async { [publisher start]; } + + [animationPlaybackManager stop]; } - (void) publisher:(CCBPublisher*)publisher finishedWithWarnings:(CCBWarnings*)warnings @@ -3417,6 +3436,8 @@ - (IBAction) newFolder:(id)sender RMDirectory * directoryResource = (RMDirectory *)res; dirPath = directoryResource.dirPath; + //Expand it. + [outlineProject expandItem:directoryResource]; } else { @@ -3488,6 +3509,9 @@ - (IBAction) newDocument:(id)sender { RMDirectory * directoryResource = (RMDirectory *)res; dirPath = directoryResource.dirPath; + + //Expand to view. + [outlineProject expandItem:directoryResource]; } else { @@ -3867,6 +3891,8 @@ - (IBAction)menuTimelineSettings:(id)sender // Update the timelines currentDocument.sequences = wc.sequences; sequenceHandler.currentSequence = [currentDocument.sequences objectAtIndex:0]; + + [animationPlaybackManager stop]; } } @@ -3884,6 +3910,8 @@ - (IBAction)menuTimelineNew:(id)sender // and set it to current sequenceHandler.currentSequence = newSeq; + + [animationPlaybackManager stop]; } - (IBAction)menuTimelineDuplicate:(id)sender @@ -3899,6 +3927,8 @@ - (IBAction)menuTimelineDuplicate:(id)sender // and set it to current sequenceHandler.currentSequence = newSeq; + + [animationPlaybackManager stop]; } - (IBAction)menuTimelineDuration:(id)sender @@ -3914,6 +3944,7 @@ - (IBAction)menuTimelineDuration:(id)sender [sequenceHandler deleteKeyframesForCurrentSequenceAfterTime:wc.duration]; sequenceHandler.currentSequence.timelineLength = wc.duration; [self updateInspectorFromSelection]; + [animationPlaybackManager stop]; } } @@ -4667,9 +4698,9 @@ - (IBAction)menuAbout:(id)sender [[aboutWindow window] makeKeyAndOrderFront:self]; } -- (void) openRegistrationWindow +- (IBAction) openRegistrationWindow:(id)sender { - if ([[NSUserDefaults standardUserDefaults] objectForKey:@"sbRegisteredEmail"]) + if (!sender && [[NSUserDefaults standardUserDefaults] objectForKey:@"sbRegisteredEmail"]) { // Email already registered or skipped return; @@ -4878,7 +4909,19 @@ - (NSString*)getPathOfMenuItem:(NSMenuItem*)item { NSOutlineView* outlineView = [AppDelegate appDelegate].outlineProject; NSUInteger idx = [item tag]; - NSString* fullpath = [[outlineView itemAtRow:idx] filePath]; + + NSString * fullpath; + + id row = [outlineView itemAtRow:idx]; + if([row isKindOfClass:[RMDirectory class]]) + { + fullpath = [row dirPath]; + } + else if([row isKindOfClass:[RMResource class]]) + { + fullpath = [row filePath]; + } + // if it doesn't exist, peek inside "resources-auto" (only needed in the case of resources, which has a different visual // layout than what is actually on the disk). diff --git a/SpriteBuilder/ccBuilder/CCBPublisher.m b/SpriteBuilder/ccBuilder/CCBPublisher.m index bc1bab715..362aab9e6 100644 --- a/SpriteBuilder/ccBuilder/CCBPublisher.m +++ b/SpriteBuilder/ccBuilder/CCBPublisher.m @@ -674,13 +674,16 @@ - (void)start [self doPublish]; - [self postProcessPublishedPNGFilesWithOptiPNG]; - _publishingTaskStatusProgress.totalTasks = [_publishingQueue operationCount]; [_publishingQueue setSuspended:NO]; [_publishingQueue waitUntilAllOperationsAreFinished]; + + [self postProcessPublishedPNGFilesWithOptiPNG]; + [_publishingQueue setSuspended:NO]; + [_publishingQueue waitUntilAllOperationsAreFinished]; + [_projectSettings flagFilesDirtyWithWarnings:_warnings]; NSLog(@"[PUBLISH] Done in %.2f seconds.", [[NSDate date] timeIntervalSince1970] - startTime); diff --git a/SpriteBuilder/ccBuilder/CocosScene.m b/SpriteBuilder/ccBuilder/CocosScene.m index 4050c7db1..452fde1a7 100644 --- a/SpriteBuilder/ccBuilder/CocosScene.m +++ b/SpriteBuilder/ccBuilder/CocosScene.m @@ -2122,7 +2122,6 @@ - (void) savePreviewToFile:(NSString*)path { // Remember old position of root node CGPoint oldPosition = rootNode.position; - rootNode.scaleY = rootNode.scaleY * -1.0f; // Create render context CCRenderTexture* render = NULL; @@ -2130,7 +2129,7 @@ - (void) savePreviewToFile:(NSString*)path if (self.stageSize.width > 0 && self.stageSize.height > 0) { render = [CCRenderTexture renderTextureWithWidth:self.stageSize.width height:self.stageSize.height]; - rootNode.position = ccp(0,self.stageSize.height); + rootNode.position = ccp(0,0); } else { @@ -2146,7 +2145,6 @@ - (void) savePreviewToFile:(NSString*)path // Reset old position rootNode.position = oldPosition; - rootNode.scaleY = rootNode.scaleY * -1.0f; CGImageRef imgRef = [render newCGImage]; @@ -2168,6 +2166,7 @@ - (void) savePreviewToFile:(NSString*)path // Release image CGImageRelease(imgRef); + } #pragma mark Init and dealloc diff --git a/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.h b/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.h new file mode 100644 index 000000000..2979508e4 --- /dev/null +++ b/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.h @@ -0,0 +1,13 @@ +// +// InspectorPhysicsUnavailable.h +// SpriteBuilder +// +// Created by John Twigg on 6/4/14. +// +// + +#import "InspectorValue.h" + +@interface InspectorPhysicsUnavailable : InspectorValue + +@end diff --git a/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.m b/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.m new file mode 100644 index 000000000..edd6a7ec5 --- /dev/null +++ b/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.m @@ -0,0 +1,17 @@ +// +// InspectorPhysicsUnavailable.m +// SpriteBuilder +// +// Created by John Twigg on 6/4/14. +// +// + +#import "InspectorPhysicsUnavailable.h" +#import "AppDelegate.h" + +@implementation InspectorPhysicsUnavailable +- (IBAction)onGotoFirstFrame:(id)sender { + [[AppDelegate appDelegate] gotoAutoplaySequence]; +} + +@end diff --git a/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.xib b/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.xib new file mode 100644 index 000000000..212919111 --- /dev/null +++ b/SpriteBuilder/ccBuilder/InspectorPhysicsUnavailable.xib @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SpriteBuilder/ccBuilder/PhysicsHandler.m b/SpriteBuilder/ccBuilder/PhysicsHandler.m index 315d60751..dcee3db50 100644 --- a/SpriteBuilder/ccBuilder/PhysicsHandler.m +++ b/SpriteBuilder/ccBuilder/PhysicsHandler.m @@ -47,6 +47,13 @@ #define kCCBPhysicsSnapDist 10 +@interface CCResponderManager (Private) + +-(void)cancelAllResponders; + +@end + + @implementation PhysicsHandler @@ -353,6 +360,7 @@ - (void)draggingSession:(NSDraggingSession *)session endedAtPoint:(NSPoint)scree outletWindow = nil; [_currentJoint refreshOutletStatus]; _currentJoint = nil; + [[CCDirector sharedDirector].responderManager cancelAllResponders]; } diff --git a/SpriteBuilder/ccBuilder/RegistrationWindow.m b/SpriteBuilder/ccBuilder/RegistrationWindow.m index c1497cb5c..4c5e6cb16 100644 --- a/SpriteBuilder/ccBuilder/RegistrationWindow.m +++ b/SpriteBuilder/ccBuilder/RegistrationWindow.m @@ -37,7 +37,14 @@ - (void)windowDidLoad - (IBAction) pressedContinue:(id)sender { - if (_checkBox.state == NSOnState) + // Fetch email + NSString* email = _email.stringValue; + + if (!email || [email isEqualToString:@""]) + { + // The user choose not to sign up + } + else if (_checkBox.state == NSOnState) { // Check if email is valid if (![self isValidEmail]) @@ -47,9 +54,6 @@ - (IBAction) pressedContinue:(id)sender return; } - // Fetch email - NSString* email = _email.stringValue; - // Send it to the server [[[UsageManager alloc] init] registerEmail:email]; } @@ -65,7 +69,7 @@ - (IBAction) pressedLater:(id)sender - (IBAction) pressedPrivacyPolicy:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://spritebuilder.com/privacypolicy"]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://spritebuilder.com/privacy"]]; } - (BOOL) isValidEmail diff --git a/SpriteBuilder/ccBuilder/ResourceManagerOutlineView.m b/SpriteBuilder/ccBuilder/ResourceManagerOutlineView.m index eef993afc..0e88fe4d2 100644 --- a/SpriteBuilder/ccBuilder/ResourceManagerOutlineView.m +++ b/SpriteBuilder/ccBuilder/ResourceManagerOutlineView.m @@ -71,6 +71,10 @@ - (NSMenu*) menuForEvent:(NSEvent *)evt [item setEnabled:YES]; } } + else + { + [item setEnabled:NO]; + } } else if (item.action == @selector(menuEditSmartSpriteSheet:)) { @@ -93,7 +97,7 @@ - (NSMenu*) menuForEvent:(NSEvent *)evt [item setEnabled:NO]; if ([clickedItem isKindOfClass:[RMResource class]] - || [self isSomethingSelected]) + && [self isSomethingSelected]) { [item setEnabled:YES]; } @@ -114,6 +118,13 @@ - (NSMenu*) menuForEvent:(NSEvent *)evt [item setEnabled:[self isCCBFileOrResourceDirectory:clickedResource]]; } } + else if (item.action == @selector(menuCreateKeyframesFromSelection:)) + { + if([clickedItem isKindOfClass:[RMDirectory class]]) + { + [item setEnabled:NO]; + } + } } return menu; @@ -178,20 +189,7 @@ - (void)deleteSelectedResourcesWithRightClickedRow:(NSInteger)rightClickedRowInd return; } - // Confirm remove of items - NSAlert* alert = [NSAlert alertWithMessageText:@"Are you sure you want to delete the selected files?" - defaultButton:@"Cancel" - alternateButton:@"Delete" - otherButton:NULL - informativeTextWithFormat:@"You cannot undo this operation."]; - - NSInteger result = [alert runModal]; - - if (result == NSAlertDefaultReturn) - { - return; - } - + NSIndexSet *selectedRows; if ([self isRightClickInSelectionOrEmpty:rightClickedRowIndex]) { @@ -202,6 +200,26 @@ - (void)deleteSelectedResourcesWithRightClickedRow:(NSInteger)rightClickedRowInd selectedRows = [NSIndexSet indexSetWithIndex:(NSUInteger)rightClickedRowIndex]; } + NSUInteger row = [selectedRows firstIndex]; + id selectedItem = [self itemAtRow:row]; + if (![selectedItem isKindOfClass:[RMResource class]]) + { + return; + } + + // Confirm remove of items + NSAlert* alert = [NSAlert alertWithMessageText:@"Are you sure you want to delete the selected files?" + defaultButton:@"Cancel" + alternateButton:@"Delete" + otherButton:NULL + informativeTextWithFormat:@"You cannot undo this operation."]; + + NSInteger result = [alert runModal]; + if (result == NSAlertDefaultReturn) + { + return; + } + [self deleteResources:selectedRows]; } diff --git a/SpriteBuilder/ccBuilder/SequencerKeyframe.h b/SpriteBuilder/ccBuilder/SequencerKeyframe.h index aeef86df9..e5cfe19ba 100644 --- a/SpriteBuilder/ccBuilder/SequencerKeyframe.h +++ b/SpriteBuilder/ccBuilder/SequencerKeyframe.h @@ -41,11 +41,13 @@ typedef enum kCCBKeyframeTypeFloatXY, kCCBKeyframeTypeColor4, kCCBKeyframeTypeFloat, - kCCBKeyframeTypeAnimation, // Channels kCCBKeyframeTypeSoundEffects, kCCBKeyframeTypeCallbacks, + + //Further Properties. + kCCBKeyframeTypeAnimation, } kCCBKeyframeType; NSString * kClipboardKeyFrames; diff --git a/SpriteBuilder/ccBuilder/SequencerPopoverSound.m b/SpriteBuilder/ccBuilder/SequencerPopoverSound.m index 2aa597c67..34fb37057 100644 --- a/SpriteBuilder/ccBuilder/SequencerPopoverSound.m +++ b/SpriteBuilder/ccBuilder/SequencerPopoverSound.m @@ -105,6 +105,16 @@ - (float) gain - (void) setGain:(float)gain { + if(gain > 1.0f || gain < 0) + { + + dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 100), dispatch_get_main_queue(), ^{ + [[AppDelegate appDelegate] modalDialogTitle:@"Invalid Range" message:@"The gain must be between 0.0 and 1.0"]; + }); + + return; + } + [[AppDelegate appDelegate] saveUndoStateWillChangeProperty:@"*popoversound"]; _keyframe.value = [self replaceObjectAtIndex:3 inArray:_keyframe.value withObject:[NSNumber numberWithFloat:gain]]; diff --git a/SpriteBuilder/ccBuilder/en.lproj/MainMenu.xib b/SpriteBuilder/ccBuilder/en.lproj/MainMenu.xib index abde25e60..e66f34ba6 100644 --- a/SpriteBuilder/ccBuilder/en.lproj/MainMenu.xib +++ b/SpriteBuilder/ccBuilder/en.lproj/MainMenu.xib @@ -1,9 +1,9 @@ - + - - - + + + @@ -35,6 +35,13 @@ + + + + + + + @@ -78,13 +85,13 @@ - + - + @@ -1133,11 +1140,11 @@ CA - + - - + + @@ -1813,11 +1820,11 @@ CA - + - + @@ -1843,15 +1850,15 @@ CA - + - + - + @@ -1885,7 +1892,7 @@ CA - + @@ -1897,7 +1904,7 @@ CA - + @@ -1909,28 +1916,28 @@ CA - + - + - + - + @@ -1942,7 +1949,7 @@ CA - + @@ -1959,7 +1966,7 @@ CA - + @@ -1976,7 +1983,7 @@ CA - + @@ -1988,7 +1995,7 @@ CA - + @@ -2005,7 +2012,7 @@ CA - + @@ -2017,7 +2024,7 @@ CA - + @@ -2034,7 +2041,7 @@ CA - + @@ -2070,7 +2077,7 @@ CA - + @@ -2119,7 +2126,7 @@ CA - + @@ -2128,7 +2135,7 @@ CA - + @@ -2137,7 +2144,7 @@ CA - + @@ -2150,7 +2157,7 @@ CA - + @@ -2163,7 +2170,7 @@ CA - + @@ -2371,6 +2378,7 @@ CA + diff --git a/SpriteBuilder/libs/SpriteKit b/SpriteBuilder/libs/SpriteKit index c6c3ed4c9..2e1db3200 160000 --- a/SpriteBuilder/libs/SpriteKit +++ b/SpriteBuilder/libs/SpriteKit @@ -1 +1 @@ -Subproject commit c6c3ed4c99eb83f3e5e23dbc7a7a76ace2c56d2e +Subproject commit 2e1db3200ae0458a4fe27cba91683533a2e67f87 diff --git a/SpriteBuilder/libs/cocos2d-iphone b/SpriteBuilder/libs/cocos2d-iphone index cb7464c88..ac77f9954 160000 --- a/SpriteBuilder/libs/cocos2d-iphone +++ b/SpriteBuilder/libs/cocos2d-iphone @@ -1 +1 @@ -Subproject commit cb7464c884fb922243a1aa1353d2c1dbc9ec6ff9 +Subproject commit ac77f99543752b7333949e5c08011f398744491e diff --git a/SpriteBuilder/libs/optipng b/SpriteBuilder/libs/optipng index 3d6b524a0..2591d3932 100755 Binary files a/SpriteBuilder/libs/optipng and b/SpriteBuilder/libs/optipng differ diff --git a/SpriteBuilder/libs/pngquant b/SpriteBuilder/libs/pngquant index 4933f1134..1260afdb1 100755 Binary files a/SpriteBuilder/libs/pngquant and b/SpriteBuilder/libs/pngquant differ diff --git a/Support/SPRITEKITPROJECTNAME.spritebuilder/SPRITEKITPROJECTNAME.ccbproj b/Support/SPRITEKITPROJECTNAME.spritebuilder/SPRITEKITPROJECTNAME.ccbproj index 027682112..411433146 100644 --- a/Support/SPRITEKITPROJECTNAME.spritebuilder/SPRITEKITPROJECTNAME.ccbproj +++ b/Support/SPRITEKITPROJECTNAME.spritebuilder/SPRITEKITPROJECTNAME.ccbproj @@ -28,10 +28,6 @@ 1 flattenPaths - javascriptBased - - javascriptMainCCB - MainScene needRepublish onlyPublishCCBs @@ -44,22 +40,12 @@ Source/Resources/Published-iOS publishDirectoryAndroid Source/Resources/Published-Android - publishDirectoryHTML5 - Published-HTML5 publishEnabledAndroid - publishEnabledHTML5 - publishEnablediPhone publishEnvironment 0 - publishResolutionHTML5_height - 320 - publishResolutionHTML5_scale - 1 - publishResolutionHTML5_width - 480 publishResolution_android_phone publishResolution_android_phonehd @@ -180,8 +166,8 @@ versionStr - Version: 1.1.0.beta.0 -GitHub: 0b75c8e7d0 + Version: 1.1 +GitHub: 9c44f4f41e diff --git a/Support/SPRITEKITPROJECTNAME.spritebuilder/Source/Resources/Published-iOS/MainScene.ccbi b/Support/SPRITEKITPROJECTNAME.spritebuilder/Source/Resources/Published-iOS/MainScene.ccbi index 6cc2339b8..0398a2ff0 100644 Binary files a/Support/SPRITEKITPROJECTNAME.spritebuilder/Source/Resources/Published-iOS/MainScene.ccbi and b/Support/SPRITEKITPROJECTNAME.spritebuilder/Source/Resources/Published-iOS/MainScene.ccbi differ