Sha256: c9770d86e2b321616a148171ea78afbef604253894596d884272ad074b41472a

Contents?: true

Size: 1.82 KB

Versions: 8

Compression:

Stored size: 1.82 KB

Contents

/* Copyright (c) 2012 Scott Lembcke and Howling Moon Software
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#import "ccConfig.h"

#if CC_ENABLE_CHIPMUNK_INTEGRATION

#import "chipmunk.h"

#import "CCDrawNode.h"

@class ChipmunkSpace;

/**
 A Node that draws the components of a physics engine.
 
 Supported physics engines:
	- Chipmunk
	- Objective-Chipmunk
 
 @since v2.1
 */
@interface CCPhysicsDebugNode : CCDrawNode
{
	ChipmunkSpace *_spaceObj;
	cpSpace *_spacePtr;
}

// property for the cpSpace
@property (nonatomic, readwrite, assign) cpSpace *space;

/** Create a debug node for an Objective-Chipmunk space. */
+ (id) debugNodeForChipmunkSpace:(ChipmunkSpace *)space;

/** Create a debug node for a regular Chipmunk space. */
+ (id) debugNodeForCPSpace:(cpSpace *)space;

@end

#endif // CC_ENABLE_CHIPMUNK_INTEGRATION

Version data entries

8 entries across 4 versions & 1 rubygems

Version Path
joybox-1.1.1 vendor/vendor-ios/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h
joybox-1.1.1 vendor/vendor-osx/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h
joybox-1.1.0 vendor/vendor-ios/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h
joybox-1.1.0 vendor/vendor-osx/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h
joybox-1.0.0 vendor/vendor-ios/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h
joybox-1.0.0 vendor/vendor-osx/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h
joybox-0.0.6 vendor/vendor-ios/cocos_2d/include/CCPhysicsDebugNode.h
joybox-0.0.6 vendor/vendor-osx/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h