VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
void AVR.UEditor.Core.AVR_DevConsoleWindow.ScrollToBottom ( )
inlineprivate

Definition at line 22 of file AVR_DevConsoleWindow.cs.

22  {
23  //We don't wanna do this if the user is scrolling around.
24  if(mouseOverWindow == this) return;
25 
26  scrollPos = new Vector2(scrollPos.x, float.PositiveInfinity); // Set scrollbar to bottom
27  }