Public Beta — This Feedback Tracker is currently in public beta. For most issues, please visit feedback.bistudio.com
0
Issue Key
State
Access
Public
Project
Creator
Created
Jun 14, 2026
Views
32Attachments
No attachments
Platform
Game Version
Mission
Is it modded?
Description
Add the class below in a script file and compile scripts
//------------------------------------------------------------------------------------------------
class MyClass : Managed
{
float m_fMyValue;
}Go to play mode and run the script below in the remote console
MyClass instance = new MyClass();
Print(instance.m_fMyValue);
typename type = instance.Type();
float value;
type.GetVariableValue(instance, 0, value);
Print(value);You are not signed in. Please sign in to see more details.
Issue Key
State
Access
Public
Project
Creator
Created
Jun 14, 2026
Views
32Attachments
No attachments