mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 18:12:53 +02:00
16 lines
No EOL
549 B
JavaScript
16 lines
No EOL
549 B
JavaScript
|
|
LODManager.LODIncreased.connect(function() {
|
|
print("LOD has been increased. You can now see "
|
|
+ LODManager.getLODFeedbackText()
|
|
+ ", fps:" + LODManager.getFPSAverage()
|
|
+ ", fast fps:" + LODManager.getFastFPSAverage()
|
|
);
|
|
});
|
|
|
|
LODManager.LODDecreased.connect(function() {
|
|
print("LOD has been decreased. You can now see "
|
|
+ LODManager.getLODFeedbackText()
|
|
+ ", fps:" + LODManager.getFPSAverage()
|
|
+ ", fast fps:" + LODManager.getFastFPSAverage()
|
|
);
|
|
}); |