fix scrollcontainer keep bottom feature

This commit is contained in:
yyc12345 2022-07-22 00:51:12 +08:00
parent 2040afa34a
commit 449b95e036
2 changed files with 8 additions and 4 deletions

View File

@ -11,6 +11,7 @@ public enum LabelConsoleMessageType {
public class ConsolePanel : Control {
private LineEdit mCmdInput;
private ScrollContainer mScrollbar;
private VScrollBar mScrollbarVChild;
private VBoxContainer mMessageContainer;
private PackedScene mTemplateLabelConsole;
private Queue<LabelConsole> mMessageQueue = new Queue<LabelConsole>();
@ -21,8 +22,10 @@ public class ConsolePanel : Control {
mCmdInput = GetNode<LineEdit>("CommandInput");
mScrollbar = GetNode<ScrollContainer>("ScrollSet/Scrollbar");
mScrollbarVChild = mScrollbar.GetVScrollbar();
mMessageContainer = GetNode<VBoxContainer>("ScrollSet/Scrollbar/MessageContainer");
mCmdInput.Connect("text_entered", this, nameof(Proc_LineEdit_TextEntered));
mScrollbarVChild.Connect("changed", this, nameof(Proc_ScrollbarVChild_Changed));
BallanceStalkerCore.StalkerManager.Singleton.EventControllerChanged += Proc_StalkerManager_EventControllerChanged;
}
@ -73,10 +76,6 @@ public class ConsolePanel : Control {
// set text
target.SetText(strl, t);
// scroll to bottom
//var bar = mScrollbar.GetVScrollbar();
//bar.Value = bar.MaxValue;
mScrollbar.ScrollVertical = (int)mScrollbar.GetVScrollbar().MaxValue;
}
private void Proc_LineEdit_TextEntered(string new_strl) {
@ -95,4 +94,8 @@ public class ConsolePanel : Control {
}
}
private void Proc_ScrollbarVChild_Changed() {
mScrollbar.ScrollVertical = (int)mScrollbarVChild.MaxValue;
}
}

View File

@ -24,6 +24,7 @@ public class LabelConsole : Control {
mRealLabel.Modulate = Colors.OrangeRed;
break;
}
this.RectMinSize = new Vector2(0, (mRealLabel.GetLineHeight() + mRealLabel.GetConstant("line_spacing")) * mRealLabel.GetLineCount());
}
private void Proc_Label_ItemRectChanged() {