mirror of
https://github.com/opensim/opensim.git
synced 2026-06-05 02:15:38 +08:00
For it to work you need to have a java sdk installed and the javac.exe somewhere in the environment Path variable. Then To test, copy the text from bin/script1.text into a note card and then add that note to a prim.
19 lines
278 B
C#
19 lines
278 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Framework
|
|
{
|
|
public class OSVector3
|
|
{
|
|
public float X;
|
|
public float Y;
|
|
public float Z;
|
|
|
|
public OSVector3()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|