diff options
author | Justin Clark-Casey (justincc) | 2013-08-14 19:53:10 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-08-14 19:53:10 +0100 |
commit | 225cf0d0102d05721bd01120928b9d1d85c811a7 (patch) | |
tree | b399d69f04f69f856ea577984559af3b2ad46b4e /bin/pCampbot.ini.example | |
parent | Add method doc to Scene.RemoveClient() to ask any callers to use Scene.Incomi... (diff) | |
download | opensim-SC-225cf0d0102d05721bd01120928b9d1d85c811a7.zip opensim-SC-225cf0d0102d05721bd01120928b9d1d85c811a7.tar.gz opensim-SC-225cf0d0102d05721bd01120928b9d1d85c811a7.tar.bz2 opensim-SC-225cf0d0102d05721bd01120928b9d1d85c811a7.tar.xz |
Add pCampbot RequestObjectTextures ini setting to control whether textures are requested for received objects.
Diffstat (limited to '')
-rw-r--r-- | bin/pCampbot.ini.example | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/bin/pCampbot.ini.example b/bin/pCampbot.ini.example index 81cdcf4..f44feae 100644 --- a/bin/pCampbot.ini.example +++ b/bin/pCampbot.ini.example | |||
@@ -3,7 +3,13 @@ | |||
3 | 3 | ||
4 | [Bot] | 4 | [Bot] |
5 | ; Control whether bots should regularly send agent updates | 5 | ; Control whether bots should regularly send agent updates |
6 | ; Not sending agent updates will reduce CPU requirements for pCampbot but greatly | 6 | ; Not doing this will reduce CPU requirements for pCampbot but greatly |
7 | ; reduce the realism compared to viewers which are constantly sending AgentUpdates UDP packets | 7 | ; reduce the realism compared to viewers which are constantly sending AgentUpdates UDP packets. |
8 | ; Defaults to true. | 8 | ; Defaults to true. |
9 | SendAgentUpdates = true | 9 | SendAgentUpdates = true |
10 | |||
11 | ; Control whether bots will requests textures when receiving object information | ||
12 | ; Not doing this will reduce CPU requirements for pCampbot but greatly | ||
13 | ; reduce the realism compared to viewers which requests such texture data if not already cached. | ||
14 | ; Defaults to true. | ||
15 | RequestObjectTextures = true | ||