add sim feature AvatarHoverHeightEnabled; mantis 8535: make option MeshModelAllowTextureToInventory visible
parent
8410a01fb4
commit
38e937f91b
|
@ -77,6 +77,9 @@ namespace OpenSim.Region.ClientStack.LindenCaps
|
||||||
{
|
{
|
||||||
RegisterCaps(agentID, caps);
|
RegisterCaps(agentID, caps);
|
||||||
};
|
};
|
||||||
|
ISimulatorFeaturesModule simFeatures = scene.RequestModuleInterface<ISimulatorFeaturesModule>();
|
||||||
|
if(simFeatures != null)
|
||||||
|
simFeatures.AddFeature("AvatarHoverHeightEnabled",OSD.FromBoolean(true));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PostInitialise() {}
|
public void PostInitialise() {}
|
||||||
|
|
|
@ -1712,17 +1712,12 @@
|
||||||
[Economy]
|
[Economy]
|
||||||
; the economy module in use
|
; the economy module in use
|
||||||
; default is the provided BetaGridLikeMoneyModule
|
; default is the provided BetaGridLikeMoneyModule
|
||||||
; - This module is for demonstration only -
|
|
||||||
; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
|
; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
|
||||||
; There is no intention to implement anything further in core OpenSimulator.
|
; There is no intention to implement anything further in core OpenSimulator.
|
||||||
; This functionality has to be provided by third party modules.
|
; This functionality has to be provided by third party modules.
|
||||||
; To use other modules you need to override this setting on OpenSim.ini Economy (or startup) section
|
|
||||||
; economymodule = BetaGridLikeMoneyModule
|
; economymodule = BetaGridLikeMoneyModule
|
||||||
|
|
||||||
; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only -
|
; Economy values get used in the BetaGridLikeMoneyModule.
|
||||||
; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
|
|
||||||
; There is no intention to implement anything further in core OpenSimulator.
|
|
||||||
; This functionality has to be provided by third party modules.
|
|
||||||
|
|
||||||
;; Enables selling things for $0. Default is true.
|
;; Enables selling things for $0. Default is true.
|
||||||
; SellEnabled = true
|
; SellEnabled = true
|
||||||
|
@ -1750,6 +1745,14 @@
|
||||||
;PriceObjectRent = 0
|
;PriceObjectRent = 0
|
||||||
;PriceObjectScaleFactor = 10
|
;PriceObjectScaleFactor = 10
|
||||||
;PriceParcelRent = 0
|
;PriceParcelRent = 0
|
||||||
|
|
||||||
|
; Mesh upload settings, independent of economymodule
|
||||||
|
|
||||||
|
; Create inventory entries for textures uploaded with a model
|
||||||
|
; default is false, ie, do not create
|
||||||
|
; MeshModelAllowTextureToInventory = true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[XEngine]
|
[XEngine]
|
||||||
; Enable this engine in this OpenSim instance
|
; Enable this engine in this OpenSim instance
|
||||||
|
|
Loading…
Reference in New Issue