mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Disabled Vector swizzle
caused by beef bug
This commit is contained in:
@@ -2,7 +2,7 @@ using System;
|
|||||||
|
|
||||||
namespace GlitchyEngine.Math
|
namespace GlitchyEngine.Math
|
||||||
{
|
{
|
||||||
[SwizzleVector(2, "Vector")]
|
//[SwizzleVector(2, "Vector")]
|
||||||
public struct Vector2
|
public struct Vector2
|
||||||
{
|
{
|
||||||
public const Vector2 Zero = .(0f, 0f);
|
public const Vector2 Zero = .(0f, 0f);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ using System;
|
|||||||
|
|
||||||
namespace GlitchyEngine.Math
|
namespace GlitchyEngine.Math
|
||||||
{
|
{
|
||||||
[SwizzleVector(4, "Vector")]
|
//[SwizzleVector(4, "Vector")]
|
||||||
public struct Vector4
|
public struct Vector4
|
||||||
{
|
{
|
||||||
public const Vector4 Zero = .(0f, 0f, 0f, 0f);
|
public const Vector4 Zero = .(0f, 0f, 0f, 0f);
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ namespace GlitchyEngine.Math
|
|||||||
/**
|
/**
|
||||||
* A Vector with two components of type int32.
|
* A Vector with two components of type int32.
|
||||||
*/
|
*/
|
||||||
[SwizzleVector(2, "Int32_")]
|
//[SwizzleVector(2, "Int32_")]
|
||||||
public struct Int32_2 : IHashable
|
public struct Int32_2 : IHashable
|
||||||
{
|
{
|
||||||
public const Int32_2 Zero = .(0, 0);
|
public const Int32_2 Zero = .(0, 0);
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ namespace GlitchyEngine.Math
|
|||||||
/**
|
/**
|
||||||
* A Vector with three components of type int32.
|
* A Vector with three components of type int32.
|
||||||
*/
|
*/
|
||||||
[SwizzleVector(3, "Int32_")]
|
//[SwizzleVector(3, "Int32_")]
|
||||||
public struct Int32_3 : IHashable
|
public struct Int32_3 : IHashable
|
||||||
{
|
{
|
||||||
public const Int32_3 Zero = .(0, 0, 0);
|
public const Int32_3 Zero = .(0, 0, 0);
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ namespace GlitchyEngine.Math
|
|||||||
/**
|
/**
|
||||||
* A Vector with four components of type int32.
|
* A Vector with four components of type int32.
|
||||||
*/
|
*/
|
||||||
[SwizzleVector(4, "Int32_")]
|
//[SwizzleVector(4, "Int32_")]
|
||||||
public struct Int32_4 : IHashable
|
public struct Int32_4 : IHashable
|
||||||
{
|
{
|
||||||
public const Int32_4 Zero = .(0, 0, 0, 0);
|
public const Int32_4 Zero = .(0, 0, 0, 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user