-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
189 changed files
with
2,189 additions
and
1,146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
NWN_VERSION=8193.34 | ||
NWNX_VERSION=d44d373 | ||
NWNX_VERSION=b419e42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using NWN.Core; | ||
|
||
namespace Anvil.API | ||
{ | ||
public enum AreaLightColor | ||
{ | ||
MoonAmbient = NWScript.AREA_LIGHT_COLOR_MOON_AMBIENT, | ||
MoonDiffuse = NWScript.AREA_LIGHT_COLOR_MOON_DIFFUSE, | ||
SunAmbient = NWScript.AREA_LIGHT_COLOR_SUN_AMBIENT, | ||
SunDiffuse = NWScript.AREA_LIGHT_COLOR_SUN_DIFFUSE, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using NWN.Core; | ||
|
||
namespace Anvil.API | ||
{ | ||
public enum AreaLightDirection | ||
{ | ||
Moon = NWScript.AREA_LIGHT_DIRECTION_MOON, | ||
Sun = NWScript.AREA_LIGHT_DIRECTION_SUN, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using NWN.Core; | ||
|
||
namespace Anvil.API | ||
{ | ||
[Flags] | ||
public enum CameraFlag | ||
{ | ||
EnableCollision = NWScript.CAMERA_FLAG_ENABLE_COLLISION, | ||
DisableCollision = NWScript.CAMERA_FLAG_DISABLE_COLLISION, | ||
DisableShake = NWScript.CAMERA_FLAG_DISABLE_SHAKE, | ||
DisableScroll = NWScript.CAMERA_FLAG_DISABLE_SCROLL, | ||
DisableTurn = NWScript.CAMERA_FLAG_DISABLE_TURN, | ||
DisableTilt = NWScript.CAMERA_FLAG_DISABLE_TILT, | ||
DisableZoom = NWScript.CAMERA_FLAG_DISABLE_ZOOM, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 0 additions & 29 deletions
29
NWN.Anvil/src/main/API/Constants/ItemAppearanceArmorModel.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using NWN.Core; | ||
|
||
namespace Anvil.API | ||
{ | ||
[Flags] | ||
public enum ObjectUiDiscovery | ||
{ | ||
Default = NWScript.OBJECT_UI_DISCOVERY_DEFAULT, | ||
None = NWScript.OBJECT_UI_DISCOVERY_NONE, | ||
HiliteMouseover = NWScript.OBJECT_UI_DISCOVERY_HILITE_MOUSEOVER, | ||
HiliteTab = NWScript.OBJECT_UI_DISCOVERY_HILITE_TAB, | ||
TextbubbleMouseover = NWScript.OBJECT_UI_DISCOVERY_TEXTBUBBLE_MOUSEOVER, | ||
TextbubbleTab = NWScript.OBJECT_UI_DISCOVERY_TEXTBUBBLE_TAB, | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
NWN.Anvil/src/main/API/Constants/ObjectUiTextBubbleOverride.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using NWN.Core; | ||
|
||
namespace Anvil.API | ||
{ | ||
public enum ObjectUiTextBubbleOverride | ||
{ | ||
None = NWScript.OBJECT_UI_TEXT_BUBBLE_OVERRIDE_NONE, | ||
Replace = NWScript.OBJECT_UI_TEXT_BUBBLE_OVERRIDE_REPLACE, | ||
Prepend = NWScript.OBJECT_UI_TEXT_BUBBLE_OVERRIDE_PREPEND, | ||
Append = NWScript.OBJECT_UI_TEXT_BUBBLE_OVERRIDE_APPEND, | ||
} | ||
} |
Oops, something went wrong.