aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
diff options
context:
space:
mode:
authordr scofield (aka dirk husemann)2009-08-31 09:28:56 +0200
committerdr scofield (aka dirk husemann)2009-08-31 10:30:10 +0200
commit953581698d2fade30ed76cdae3f8c3a0031b35fb (patch)
tree75154a48797a15df0749a57eb3aea196678b569f /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
parentRemove typo version of ReplaceableInterface property from RegionCombinerModule. (diff)
downloadopensim-SC_OLD-953581698d2fade30ed76cdae3f8c3a0031b35fb.zip
opensim-SC_OLD-953581698d2fade30ed76cdae3f8c3a0031b35fb.tar.gz
opensim-SC_OLD-953581698d2fade30ed76cdae3f8c3a0031b35fb.tar.bz2
opensim-SC_OLD-953581698d2fade30ed76cdae3f8c3a0031b35fb.tar.xz
- making font name used by VectorRenderModule configurable: can be set
via [VectorRender] font_name = "Comic Sans MS" in OpenSim.ini - adding osSetFontName OSSL function
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index 45492dd..8f52d99 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -282,6 +282,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
282 return m_OSSL_Functions.osSetFontSize(drawList, fontSize); 282 return m_OSSL_Functions.osSetFontSize(drawList, fontSize);
283 } 283 }
284 284
285 public string osSetFontName(string drawList, string fontName)
286 {
287 return m_OSSL_Functions.osSetFontName(drawList, fontName);
288 }
289
285 public string osSetPenSize(string drawList, int penSize) 290 public string osSetPenSize(string drawList, int penSize)
286 { 291 {
287 return m_OSSL_Functions.osSetPenSize(drawList, penSize); 292 return m_OSSL_Functions.osSetPenSize(drawList, penSize);