Questions tagged [limejs]

LimeJS is a HTML5 game framework for building fast, native-experience games for all modern touchscreens and desktop browsers.

As the name suggests, it is a JavaScript based framework developed by DigitalFruit and is built on Closure Library.

Closure is JavaScript library built by Google and provides user interface widgets, an event framework, a packaging and dependency resolution system, tools for DOM manipulation, tools for creating animation effects (including drag and drop) and a lot more.

LimeJS also comes with Box2D physics library for 2D physics simulations.

The documentation for LimeJS are located here.

42 questions
11
votes
1 answer

LimeJS Custom Sprite Swallowing events

I made a custom Lime JS sprite class by doing: test.obj = function() { lime.Sprite.call(this); . . this.label = new lime.Label(). ...; this.appendChild(this.label); } goog.inherits(test.obj, lime.Sprite); I'm unable to get the label click…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
9
votes
6 answers

LimeJS vs CreateJS for game development

I want to start developing HTML5/JS games. And I see these 2 frameworks LimeJS and CreateJS & EaselJS. Which one is better? Does anyone have experience with these 2 frameworks? And what about the documentation?
user1877165
  • 129
  • 1
  • 3
  • 3
3
votes
1 answer

WIKI: How to use Lime (how to use closure-compiler with 3rd party (closure) libraries)

The following post inspired me to have a look at limeJS, as a side project I'm working on and off an a Yatzee game (mostly off) and thought that might be a nice library to use. As a beginner in google-closure I had some difficulties running…
2
votes
1 answer

Integrate jQuery plugin with LimeJS game engine

I'm using the HTML5 game engine LimeJS and want to integrate a jQuery plugin for an isometric map. I added the tutorial script to a simple LimeJS program and there seems to be a conflict between LimeJS and jQuery. Both appear fine on the page, but…
2
votes
2 answers

How to setup limeJS in a totally offline workspace

I'm trying to setup limeJS, the issue is the Internet connection is a problem. I had closure library, box2d, closure compiler and closure templates downloaded separately as .rar files, but I can't find a guide anywhere to set it up like this,…
2
votes
1 answer

Using libraries with LimeJS HTML5

I was wondering if I could use any libraries I want like Node.JS, JQuery with LimeJS ? it is possible ?
W.W
  • 109
  • 1
  • 10
2
votes
1 answer

Can't able to load audio into android by using phonegap?

I developed a game in html5 using limejs now i want to wrap into android using phonegap. I have done it very successfully and all my assets loaded greatly except audio. The audio is not loading into android. The logcat shows as : " 10-30…
Victor
  • 893
  • 3
  • 11
  • 21
2
votes
1 answer

LimeJS director.makeMobileWebAppCapable(); makes screen blank

In my helloWorld template from LimeJS I get a blank screen with FPS box running and nothing else. However if I just comment out director.makeMobileWebAppCapable(); it runs just fine. I can see the orange circle and move it around. Spent 2 days on…
hmm
  • 21
  • 2
1
vote
0 answers

LimeJs HTML5 Sound on Chrome breaks my file

I have just start learning LimeJS, but i have a problem with the sound, when i open it in firefox i have not problem but when i open it in chrome the game stop working and doesnt show, i dont know why, i try to fix it and now i can see the objects…
dareyko
  • 11
  • 1
1
vote
1 answer

LimeJS failing on CocoonJS Android Launcher

As a prelude to moving my LimeJS game from PC to Android, I'm trying to get the Android CocoonJS Launcher to work with a basic LimeJS application. Am I doing something wrong here? I have some questions some of which may be only known to Tõnis Tiigi…
Dean
  • 301
  • 4
  • 11
1
vote
1 answer

javascript finding center of a rotated rectangle

Using Javascript and a js library (limeJS) I'm drawing a rectangle when user clicks at a point and then rectangle is being rotating and changing size (only width, height is static) until user release mouse button. (hm cannot post image - need 10…
1
vote
1 answer

Box2d revolute join in LimeJS

Sorry for this noobish question, I am new to LimeJS/Box2d. I am trying to construct a BOX2d Revolute joint in LimeJS. Can someone provide me with a simple example illustrating the same? Thanks
A Nice Guy
  • 2,676
  • 4
  • 30
  • 54
1
vote
0 answers

LimeJs box and domElement input in the same layer

I wanna create a html mini-game by using LimeJs. For the moment i want to create an ui tests. I'm creating a chat box. I have some problems with input (DomElement) and box (CanvaElement). I put one input and one box in a layer at the position 0;0.…
Sancho
  • 1,288
  • 2
  • 25
  • 50
1
vote
1 answer

GUI Layer on limeJS

I'm working with limeJS trying to figure out the best way to put a GUI over limeJS. Here's a better explanation: I've created two classes, one called 'SceneWithGui' and another called 'GuiOverlay'. My intention is that 'SceneWithGui' inherits from…
Bruno Machado - vargero
  • 2,690
  • 5
  • 33
  • 52
1
vote
1 answer

LimeJS goog.event.listen not firing on child

I'm having some issues with this event. I've only recently started HTML5 game development and I'm using LimeJS. The following code will not fire the alert when I set it to listen on the field or flayer, it only responds to Game. Is it something I'm…
Kevin Peters
  • 469
  • 1
  • 4
  • 9
1
2 3