Import script to import 300 dae into 1 project
-
@leixing said:
Yeeh!!very good work!! Tig thank you agian!
but i also to import photo(jpg png...)in one time.
please up!It's designed for geometry imports, images don't work well...
To batch import images from a folder to use as materials use massmaterialimporter.rb ... -
@tig said:
@leixing said:
Yeeh!!very good work!! Tig thank you agian!
but i also to import photo(jpg png...)in one time.
please up!It's designed for geometry imports, images don't work well...
To batch import images from a folder to use as materials use massmaterialimporter.rb ...thank you for your help!
i want import photo(jpg png...)in one time because iwant import
same photos were cut from one picture for look it more clear,if i import one by one i must re scale them to the same big.
thanks again! -
@tig said:
Here it is:
import_from_folder.rb
...
v1.0 20091124 First issue.
[attachment=0:2cg8uxas]<!-- ia0 -->import_from_folder.rb<!-- ia0 -->[/attachment:2cg8uxas]Hi. I copied a couple of png-files into a folder and tried out this demo. Yes, it imports a png, but not all of them.
I'm trying to get into SU ruby scripting, but there seems to be something wrong or missing in my installation or script.
Another symptom which could be of the same kind: If I issue a command 'status=Sketchup.active_model.import("c:\temp\test.png",false)' in the Ruby console window, the engine replies with a messagebox saying: 'Image file invalid!'
This must be something trivial, but is there someone around who could help me in taking the first steps into this new world.
-
The importer v1.0 was made to import 'geometry files' only.
Images require you to pick a position and a scale - there is no 'automated way' of doing this viaimport
- it must be byentities.add_image
- I'll add this to the importer too... -
Here's v1.1 it now imports both geometry files AND image files.
Images are imported [by type], sized in inches to match their pixel size, and placed in a line along the x-axis [red], spaced out by their widths...
EDIT:
See here http://forums.sketchucation.com/viewtopic.php?p=331966#p331966 for latest script... -
pdonner
The batch importer v1.1 here http://forums.sketchucation.com/viewtopic.php?p=229939#p229939
now works with images too... -
@tig said:
The importer v1.0 was made to import 'geometry files' only.
Images require you to pick a position and a scale - there is no 'automated way' of doing this viaimport
- it must be byentities.add_image
- I'll add this to the importer too...Thanks, TIG for clever advice. I did this to import a local file, and it worked:
objEntities=Sketchup.active_model.entities
point = Geom::Point3d.new 10,20,30
objEntities.add_image "c:/temp/ypykka800.jpg", point, 300, 300The user interface File > Import... > file open dialog would accept a URL as a file reference. Is there a way of doing that in a SU Ruby script or do I have to get the file first into a local directory?
BTW I didn't spot entities.add_image as I don't have a way browsing the reference material. Is there a reference manual in PDF which would be a bit easier to delve into than the online HTML pages?
-
@tig said:
The batch importer v1.1 here http://forums.sketchucation.com/viewtopic.php?p=229939#p229939
now works with images too...Thanks TIG. I'm very grateful for being able to read your scripts as I haven't found a proper SU Ruby tutorial either. And I'm new in Ruby scripting as well, but I do have a useful Ruby tutorial at hand. - Nice language.
-
I've done two tutorials for this website on beginning ruby. They might have lost their formatting due to some CSS snafu's that might not have beeen entirely resolved.
http://www.sketchucation.com/advanced-tutorials-index/
I also have a series of 6 or so short video clips on YouTube that explain where to begin with writing ruby for SketchUp. It starts with this one:
http://www.youtube.com/user/ChrisFullmer?feature=mhw4
Then there are a few others that get into other simple tasks. I'm not a huge fan of watching YouTube videos actually, but many people seem to find these 5 minute clips useful.
Chris
-
Sorry for dwelling on a topic which doesn't fall under the heading.
Yes, the text versions are really neat and 'readable', but the second one seems to suffer from some CSS problems.
Many thanks Chris for the pointer to your highly useful video tutorials. It is quite obvious that these text oriented videos should be looked upon in HD format - as you indicate. Unfortunately I don't get there. When I select 720p HD and choose the Full Screen button this results in an audio only black screen presentation.
Found a thread on one of your videos with an embedded YouTube player at http://forums.sketchucation.com/viewtopic.php?f=18&t=25100&p=215249&hilit=+writing+sketchup+ruby+#p215249 That worked excellently without any problem.
Checked four of the videos with quite some pain. Assuming that I'm not the only one experiencing this problem, I'm courageous enough to ask if there is anyone out there who could guide me how to play the fine tutorial videos in HD mode?
-
Generally they just work when you click on the HD button. If they are staying blac, that could mean you need tp upgrade your flash version? or maybe your video card is incompatible? I'm ot really sure. I've never heard of that happening before.
-
I can't import 3ds files. This plugin is great anyway....
-
Hi!
Tested the latest script (import_from_folder_v1.6.rbz) on sketchup make 2017, doesn't seem to work
Pop up shows that the import was completed but the models could not be found in the scene.
Similarly, I have hundreds of dae files which i would like to import into the scene.
Any help or update would be helpful.
Thanks in advance!
PH -
@peacelim said:
Hi!
Tested the latest script (import_from_folder_v1.6.rbz) on sketchup make 2017, doesn't seem to work
Pop up shows that the import was completed but the models could not be found in the scene.
Similarly, I have hundreds of dae files which i would like to import into the scene.
Any help or update would be helpful.
Thanks in advance!
PHIf you look in the model's Component Browser you should see that all of the DAE files will have successfully imported as individual definitions, BUT they will be without any instances.
But that is the nature of multiple imports like this - at least in the newer SketchUp versions.
If you really want to import several DAE files, and add instances, then the attached RBZ is an alternative which does that for you.Please download and install it... and feedback...
-
@tig said:
If you really want to import several DAE files, and add instances, then the attached RBZ is an alternative which does that for you.
Please download and install it... and feedback...
Honestly, without contributions of TIG, and other developers like him (please don't be offended if I don't name anyone else specifically, the list would be long) SU just wouldn't be the same. Thanks for your contributions devs!
-
The New Script works like a charm! Thank you TIG!
Really like to thanks all developers like TIG for their contributions to make SU a better place/community for all users -
@tig said:
If you look in the model's Component Browser you should see that all of the DAE files will have successfully imported as individual definitions, BUT they will be without any instances.
But that is the nature of multiple imports like this - at least in the newer SketchUp versions.
If you really want to import several DAE files, and add instances, then the attached RBZ is an alternative which does that for you.Please download and install it... and feedback...
Hi TIG, thanks for writing this plugin.
This appears to be broken again in SU2019 Pro.
I have imported a bunch of DAE files, which appear in object browser, but it doesn't create instances. -
Can you run it with the Ruby Console open and see what is reported in there, if anything...
It should work in v2019...
Do you get a report-file written ?
If so what does it say for each file that it imports ? -
Hi mate, maybe operator error the first couple of times I tried. Confirmed working in SU2019 Pro both with Collada DAE meshes created in Meshlab and from batch triangulated Collada export from Blender.
Advertisement