Google SketchUp 7
Google SketchUp 7
Is there any converter Google SketchUp 7 to ms3d, or any irlicht Google SketchUp 7 loader?
-
FuzzYspo0N
- Posts: 914
- Joined: Fri Aug 03, 2007 12:43 pm
- Location: South Africa
- Contact:
Re: Google SketchUp 7
Malgodur wrote:Is there any converter Google SketchUp 7 to ms3d, or any irlicht Google SketchUp 7 loader?
a excelent tutorial to use scketup with irrlicht :
http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=34290
..
Bennu (Best 2d and 3D dev-tool)
http://bennupack.blogspot.com
Pixtudio (Best 2D development tool)
http://pixtudiopack.blogspot.com
Bennu3D(3D Libs for bennu)
http://3dm8ee.blogspot.com/
Colombian Developers - Blog:
http://coldev.blogspot.com/
http://bennupack.blogspot.com
Pixtudio (Best 2D development tool)
http://pixtudiopack.blogspot.com
Bennu3D(3D Libs for bennu)
http://3dm8ee.blogspot.com/
Colombian Developers - Blog:
http://coldev.blogspot.com/
Actually sketchup can be really good for certain kinds of modelling. It's useless for organic stuff or characters, but it's awesome for architectural objects like the interior of houses or buildings.Don't be so naive to use sketch up! XDD Use a true 3D application like Blender!
And I'm not just saying that because the tutorial mentioned by link3rn3l above uses a modified version of my sketchup exporter.
Yes, of course I won't make any character or living/animated stuff with sketchup, it is just to make environment.
I'm just a beginner, and I don't want to hassle using blender for animating stuff since that is not my first priority in my game...
And yes, sketchup is for noobs... but it is because it is so cool =)
Google did not buy for nothing, it is just a very good piece of software: it does what it does, but it does it nice.
I'm just a beginner, and I don't want to hassle using blender for animating stuff since that is not my first priority in my game...
And yes, sketchup is for noobs... but it is because it is so cool =)
Google did not buy for nothing, it is just a very good piece of software: it does what it does, but it does it nice.
Yeah, but the time sketchUp won't give you what you need what will you do? besides, seems that the 3DS models SketchUp exports aren't that good, i had very bad experiences with SketchUp coworkers. I insist on you getting a true 3D app, but i guess the time needed to learn blender is much higher than that to learn SketchUp.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Just using the kmz file sorta works. But I am not getting textures. I tried ogre export but it doesn't seem to work - I get to the dialog for file name and it just quits.
From using the kmz file I get some collada warnings about wrong tag usage.
At this point I am just experimenting with files, using my model in the second tutorial .. now how the heck to I slow down the camera? (yes I know getting ahead of myself should finish the tutorials but I really want to make sure I can get files that will work before I go through all that).
I really do want to use sketchup for basic buildings
Edit: its openGL 2.1.1 no complaints about texture files and the ones in the quakemap work fine.
Edit2: I imported the dae file to irrEdit - it finds the textures and loads them but does not apply them to the model.
From using the kmz file I get some collada warnings about wrong tag usage.
At this point I am just experimenting with files, using my model in the second tutorial .. now how the heck to I slow down the camera? (yes I know getting ahead of myself should finish the tutorials but I really want to make sure I can get files that will work before I go through all that).
I really do want to use sketchup for basic buildings
Edit: its openGL 2.1.1 no complaints about texture files and the ones in the quakemap work fine.
Edit2: I imported the dae file to irrEdit - it finds the textures and loads them but does not apply them to the model.
I have a same problem too.
I'm just getting into the usage of Irrlicht Engine. But specifically for the purpose of loading Google SketchUp kmz files to it.
Can somebody help me how to do it please?
I tried to do it,following the quake3 map loader tutorial, and used the following code:
So basically changed the files that would be loaded.
Program won't run with either DirectX mode, in OpenGL(and the rest) I get the following warnings:
http://www.stud.u-szeged.hu/Keri.David/problem.jpg
The model I want to load is a simple static cube (sort of), with textures on it.
Can someone correct me,please?
I'm just getting into the usage of Irrlicht Engine. But specifically for the purpose of loading Google SketchUp kmz files to it.
Can somebody help me how to do it please?
I tried to do it,following the quake3 map loader tutorial, and used the following code:
Code: Select all
#include <irrlicht.h>
#include <iostream>
using namespace irr;
#ifdef _MSC_VER
#pragma comment(lib, "Irrlicht.lib")
#endif
int main()
{
video::E_DRIVER_TYPE driverType;
printf("Please select the driver you want for this example:\n"\
" (a) Direct3D 9.0c\n (b) Direct3D 8.1\n (c) OpenGL 1.5\n"\
" (d) Software Renderer\n (e) Burning's Software Renderer\n"\
" (f) NullDevice\n (otherKey) exit\n\n");
char i;
std::cin >> i;
switch(i)
{
case 'a': driverType = video::EDT_DIRECT3D9;break;
case 'b': driverType = video::EDT_DIRECT3D8;break;
case 'c': driverType = video::EDT_OPENGL; break;
case 'd': driverType = video::EDT_SOFTWARE; break;
case 'e': driverType = video::EDT_BURNINGSVIDEO;break;
case 'f': driverType = video::EDT_NULL; break;
default: return 1;
}
IrrlichtDevice *device =
createDevice(driverType, core::dimension2d<s32>(640,480));
if (device == 0)
return 1;
video::IVideoDriver* driver = device->getVideoDriver();
scene::ISceneManager* smgr = device->getSceneManager();
device->getFileSystem()->addZipFileArchive("../../media/asd.zip");
scene::IAnimatedMesh* mesh = smgr->getMesh("asd.dae");
scene::ISceneNode* node = 0;
if (mesh)
node = smgr->addOctTreeSceneNode(mesh->getMesh(0), 0, -1, 1024);
if (node)
node->setPosition(core::vector3df(-1300,-144,-1249));
smgr->addCameraSceneNodeFPS();
device->getCursorControl()->setVisible(false);
int lastFPS = -1;
while(device->run())
{
if (device->isWindowActive())
{
driver->beginScene(true, true, video::SColor(255,200,200,200));
smgr->drawAll();
driver->endScene();
int fps = driver->getFPS();
if (lastFPS != fps)
{
core::stringw str = L"Irrlicht Engine - Quake 3 Map example [";
str += driver->getName();
str += "] FPS:";
str += fps;
device->setWindowCaption(str.c_str());
lastFPS = fps;
}
}
else
device->yield();
}
device->drop();
return 0;
}
Program won't run with either DirectX mode, in OpenGL(and the rest) I get the following warnings:
http://www.stud.u-szeged.hu/Keri.David/problem.jpg
The model I want to load is a simple static cube (sort of), with textures on it.
Can someone correct me,please?