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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Mono.Cecil; | |
using Mono.Cecil.Cil; | |
using Mono.Cecil.Rocks; | |
using Mono.Cecil.Pdb; | |
using System.IO; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.IO; | |
using BaseX; | |
namespace CodeX | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using CodeX; | |
using BaseX; | |
namespace FrooxEngine | |
{ | |
[Category("Assets/Procedural Textures")] |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using BaseX; | |
using CodeX; | |
namespace FrooxEngine | |
{ | |
[Category("Assets/Procedural Textures")] |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using BaseX; | |
using CodeX; | |
namespace FrooxEngine | |
{ | |
[Category("Assets/Procedural Textures")] |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace FrooxEngine | |
{ | |
[GenericTypes(GenericTypes.Group.NeosPrimitives)] | |
[Category("Transform/Interaction")] |
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
public static partial class LogixHelper | |
{ | |
static color UnsignedIntegerColor { get { return new color(0f, 0.5f, 1f); } } | |
static color SignedIntegerColor { get { return new color(0f, 1f, 0f); } } | |
static color FloatingPointColor { get { return new color(0f, 1f, 1f); } } | |
static color BooleanColor { get { return new color(0.25f, 0.25f, 0.25f); } } | |
static color ColorColor { get { return new color(1f, 0.8f, 0f); } } | |
static color StringColor { get { return new color(0.5f, 0f, 0f); } } | |
static color DummyColor { get { return new color(1f, 0f, 1f); } } |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using FrooxEngine; | |
using BaseX; | |
namespace NeosSampleLibrary | |
{ | |
[Category("Examples")] |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace FrooxEngine | |
{ | |
[Category("Transform/Interaction")] | |
public class TouchToggle : Component, ITouchable |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using BaseX; | |
namespace FrooxEngine | |
{ | |
[Category("Assets/Procedural Meshes")] |
NewerOlder