Texture coordinate Cocos3d [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Here is how I put my texture on my object :
_obj = (CC3MeshNode *)[_world getNodeNamed:#"s0"];
_obj.material.texture = [CC3Texture textureFromFile:#"objTextureLayout.png"];
My object is loaded from 3DMAX and I don't understand why my texture coordinate (from 3DMax) is lost...
An other problem, I don't understand why my normals is flipped on a simple polygon. What could I've forgotten ?
Any suggestion ? I can post some screenshot or even the model with texture for a best comprehension for anybody who can help me.

Related

Monochrome colouring effect [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to implement gray scale level of monochrome image in iphone. if any know the links to the tutorials then plz mention them.
check out following llink may help you
https://developer.apple.com/library/mac/#documentation/graphicsimaging/Conceptual/CoreImaging/ci_tasks/ci_tasks.html#//apple_ref/doc/uid/TP30001185-CH203-SW4

'accerelate&decelerate scroll' like tiny tower (near lobby) in iphone? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How would I implement the accerelate/decerelating effect when scrolling as you would see near lobby in tiny tower game?
Would it be a scrollview under the hood?
-edit-
Would it be a more interesting question if it needs to be done in cocos2d-x?
http://getsetgames.com/2009/08/21/cocos2d-and-uiscrollview/
I used the above tutorial to successfully implement scrollview like UI with cocos2d-x.

How to resize the selected image? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to set the image in my profile of my application.
But it is not fix in the PictureField.
I want to resize that image and display it in PictureField.
please give me the direction to do this.
For blackberry the following code will helpful to you.
Bitmap temp = Bitmap.getBitmapResource("Image.png");
Bitmap scale = new Bitmap(width, Height);
temp.scaleInto(scale, Bitmap.FILTER_BILINEAR);

any idea how to develop Jewel game? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am trying to develop an iphone app in which matrix of jewel. if user alines same type of three or more jewel in a row/column, the lined jewels disappears and other jewels adjusts the space.
Similar to game Call of Atlantis.
Ref : http://imageshack.us/photo/my-images/146/img1253.png/
Can anybody give me how to begin ?
Any help would be appreciated.
Have a look at Geek Game Board. Should get you started.

How can i move image on z-axis by using accelerometer? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
My image is moving in tw0 directions. x and y axis, How can i move image in z direction?
The z-direction points towards you, so to say. Try accessing the layer of the view. It should have a z-parameter.