Increase speed of console
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2008 at 01:35, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 10.5
Platform:
Language(s) : C++ ;---------
Heyho,I am in search of a possibility to print something to a seperate console.
In my case a tag writes a String to a C4DGadget (MultiTextEdit).
But its toooooo slow.output += newOutput;
[...]
SetString(C4DGadget, output);Is it possible to print more than one line to the StaticText?
String + GeGetLineEnd + String didn't work.Bye..
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2008 at 01:10, xxxxxxxx wrote:
writing more lines should work with "textline1 /n textline2"
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2008 at 06:54, xxxxxxxx wrote:
Hi!
I have no problems with multilines. I tried String + \n + String. Cinema 4D slows down, because it refreshs the Multitextbox each frame. ( because it is a console)
per frame / one new textline.
But refreshing the textbox each frame slows c4d down. That's the point. Why?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2008 at 07:02, xxxxxxxx wrote:
Then why not using a static text field?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2008 at 07:20, xxxxxxxx wrote:
Does the static text support multilines?
String + GeGetLineEnd() + String doesn't work.