really cool, works great - thanks!
regards
rob
Search found 26 matches
- Wed Sep 29, 2010 12:41
- Forum: CEGUI Library Development Discussion
- Topic: Generic animation support for CEGUI::Window
- Replies: 35
- Views: 31290
- Wed Sep 15, 2010 14:48
- Forum: CEGUI Library Development Discussion
- Topic: Generic animation support for CEGUI::Window
- Replies: 35
- Views: 31290
Re: Generic animation support for CEGUI::Window
Hi Kulik, thanks for the support and the patch! Unfortuantely it doesn't fix my problem as framerate-drops more than one frame and by skipping the first frame position never becomes 0 (that should be the supported imo). So I made some changes that... 1. ...set the time-delta to 0 on first frame inst...
- Wed Sep 15, 2010 07:52
- Forum: CEGUI Library Development Discussion
- Topic: Generic animation support for CEGUI::Window
- Replies: 35
- Views: 31290
Re: Generic animation support for CEGUI::Window
Hi,
are there any news on fixing the first-animation-frame-lag?
thanks
rob
are there any news on fixing the first-animation-frame-lag?
thanks
rob
- Mon Sep 13, 2010 09:09
- Forum: Help
- Topic: [ANSWERED] Widgets with not a rectangular form
- Replies: 6
- Views: 4234
Re: [ANSWERED] Widgets with not a rectangular form
Hi,
someone got masking of childwindows working? or somekind of tutorial/example?
I need some way to hide content of childwindows related to the alphachannel of a parented window...
thanks much!
someone got masking of childwindows working? or somekind of tutorial/example?
I need some way to hide content of childwindows related to the alphachannel of a parented window...
thanks much!
- Thu Sep 02, 2010 15:14
- Forum: Help
- Topic: ScrollablePane HorizontalScrollbar
- Replies: 7
- Views: 5527
Re: ScrollablePane HorizontalScrollbar
EDIT:
Works like a charme! Thanks!
Works like a charme! Thanks!
- Thu Sep 02, 2010 12:43
- Forum: Help
- Topic: ScrollablePane HorizontalScrollbar
- Replies: 7
- Views: 5527
Re: ScrollablePane HorizontalScrollbar
After some more debugging and :x and :cry: and :twisted: I managed to work around my problem of mixing layoutcontainers and scrollablepanes: layout() has to be called for all layoutcontainers from bottom(nested/childs/leafs) to top (parents) of my window-structure so that child-sizes are valid for t...
- Wed Sep 01, 2010 12:17
- Forum: Help
- Topic: ScrollablePane HorizontalScrollbar
- Replies: 7
- Views: 5527
Re: ScrollablePane HorizontalScrollbar
I don't think absWidth is related, it's only used to compare mixed sizes... Unfortunately in my case this works ok :-( I will try some more to reproduce it. hmm you're aright, but in my case I'm using the verticallayoutcontainer and in its layout()-method the childWidth.asAbsolute(absWidth) evaluat...
- Wed Sep 01, 2010 10:15
- Forum: Help
- Topic: ScrollablePane HorizontalScrollbar
- Replies: 7
- Views: 5527
Re: ScrollablePane HorizontalScrollbar
I'm working with the 0-7 branch... hmm I did some more testing/debugging and there's sth messy with the size- and layout-updates. I think the steps of my use-case are: --- manual --- 1. Empty scrollpane, contentpane-width = 100; 2. scrollpane->add(layoutcontainer) 3. layoutcontainer->add(some window...
- Tue Aug 31, 2010 16:09
- Forum: Help
- Topic: ScrollablePane HorizontalScrollbar
- Replies: 7
- Views: 5527
ScrollablePane HorizontalScrollbar
Hi, I've an annoying problem with a scrollablepane - as soon as the content gets too high and the vertical scrollbar apprears it's also neccessary to scroll horizontally. It seems that the pane-contents are not resized because of the smaller inner-pane-width (that is reduced by the verticalscrollbar...
- Mon Aug 30, 2010 12:06
- Forum: CEGUI Library Development Discussion
- Topic: Generic animation support for CEGUI::Window
- Replies: 35
- Views: 31290
Re: Generic animation support for CEGUI::Window
EDIT: I've given it some thought and I may have misunderstood your problem. This indeed happens currently. I think the solution would be to include some option to skip the first stepping of animation instance after start. This is a hack though, I have to think of something more clean and powerful.....
- Mon Aug 30, 2010 10:05
- Forum: CEGUI Library Development Discussion
- Topic: Generic animation support for CEGUI::Window
- Replies: 35
- Views: 31290
Re: Generic animation support for CEGUI::Window
Hi Kulik, I use the animations to fade-in windows that I generate just before the animation start (=same frame) . So if the generation-process is more complex the current frame lasts longer and with that the time-delta that is injected into the animationmanager is higher. Sometimes this results in v...
- Thu Aug 26, 2010 12:54
- Forum: CEGUI Library Development Discussion
- Topic: Generic animation support for CEGUI::Window
- Replies: 35
- Views: 31290
Re: Generic animation support for CEGUI::Window
Ah I see - got it: <Affector property="Visible" interpolator="bool"> <KeyFrame position="0" value="true" /> <KeyFrame position="0.5" value="false" progression="discrete" /> </Affector> Works like a charme! Thanks again
- Thu Aug 26, 2010 07:33
- Forum: CEGUI Library Development Discussion
- Topic: Generic animation support for CEGUI::Window
- Replies: 35
- Views: 31290
Re: Generic animation support for CEGUI::Window
Just some feedback: The animation-stuff works really good for me - thanks much for sharing! But I've noticed that the boolinterpolator checks if the absolute keyframe position is greater than 0.5 to go from true to false (or vice versa). So all bool values are toggled always after 0.5sec... Maybe it...
- Fri Aug 20, 2010 12:13
- Forum: Skins and Themes
- Topic: StaticText as child of PushButton
- Replies: 9
- Views: 20319
Re: StaticText as child of PushButton
I'm getting closer... I finally realized that all my problems where caused by redefining the "Text"-property (of my button) that should link to the "Text"-property of the StaticText-child...
I think I can't replace/overwrite existing properties?
thanks
rob
I think I can't replace/overwrite existing properties?
thanks
rob
- Thu Aug 19, 2010 14:43
- Forum: Skins and Themes
- Topic: StaticText as child of PushButton
- Replies: 9
- Views: 20319
Re: StaticText as child of PushButton
Hi CE, thanks for the testing - I finally came back on that topic and the statictext gets created fine with its name set to "__auto_static" BUT I can't see/access/edit its text. I spend some time with the propertylinkdefinition-stuff but gotten nowhere. Am I right, that I have to link the ...