Class LCanvas

All Implemented Interfaces:
Cullable

public class LCanvas extends Table
  • Field Details

  • Constructor Details

    • LCanvas

      public LCanvas()
  • Method Details

    • useRows

      public static boolean useRows()
      Returns:
      if statement elements should have rows.
    • tooltip

      public static void tooltip(Cell<?> cell, String key)
    • tooltip

      public static void tooltip(Cell<?> cell, Enum<?> key)
    • rebuild

      public void rebuild()
    • draw

      public void draw()
      Description copied from class: WidgetGroup
      If this method is overridden, the super method or WidgetGroup.validate() should be called to ensure the widget group is laid out.
      Overrides:
      draw in class Table
    • add

      public void add(LStatement statement)
    • save

      public String save()
    • load

      public void load(String asm)
    • act

      public void act(float delta)
      Description copied from class: Element
      Updates the actor based on time. Typically this is called each frame by Scene.act(float).

      The default implementation calls Action.act(float) on each action and removes actions that are complete.

      Overrides:
      act in class Group
      Parameters:
      delta - Time in seconds since the last frame.