|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
This may be a retarded question, but when one adds the following line to a POV
script, and then presses Run, where does the text show up? It isn't in the
messages window, so what am I missing?
#debug concat("hello", " world")
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> This may be a retarded question, but when one adds the following line to a
> POV
> script, and then presses Run, where does the text show up? It isn't in
> the
> messages window, so what am I missing?
>
> #debug concat("hello", " world")
>
It goes to the messages window (Alt M), but it can
be easy to miss, since there are other standard messages
printed afterwards.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Wasn't it this is me who wrote:
>This may be a retarded question, but when one adds the following line to a POV
>script, and then presses Run, where does the text show up? It isn't in the
>messages window, so what am I missing?
>
>#debug concat("hello", " world")
In some environments, text can sit in the #debug output buffer
indefinitely until it gets a newline.
#debug concat("hello", " world", "\n")
--
Mike Williams
Gentleman of Leisure
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|