Marmalade is a cross platform SDK, earlier known as Airplay SDK, developed by Ideaworks Game Studio. This tag is used for posts related to the SDK from Marmalade. http://www.madewithmarmalade.com
4
votes
1answer
228 views
What is the best way to display a cut scene?
How do we show cutscene in the game? Currently I am using images and animation upon them to show cutscenes or story. I heard from my friend that showing a video might be one of the option too.
Is it a ...
3
votes
3answers
602 views
Marmalade SDK views navigation concepts
I want to develop a simple multi-Activity Android game using Marmalade SDK.
I looked at the SDK samples and found that most of them are a single view (Android Activity) apps.
The Navigation model in ...
1
vote
2answers
492 views
Marmalade SDK 6.1: missing Studio UI Builder
Marmalade SDK 6.1 they removed the UI Studio builder tool used in previous versions to construct the UI for apps.
http://www.madewithmarmalade.com/devnet/documentation#/tools/uibuilder.html
now is ...
1
vote
4answers
438 views
How to create OpenGL (ES 1.0) texture programmatically?
I need to draw inside a buffer and then upload it as texture to OpenGL. So basicaly unsigned char* buffer and then call to glTexImage2D().
I will be using Marmalade mobile SDK and OpenGL ES 1.0.
1
vote
0answers
57 views
IwGame (Marmalade): Does CIwGameSprite support SVG? How?
I have a small question about Marmalade IwGame engine.
Does the CIwGameSprite support SVG (I've read that yes it does)
If it does support SVG, how does it handle it,
Does it convert that Vector ...
1
vote
0answers
142 views
How do I convert my matrix from OpenGL to Marmalade?
I am using a third party rendering API, Marmalade, on top of OpenGL code and I cannot get my matrices correct. One of the API's authors states this:
We're right handed by default, and we treat y ...
1
vote
1answer
235 views
Navigation using Marmalade
How do I achieve navigation to different views in Marmalade? Like what using startActivity(intent) in Android does.
I know that there's only a single view in Marmalade, but still couldn't figure out ...
0
votes
1answer
83 views
Jump function of player [duplicate]
I'm developing game in marmalade sdk in c++. I have player in the area.and I wanna make him jump when i pressed a button.When I use this player.moveUp(5px); it just go up 5px, but he has to fall down ...
0
votes
0answers
99 views
JPEG images not loading on PlayBook (Marmalade + iwgame)
I'm using iwgame on a test project and I was trying to render different resolutions of JPG and PNG images. Everything works fine on the Marmalade Simulator, however once I deploy the game to our ...
0
votes
0answers
48 views
Marmalade SDK: IwGetUIView()->SetModal(NULL) does not remove the modal Element?
Hi all when displaying a dialog then dismissing it I do the following:
IwGetUIView()->GetModal()->SetVisible(false);
IwGetUIView()->SetModal(NULL);
Then if Call:
int ...