SceneGraphAnalyzerMeter

from panda3d.core import SceneGraphAnalyzerMeter
class SceneGraphAnalyzerMeter

Bases:

Bases: TextNode

This is a special TextNode that automatically updates itself with output from a SceneGraphAnalyzer instance. It can be placed anywhere in the world where you’d like to see the output from SceneGraphAnalyzer.

It also has a special mode in which it may be attached directly to a channel or window. If this is done, it creates a DisplayRegion for itself and renders itself in the upper-right-hand corner.

Inheritance diagram

Inheritance diagram of SceneGraphAnalyzerMeter

__init__(param0: SceneGraphAnalyzerMeter)
__init__(name: str, node: PandaNode)
clear_window()

Undoes the effect of a previous call to setup_window().

static get_class_type() TypeHandle
get_display_region() DisplayRegion

Returns the DisplayRegion that the meter has created to render itself into the window to setup_window(), or NULL if setup_window() has not been called.

get_node() PandaNode

Returns the node to be analyzed.

get_update_interval() float

Returns the number of seconds that will elapse between updates to the frame rate indication.

get_window() GraphicsOutput

Returns the GraphicsOutput that was passed to setup_window(), or NULL if setup_window() has not been called.

set_node(node: PandaNode)

Sets the node to be analyzed.

set_update_interval(update_interval: float)

Specifies the number of seconds that should elapse between updates to the meter. This should be reasonably slow (e.g. 0.5 to 2.0) so that the calculation of the scene graph analysis does not itself dominate the frame rate.

setup_window(window: GraphicsOutput)

Sets up the frame rate meter to create a DisplayRegion to render itself into the indicated window.

update()

You can call this to explicitly force the SceneGraphAnalyzerMeter to update itself with the latest scene graph analysis information. Normally, it is not necessary to call this explicitly.