
commandline rendering & file names
Moderators: Víctor Paredes, Belgarath, slowtiger
commandline rendering & file names
While I was testing MoRen I noticed that most of the tutorial files have spaces in their names. You can't render a file with the commandline if it has spaces in it on windows. Just make sure to not leave any spaces or add a "_" inbetween. 

In BSD (e.g. Mac OS X) and Linux, depending on your shell manager, you can use the Posix escape code as follows:
which is equivalent to in case you were planning to create a render farm for Mac OS X as well.
Unfortunately, Microsoft has decided to use their own conventions and create all kinds of cross-platform incompatibilities.
Code: Select all
file\ 1.moho
Code: Select all
"file 1.moho"
Unfortunately, Microsoft has decided to use their own conventions and create all kinds of cross-platform incompatibilities.
Thanks!Rasheed wrote:In BSD (e.g. Mac OS X) and Linux, depending on your shell manager, you can use the Posix escape code as follows:which is equivalent toCode: Select all
file\ 1.moho
in case you were planning to create a render farm for Mac OS X as well.Code: Select all
"file 1.moho"
Unfortunately, Microsoft has decided to use their own conventions and create all kinds of cross-platform incompatibilities.
I plan on a mac version. Just don't currently have a mac. Hopefully I'll get one before long.