Questions tagged [isgl3d]

iSGL3D (iOS Scene Graph Library) is a 3D framework for the iPhone, iPad and iPod touch written in Objective-C

iSGL3D (iOS Scene Graph Library) is a 3D framework for the iPhone, iPad and iPod touch written in Objective-C

See http://isgl3d.com/

10 questions
70
votes
1 answer

Texture Mapping in 3D Object (.pod) not happening correctly using isgl3D

I have used a 3D iphone (.pod) model, its showing correctly in PVRShammon. But when I imported that 3D model into isgl3D, its not showing correctly with the textured image, the image is covering only some of the areas of the object with some lines…
Infaz
  • 1,133
  • 9
  • 19
4
votes
2 answers

In ISGL3D, can we recognize only one Gesture at a time

I am developing an App in ISGL3D. I need to recognise only one Gesture at a time i.e. either PICNH or PAN.. Is there any way to do that??
Shekhar Gupta
  • 6,206
  • 3
  • 30
  • 50
4
votes
1 answer

Implementing non-power-of-2 textures in iSGL3d

I've written an app that relies heavily on iSGL3d for 3D rendering, and I've come to a point now where I need to start fiddling with texture sizes for memory allocation reasons. My app uses very large textures (1024x1024) and going from that to…
M. Ryan
  • 6,973
  • 11
  • 52
  • 76
1
vote
0 answers

Exporting blender model to iOS and create physics body along the vertices

I am into my first 3D game. I am using blender to create my model, using bullet for physics, and Isgl3D game engine. So far, I am able to Create models in blender Export it to iPhone using Isgl3D libraries and show them. Create physics bodies along…
Krishnabhadra
  • 34,169
  • 30
  • 118
  • 167
0
votes
1 answer

Having issue with installing iSGL3D engine

I am trying to install iSGL3D template for xcode 5.x , I open Terminal then drag installTemplatesXcode4.sh on it and press enter, but nothing happens ! appreciate for any help !
iOS.Lover
  • 5,923
  • 21
  • 90
  • 162
0
votes
1 answer

EXC_BAD_ACCESS Error in gelRunVertexSubmitARM

In my project I am using a storyboard. There is view controller MyViewController. MyViewController has button, on click of button it opens a Isgl3DViewController. Isgl3dViewController has an animated 3d object. Isgl3dViewController also has a Close…
Devel
  • 449
  • 3
  • 9
0
votes
1 answer

Can not load 3d model using ISGL3D

I am trying to add a 3D human body model to my app using ISGL3D. I tried but somehow textures are not added properly on meshes. Here is my code and 3d model files. Can anyone please help me? Here are 3d model and…
Aqueel
  • 1,246
  • 3
  • 23
  • 46
0
votes
1 answer

isgl3d pod file did not show in iPad

I am trying to import POD file 3d object(export from Blender using) into my ipad using ISGL3D frameworks. I did not get any error but my ipad only show black screen. I try to debug line by line and it seems like is the camera problem. Here are my…
sooon
  • 4,718
  • 8
  • 63
  • 116
0
votes
2 answers

uiview duplicated when switching view controller

I have 2 ViewControllers that I use App delegate to switch them according to user interaction. in AppDelegate.m I have: - (void) switchViews { if (_viewController.view.superview == nil) { [_window addSubview:_viewController.view]; …
sooon
  • 4,718
  • 8
  • 63
  • 116
0
votes
1 answer

isgl3d sphere not rendered completely

Trying to render a sphere using isgl3d. The problem is that only say 75% of the sphere is being rendered. Here's the code: [self.camera setPosition:iv3(0, 3, 7)]; _container = [self.scene createNode]; Isgl3dTextureMaterial * ballMaterial =…
Anil
  • 2,430
  • 3
  • 37
  • 55