Skip to content

Show

Makes a hidden PrismaView visible. This method sets the view’s visibility flag to allow it to be rendered in the next frame, enabling you to show previously hidden UI elements without recreating them.

void Show(PrismaView view);
  • Type: PrismaView
  • Description: The PrismaView to make visible

This method returns void.

// Show a previously hidden view
PrismaUI->Show(view);
  • Sets the isHidden flag to false
  • View begins rendering in the next frame
  • If view is already visible, operation is silently ignored
  • Does not affect focus state - use Focus separately if needed
  • Pair with Hide: Use Show and Hide as complementary operations
  • Check State: Use IsHidden to check visibility before showing
  • Focus Management: Call Focus separately if input interaction is needed
  • Performance: Prefer show/hide over destroy/create for temporary UI