Search found 17 matches
- 18 Nov 2013, 04:24
- Forum: General Discussion
- Replies: 3
- Views: 2412
Re: When will NullRenderer be supported? (Unity)
Thanks!
Sorry for the late response, but this is actually a big deal for us and was quite troublesome as we are moving our servers to a cloud based solution
.
Sorry for the late response, but this is actually a big deal for us and was quite troublesome as we are moving our servers to a cloud based solution

- 11 Nov 2013, 14:18
- Forum: General Discussion
- Replies: 3
- Views: 2412
When will NullRenderer be supported? (Unity)
Like the subject, when will Null Renderer be supported so that you can actually run servers with batchmode and nographics in Unity.
This is quite important as this has a tendency to crash my servers and I can't run in batchmode and nographics, which is -really- important!
This is quite important as this has a tendency to crash my servers and I can't run in batchmode and nographics, which is -really- important!
- 07 Nov 2013, 13:54
- Forum: General Discussion
- Replies: 4
- Views: 2712
Re: Trying to upgrade Noesis, getting error.
I see, thanks for the information guys
.
I can wait for the next version of noesis, I assume this stuff will be fixed by then?

I can wait for the next version of noesis, I assume this stuff will be fixed by then?
- 07 Nov 2013, 02:55
- Forum: General Discussion
- Replies: 4
- Views: 2712
Trying to upgrade Noesis, getting error.
Hi there, I have been trying to upgrade Noesis to the latest version in Unity, however when I do it I get this following error once Unity is compiling scripts: {{{ Unhandled exception at 0x7751DE64: Access Violation reading location 0x00001C77 }}} {{{ [ 0] [0x7751DE64] ntdll.dll [ 1] [0x754714D1] ke...
- 14 Oct 2013, 18:19
- Forum: General Discussion
- Replies: 4
- Views: 3094
Re: Password Box
Hmm, allright. Yeah that would be great!
Is there a possibility that you will add password boxes in the next version? (We can live without password boxes right now).
Is there a possibility that you will add password boxes in the next version? (We can live without password boxes right now).
- 13 Oct 2013, 22:34
- Forum: General Discussion
- Replies: 4
- Views: 3094
Password Box
Hi there, for some reason I can't see password boxes ingame. Is this a known bug or am I doing something wrong? Thanks.
- 23 Sep 2013, 18:08
- Forum: General Discussion
- Replies: 1
- Views: 1931
Removing ListBox item.
Hey there! Fast question I figured more people would run into sooner or later anyway. I have a listbox that I populate with code. And then when I want to remove one of the items, I'm unsure on how to go about that! Here's the code I'm using right now, and it doesn't seem to remove the item. In fact ...
- 11 Sep 2013, 17:18
- Forum: General Discussion
- Replies: 5
- Views: 3589
Making a ColorPicker.
So, just out of curiosity, how would you guys go about creating a ColorPicker with noesis? Since afaik there isn't any control supported to make a ColorPicker?
Thanks.
Thanks.
- 03 Sep 2013, 16:02
- Forum: General Discussion
- Replies: 5
- Views: 3441
Re: Get a ListBoxItem when clicked.
Yes! That worked like a charm, thanks! :) Still figuring this system out a bit, hopefully this thread is helpful to some other dev later on as well :). Edit: I wanted to post another little snippet that might help others in need. An alternative way of getting the current selected Item is: ListBoxIte...
- 03 Sep 2013, 13:47
- Forum: General Discussion
- Replies: 5
- Views: 3441
Get a ListBoxItem when clicked.
Hi there, I'm messing around with ListBoxes and am trying to figure out the best way of getting the content of a ListBoxItem when I click it. Here's what I have currently: public void AddToList() { ... _characterList.GetItems().Add(testItem); testItem.Selected += this.OnSelectedClick; } void OnSelec...