Search found 45 matches

by IR3uL
Fri Oct 01, 2010 16:39
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Wiki translating
Replies: 10
Views: 7129

Re: Wiki translating

http://www.mediawiki.org/wiki/Extension:ParserFunctions

I'm really sry, i should've posted this link before hehe.

You have to download the 1.15.1 branch of the extension.
by IR3uL
Thu Sep 30, 2010 22:26
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Wiki translating
Replies: 10
Views: 7129

Re: Wiki translating

I wrote basically the same you did in my local wiki, but i found out later that CEGUI wiki doesn't support ParserFunctions extension. Perhaps CE can do something about it...
by IR3uL
Thu Sep 30, 2010 22:09
Forum: Help
Topic: Input_injection not working
Replies: 14
Views: 7125

Re: Input_injection not working

1st, I suggest you take into consideration Kulik's advice, one step at a time will make your life easier. To simplify a bit your life... a see you are trying to use a lot of different libraries, and SDL is just bloating your code. I don't have experience with Leadwerks engine, but if you take a look...
by IR3uL
Wed Sep 29, 2010 19:10
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Wiki translating
Replies: 10
Views: 7129

Re: Wiki translating

I see your point, sounds like a cool feature. I'll look into it.

Tks for the clarification about HTH ;)
by IR3uL
Wed Sep 29, 2010 14:18
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Wiki translating
Replies: 10
Views: 7129

Re: Wiki translating

1) A large amount of the stuff on the Wiki is either out dated (and needs to be updated) or totally obsolete / superseded by other docs (and needs to removed). 2) There are preliminary plans afoot to totally revamp the CEGUI website, there will still be a Wiki, though it's form is undecided. I'm to...
by IR3uL
Tue Sep 28, 2010 18:20
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Wiki translating
Replies: 10
Views: 7129

Wiki translating

Hi, i was thinking a few hours ago about starting to translate the articles in the wiki, so i installed a local copy of MediaWiki and started to make a few tests with templates until i decided to use the templates from the Arch wiki (rolling my own wasn't exactly practical... why should i reinvent t...
by IR3uL
Mon Sep 27, 2010 14:43
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Demo 7 Resize Bug
Replies: 4
Views: 4547

Re: Demo 7 Resize Bug

CrazyEddie wrote:It's a feature, not a bug :lol:

Seriously though, I was aware of this, but seeing as it's the result of some hacking in one of the samples, I decided not to spend any time 'fixing' it ;)

CE.


I spent 30 minutes with it too, until i gave up =D
by IR3uL
Fri Sep 24, 2010 15:54
Forum: Help
Topic: (Solved) Formatting Tags reference
Replies: 12
Views: 6108

Re: Formatting Tags reference

Yay! nice work man!
by IR3uL
Fri Sep 24, 2010 15:49
Forum: Help
Topic: Beginner needs help with his first Window
Replies: 4
Views: 2808

Re: Beginner needs help with his first Window

1st: read this http://www.cegui.org.uk/phpBB2/viewtopic.php?f=10&t=3351

2nd: Can you post the log?
by IR3uL
Thu Sep 23, 2010 16:45
Forum: Bug Reports, Suggestions, Feature Requests
Topic: StaticText not updating. Bug?
Replies: 4
Views: 4205

Re: StaticText not updating. Bug?

Hi CE, i was making some more tests today with this and i found the error might be mine and not actually a bug, so i have a question now: The function call order should be: System::notifyDisplaySizeChanged() Font::SetNativeResolution() or the other way (works fine this way)? or it should not care? W...
by IR3uL
Thu Sep 23, 2010 15:46
Forum: Help
Topic: (Solved) Mouse moving/clicking when over CEGUI window
Replies: 17
Views: 10144

Re: (Solved) Mouse moving/clicking when over CEGUI window

I'm glad you fixed it =D
by IR3uL
Thu Sep 23, 2010 15:44
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Demo 7 Resize Bug
Replies: 4
Views: 4547

Re: Demo 7 Resize Bug

I wont call it a bug, but a side effect =D

The effect updates when the position changes, and when you resize the window from the left edge the position changes, and the update is calculated. You would have the same behavior if you were able to resize the window using the top edge.
by IR3uL
Wed Sep 22, 2010 18:37
Forum: Help
Topic: (Solved) Mouse moving/clicking when over CEGUI window
Replies: 17
Views: 10144

Re: Mouse moving/clicking when over CEGUI window

I'll make a few tests and come back to you (tomorrow morning if time is by my side today =/). Edit: Hi Michael, i had time today and i was able to make those tests, but i'm not able to reproduce the behavior of your application. If you've followed all the recommendations given in this post you shoul...
by IR3uL
Wed Sep 22, 2010 18:05
Forum: Help
Topic: (Solved) Mouse moving/clicking when over CEGUI window
Replies: 17
Views: 10144

Re: Mouse moving/clicking when over CEGUI window

Not really, for what i know so far you can enter different rooms to change a song and fade between them according to the distance (FPS-like), or maybe drag over the 3d scene to make some scratching (RPG-like) =D

btw, sounds like a cool app.
by IR3uL
Wed Sep 22, 2010 17:42
Forum: Help
Topic: (Solved) Mouse moving/clicking when over CEGUI window
Replies: 17
Views: 10144

Re: Mouse moving/clicking when over CEGUI window

bool BaseApplication::mouseMoved( const OIS::MouseEvent &arg ) { CEGUI::System &sys = CEGUI::System::getSingleton(); if(sys.injectMousePosition(arg.state.X.abs, arg.state.Y.abs)) //If true the CEGUI needs to handle it ! { // Scroll wheel. if (arg.state.Z.rel) sys.injectMouseWheelChange(arg....

Go to advanced search