BitcoderCZ.Fancade.Runtime
1.0.0-develop.24
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
This is a prerelease version of BitcoderCZ.Fancade.Runtime.
dotnet add package BitcoderCZ.Fancade.Runtime --version 1.0.0-develop.24
NuGet\Install-Package BitcoderCZ.Fancade.Runtime -Version 1.0.0-develop.24
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BitcoderCZ.Fancade.Runtime" Version="1.0.0-develop.24" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BitcoderCZ.Fancade.Runtime" Version="1.0.0-develop.24" />
<PackageReference Include="BitcoderCZ.Fancade.Runtime" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BitcoderCZ.Fancade.Runtime --version 1.0.0-develop.24
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: BitcoderCZ.Fancade.Runtime, 1.0.0-develop.24"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package BitcoderCZ.Fancade.Runtime@1.0.0-develop.24
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BitcoderCZ.Fancade.Runtime&version=1.0.0-develop.24&prerelease
#tool nuget:?package=BitcoderCZ.Fancade.Runtime&version=1.0.0-develop.24&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
BitcoderCZ.Fancade.Runtime
Allows running fancade scripts.
Sample usage
// load game
Game game;
using (var fs = File.OpenRead("game.fcg"))
{
game = Game.LoadCompressed(fs);
}
// build ast
var idOfLevelToExecute = RawGame.CurrentNumbStockPrefabs;
var ast = FcAST.Parse(game.Prefabs, idOfLevelToExecute);
// create interpreter
var ctx = new MyCtx();
var interpreter = new Interpreter(ast, ctx);
// execute 1s (60 frames)
for (var i = 0; i < 60; i++)
{
var lateUpdate = interpreter.RunFrame();
// run late update blocks
lateUpdate();
ctx.CurrentFrame++;
}
class MyCtx : IRuntimeContext
{
public long CurrentFrame { get; set; }
public void InspectValue(RuntimeValue value, SignalType type, string? variableName, ushort prefabId, int3 inspectBlockPosition)
{
var msg = $"[INSP] {value.GetValueOfType(type)}, {(variableName is not null ? $"Var: {variableName}, " : string.Empty)}Pos: {inspectBlockPosition}, Type: {type}";
Console.WriteLine(msg);
}
// ...
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- BitcoderCZ.Fancade (>= 4.0.0-develop.12)
- BitcoderCZ.Fancade.Editing (>= 4.0.0-develop.21)
- BitcoderCZ.Maths (>= 1.1.0)
- System.Collections.Immutable (>= 9.0.9)
-
net8.0
- BitcoderCZ.Fancade (>= 4.0.0-develop.12)
- BitcoderCZ.Fancade.Editing (>= 4.0.0-develop.21)
- BitcoderCZ.Maths (>= 1.1.0)
-
net9.0
- BitcoderCZ.Fancade (>= 4.0.0-develop.12)
- BitcoderCZ.Fancade.Editing (>= 4.0.0-develop.21)
- BitcoderCZ.Maths (>= 1.1.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on BitcoderCZ.Fancade.Runtime:
| Package | Downloads |
|---|---|
|
BitcoderCZ.Fancade.Runtime.Simulated.Bullet
Run fancade games with bullet physics. |
|
|
BitcoderCZ.Fancade.Runtime.Simulated
Base package for BitcoderCZ.Fancade.Runtime.Simulated.* |
|
|
BitcoderCZ.Fancade.Runtime.Compiled
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-develop.24 | 120 | 12/17/2025 |
| 1.0.0-develop.23 | 129 | 10/7/2025 |
| 1.0.0-develop.22 | 128 | 10/7/2025 |
| 1.0.0-develop.21 | 121 | 10/7/2025 |
| 1.0.0-develop.20 | 131 | 10/4/2025 |
| 1.0.0-develop.19 | 131 | 10/1/2025 |
| 1.0.0-develop.18 | 141 | 9/29/2025 |
| 1.0.0-develop.17 | 106 | 9/28/2025 |
| 1.0.0-develop.16 | 134 | 9/25/2025 |
| 1.0.0-develop.15 | 131 | 9/25/2025 |
| 1.0.0-develop.14 | 130 | 9/25/2025 |
| 1.0.0-develop.13 | 272 | 9/16/2025 |
| 1.0.0-develop.12 | 224 | 9/15/2025 |
| 1.0.0-develop.11 | 237 | 9/15/2025 |
| 1.0.0-develop.10 | 220 | 9/15/2025 |
| 1.0.0-develop.9 | 131 | 9/11/2025 |
| 1.0.0-develop.8 | 132 | 9/11/2025 |
| 1.0.0-develop.7 | 132 | 9/11/2025 |
| 1.0.0-develop.6 | 129 | 9/9/2025 |
| 1.0.0-develop.5 | 129 | 9/8/2025 |
| 1.0.0-develop.4 | 131 | 9/8/2025 |
| 1.0.0-develop.3 | 128 | 9/8/2025 |
| 1.0.0-develop.2 | 130 | 9/8/2025 |
| 1.0.0-develop.1 | 66 | 9/6/2025 |
| 0.0.2 | 123 | 12/17/2025 |
| 0.0.1 | 226 | 8/8/2025 |