aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatar.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-4/+4
2012-04-25refactor: Combine ScenePresence.Teleport() and TeleportWithMomentum()Justin Clark-Casey (justincc)1-1/+1
These are identical apart from setting Velocity = zero, which has no practical effect anyway since this is zeroed when the avatar is added back to the physics scene.
2010-10-21First attempt to get multiple attachments working to support viewer2.Master ScienceSim1-9/+6
The attachment code appears to work correctly for 1.23 viewers so, in spite of some big changes in the internal representation, there don't appear to be regressions. That being said, I still can't get a viewer2 avatar to show correctly.
2010-02-19Apply http://opensimulator.org/mantis/view.php?id=4495Justin Clark-Casey (justincc)1-0/+5
Adds IsChildAgent property to IAvatar in MRM. Thanks ziah
2009-08-18* Implementing a bunch of Unimplemented MRM stubs.Adam Frisby1-6/+2
2009-08-16* Implements ISecurityCredential member on SPAvatar, SPAvatarAttachmentAdam Frisby1-2/+6
* Disables 'event not used' warning for IRCClientView; cuts OpenSim total warnings back.
2009-07-15minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-07-01Formatting cleanup.Jeff Ames1-27/+27
2009-06-29Thank you kindly, Snowdrop, for a patch that solves:Charles Krinke1-0/+8
The current API for MRM is quite sparse, this patch supplies basic support for accessing the task inventory of object.
2009-06-29Thank you kindly, Snowdrop/Snowcrash for a patch that:Charles Krinke1-0/+28
This patch makes the worn attachments accessible to MRM scripting
2009-05-12* Adds ScenePresence.TeleportWithMomentum - same as .Teleport, but preserves ↵Adam Frisby1-1/+1
velocity.
2009-05-12* Applies Mantis #3630 - Adds support for outside MRM initialisation, makes ↵Adam Frisby1-1/+1
MRMModule compatible with the Visual Studio MRMLoader ( http://forge.opensimulator.org/gf/project/mrmloader/ )
2009-04-09* Moves Name, GlobalID and WorldPosition into new IEntity interface.Adam Frisby1-1/+4
* Avatar and Object now inherit from IEntity. * Avatar.Position is now Avatar.WorldPosition to match IObject property. * Implements event World.OnChat += delegate(IWorld sender, ChatEventArgs e);
2009-04-04Add copyright headers, formatting cleanup.Jeff Ames1-1/+28
2009-04-01Update svn properties.Jeff Ames1-37/+37
2009-04-01* Adds World.Avatars[] to MRM Scripting. Contains an enumerable array ↵Adam Frisby1-0/+37
containing IAvatar instances for each avatar in the region. * Adds Test/TestModule.cs which demonstrates a very quick and simple MRM Test.