Falco Engine
3.9.0.1 (beta)
Shader.cs
Go to the documentation of this file.
1
using
System;
2
using
System.Runtime.CompilerServices;
3
using
System.Runtime.InteropServices;
4
5
namespace
FalcoEngine
6
{
7
public
class
Shader
:
Asset
8
{
9
internal
Shader
() { }
10
16
public
static
Shader
Load
(
string
name
)
17
{
18
return
INTERNAL_load(
name
);
19
}
20
21
[MethodImpl(MethodImplOptions.InternalCall)]
22
private
static
extern
Shader
INTERNAL_load(
string
name
);
23
}
24
}
FalcoEngine.Asset
Definition:
Asset.cs:8
FalcoEngine.Asset.name
string name
Get asset name
Definition:
Asset.cs:16
FalcoEngine.Shader
Definition:
Shader.cs:8
FalcoEngine.Shader.Load
static Shader Load(string name)
Load existing shader
Definition:
Shader.cs:16
FalcoEngine
Definition:
AnimationClip.cs:7
API
Assets
Shader.cs
Generated by
1.9.2