diff options
author | dr scofield (aka dirk husemann) | 2009-08-31 09:28:56 +0200 |
---|---|---|
committer | dr scofield (aka dirk husemann) | 2009-08-31 10:30:10 +0200 |
commit | 953581698d2fade30ed76cdae3f8c3a0031b35fb (patch) | |
tree | 75154a48797a15df0749a57eb3aea196678b569f /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Remove typo version of ReplaceableInterface property from RegionCombinerModule. (diff) | |
download | opensim-SC-953581698d2fade30ed76cdae3f8c3a0031b35fb.zip opensim-SC-953581698d2fade30ed76cdae3f8c3a0031b35fb.tar.gz opensim-SC-953581698d2fade30ed76cdae3f8c3a0031b35fb.tar.bz2 opensim-SC-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')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 5 |
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); |