mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
Change passed PhysicsParameter value from float to the more general string value
This commit is contained in:
@@ -60,14 +60,14 @@ namespace OpenSim.Region.Physics.Manager
|
||||
|
||||
// Set parameter on a specific or all instances.
|
||||
// Return 'false' if not able to set the parameter.
|
||||
bool SetPhysicsParameter(string parm, float value, uint localID);
|
||||
bool SetPhysicsParameter(string parm, string value, uint localID);
|
||||
|
||||
// Get parameter.
|
||||
// Return 'false' if not able to get the parameter.
|
||||
bool GetPhysicsParameter(string parm, out float value);
|
||||
bool GetPhysicsParameter(string parm, out string value);
|
||||
|
||||
// Get parameter from a particular object
|
||||
// TODO:
|
||||
// bool GetPhysicsParameter(string parm, out float value, uint localID);
|
||||
// bool GetPhysicsParameter(string parm, out string value, uint localID);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user