OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:statsview
(Results
1 - 4
of
4
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsAppState.java
52
protected
StatsView
statsView
;
86
public
StatsView
getStatsView() {
87
return
statsView
;
108
if (
statsView
!= null ) {
109
statsView
.setEnabled(show);
110
statsView
.setCullHint(show ? CullHint.Never : CullHint.Always);
160
statsView
= new
StatsView
("Statistics View",
164
statsView
.setLocalTranslation(0, fpsText.getLineHeight(), 0)
[
all
...]
StatsView.java
47
* The <code>
StatsView
</code> provides a heads-up display (HUD) of various
55
* the <code>
StatsView
</code> to the scene graph.<br/>
58
*
StatsView
statsView
= new
StatsView
("MyStats", assetManager, stats);<br/>
59
* rootNode.attachChild(
statsView
);<br/>
62
public class
StatsView
extends Node implements Control {
74
public
StatsView
(String name, AssetManager manager, Statistics stats){
109
// done even if there is no
StatsView
or the
StatsView
[
all
...]
SimpleApplication.java
57
* using the {@link com.jme3.app.
StatsView
} class. It will display
/external/jmonkeyengine/engine/src/test/jme3test/post/
TestLightScattering.java
36
import com.jme3.app.
StatsView
;
Completed in 78 milliseconds