mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

819
active users

#unrealengine

42 posts21 participants5 posts today

It's possible to set the value of preprocessor defines like `if SOME_VALUE` through your `MyProject.Build.cs` and `MyProject.Target.cs` files:
```cs
// In Build.cs
GlobalDefinitions.Add("SOME_VALUE=1");
```
```cs
// In Target.cs
GlobalDefinitions.Add("SOME_VALUE=1");
```

#UnrealEngine