Questions tagged [levelhelper]

LevelHelper is a level editor toolset for the Cocos2d and Corona game engines. It integrates tightly with its sister editor, SpriteHelper, and allows editing of physics, animation, movement, scrolling, touches, collisions, and other behavior.

LevelHelper is a cross-platform game level editor, supporting parallax scrolling, physics, touches and collision detection, animation, path movement, and more. It integrates tightly with its sister editor, SpriteHelper, which is a sprite-sheet and physics shape creation tool/editor. Both tools are written and maintained by Bogdan Vladu.

LevelHelper Website http://www.gamedevhelper.com/levelhelper/

SpriteHelper Website http://www.gamedevhelper.com/spritehelper/

Developer Site http://www.gamedevhelper.com/

Contact Developer http://www.gamedevhelper.com/contact/

20 questions
5
votes
1 answer

How to retrieve makeStatic or makeDynamic methods in LHBezier? LevelHelper - Cocos2D

In the LevelHelper, I am able to set bezier shapes to static, dynamic etc. In my code, I am in need of changing these properties. Can someone please help me with that? LHBezier* bezier = [loader bezierWithUniqueName:@"BezierNode"]; [bezier…
user123
  • 2,711
  • 5
  • 21
  • 25
2
votes
0 answers

kResolutionFixedHeight bug (cocos2d-x 2.3.3)

I'm working on a game which should have a constant height(480.0) and because so I wrote that code below.. what's wrong with it is that I have sprite sheets power of 2s for sd here're normal images, for hd - double size and for iPad retina - 4 times…
kjhkjhkjh
  • 412
  • 3
  • 12
2
votes
1 answer

LevelHelper and Box2D Collions: How to get "tag"?

I have successfully made a very simple LevelHelper/Box2D/Cocos2D project. I am now trying to register a collision as described in the documentation here. I used the example code as follows: [lh registerBeginOrEndColisionCallbackBetweenTagA:COIN …
Max Chuquimia
  • 7,494
  • 2
  • 40
  • 59
1
vote
1 answer

levelhelper-spritehelper-corona sdk- object collision

I'm trying to make a game like DoodleJump. In the level(320x9600), position of an object(bar1_67)(of course there are lots of objects) is (177,263) and objects have physics shape. Requiring the "LevelHelper.LevelHelperLoader", I loaded the level: …
voyager
  • 11
  • 1
1
vote
2 answers

How can I create a menu in levelhelper?

I want to create game with Spritehelper and Levelhelper. I wanted to know, how to create the menu with levelhelper. How can I achieve this?
user3243304
  • 53
  • 1
  • 7
1
vote
1 answer

LevelHelper add Complex Object(Body, Sprite, Joint) single object

I am new to LevelHelper. I have created a Car+2 wheels using Wheel Joint(The same as the one in Wheel Joint of LevelHelper youtube tutorial). My question is how can I programmatically add multiple Car with all the wheel and physics??? Should I add…
1
vote
1 answer

cocos2d - CCSprite not aligned with b2Body

If I create a sprite and body with the first batch of code, the sprite is centered on top of the circular body. But if I create the sprite with the second batch of code, the bottom of the circular body is attached to the top of the sprite. Both…
James Testa
  • 2,901
  • 4
  • 42
  • 60
1
vote
1 answer

Cocos2D Make Camera Follow Sprite Not Working Properly

I am using the following code to make the camera follow my character as he falls down the screen: [self runAction:[CCFollow actionWithTarget:charSprite worldBoundary:[levelLoader gameWorldSize]/*CGRectMake(0,0,320,3000)*/]]; What happens is this:…
Max Chuquimia
  • 7,494
  • 2
  • 40
  • 59
1
vote
1 answer

side scrollling boundaries in cocos2d with levelhelper

I am making a side scrolling game with levelhelper and sneakyinput. i have couple questions. i have sneakyinput on a different layer and i am facing a problem on scrolling with the parallax at levelhelper. i cant manage to apply boundaries and move…
Haris
  • 129
  • 1
  • 9
0
votes
1 answer

forward declaration of 'const class LHContactInfo' error when try to access it property

I have two c++ class bellow. I want get LHContactInfo property from LHSceneSubclass but I can get nothing.So How can I do with this? #ifndef __LEVELHELPER_API_CONTACT_INFO_H__ #define __LEVELHELPER_API_CONTACT_INFO_H__ #include…
user2938465
  • 81
  • 1
  • 5
0
votes
0 answers

LevelHelper Car Design Revolute joint anchor issue

I am trying to replicate the effect from this link Side way car movement I am using levelHelper to design the car. but unable to replicate the effect. I Think i am doing mistake in revolute joint. Here is the code i am trying. #include…
Ali Asgar
  • 3
  • 3
0
votes
2 answers

LevelHelper : destroy and recreate physics body

Using LH with cocos2d and Box2d I have a ball (dynamic body) which goes out of the screen. I would like to destroy and recreate it, placing it back in its initial position. Without LevelHelper, I would do it via destroyBody and createBody. How do…
CloudEagle
  • 65
  • 1
  • 8
0
votes
1 answer

Nil access error when following LevelHelper tutorial

I started to make a game on Corona SDK with the help of Level Helper and Sprite Helper. I have used this video tutorial and all things have been done exactly like in the video, but I have this error. I don't understand why. File: ...DK…
0
votes
1 answer

LevelHelper collision not working

This problem has stumped me for two nights now, I cannot simply have two LHSprites collide with each other using level helper collision. I have checked the docs multiple times to check if I was missing something, but i cannot see it. In the console…
Kurt Moyer
  • 101
  • 1
  • 11
0
votes
1 answer

Accessing Instance Method from other class in Obj-C

First off, I am using the game engine LevelHelper. Does anyone know the proper way to access an instanced LevelHelper helper class from another class? For example: I have my main gameLayer class and a hudLayer class. The hudLayer class is being…
1
2