fix compile putting back useless things until they are fully removed
parent
66f46c6846
commit
58b68aa5e9
|
@ -130,7 +130,6 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
|
||||||
RequestAssetMethod = m;
|
RequestAssetMethod = m;
|
||||||
SetTerrain(terrain);
|
SetTerrain(terrain);
|
||||||
SetWaterLevel(waterHeight);
|
SetWaterLevel(waterHeight);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual void TriggerPhysicsBasedRestart()
|
public virtual void TriggerPhysicsBasedRestart()
|
||||||
|
@ -310,8 +309,6 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public virtual Dictionary<string, float> GetStats() { return null; }
|
public virtual Dictionary<string, float> GetStats() { return null; }
|
||||||
|
|
||||||
public abstract void GetResults();
|
|
||||||
|
|
||||||
public abstract void SetTerrain(float[] heightMap);
|
public abstract void SetTerrain(float[] heightMap);
|
||||||
|
|
||||||
public abstract void SetWaterLevel(float baseheight);
|
public abstract void SetWaterLevel(float baseheight);
|
||||||
|
@ -322,8 +319,6 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
|
||||||
|
|
||||||
public abstract Dictionary<uint, float> GetTopColliders();
|
public abstract Dictionary<uint, float> GetTopColliders();
|
||||||
|
|
||||||
public abstract bool IsThreaded { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// True if the physics plugin supports raycasting against the physics scene
|
/// True if the physics plugin supports raycasting against the physics scene
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -409,5 +404,8 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
|
||||||
// A NOP if the extension thing is not implemented by the physics engine
|
// A NOP if the extension thing is not implemented by the physics engine
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public virtual void GetResults() { }
|
||||||
|
public virtual bool IsThreaded { get {return false;} }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue