- Home /
Fully synthesized 3D scenes (without static assets)
Hello everybody!
I want to develop cross-platform engineering CAD viewer, and after all surveys Unity3D seems to be the ultimate best choice. There will be no ahead-of-time-pre-packaged models and materials, all scenes must be synthesized dynamically in code from parsed CAD files. Because of that, Unity WYSIWIG editor is completely useless in this case.
Please help me understand some points.
Are there some Unity3D samples/manuals/books/videos/etc about complete scene creation in code without scene editor?
Can Unity3D runtime load, parse and save arbitrary binary files from/to Filesystem/URL/WebDAV?
Can Unity Standard (non-pro) runtime do the same?
Can Unity WebPlayer/iOS/Android runtime do the same?
Can Unity iOS app share its documents in iTunes?
Can I synthesize textures dynamically in code in Unity Standard? I mean 2D procedural textures, not deferred 3D rendering.
Does Unity iOS/Android apps support UDP and multicast UDP sockets?
Basically, yes, yes, yes, depends, no, yes and I don't know.
syclamoth, thank you for help! Can you describe the word "depends" in more detail. Perhaps this is a nonstandard problem for the gamedev, but I wasn't able to find complete information about local file operation restrictions in WebPlayer/iOS/Android runtimes.
iOS doesn't like people messing around with files, although every application gets its own local cache which you can use however you like. I think Android is a bit more opened about it, and the WebPlayer completely disables file IO for security reasons.
and the webplayer has zero, repeat, zero access to the file system. You'd need to read your cad files from a webserver.
Your answer
Follow this Question
Related Questions
Web Player to iOS? 1 Answer
Platform Dev Pricing 1 Answer
Creating an asset bundle at runtime 1 Answer
How can I make a thumbstick with this code? HELP 1 Answer
Android Touch Lag but not on iOS 0 Answers