Hi,
I have a own class where I define a variable in Class_Globals :
type T1 ( v1 as float , v2 as float )
type T2 (V3 as float , V4 as T1)
but if I want change the V4 value like this :
V4.V1 = 1
I get an error : java.lang.NullPointerException: Attempt to write to field 'float b4a.example.csv3$_V4.V1' on a null object reference
What make I wrong ?
I have a own class where I define a variable in Class_Globals :
type T1 ( v1 as float , v2 as float )
type T2 (V3 as float , V4 as T1)
but if I want change the V4 value like this :
V4.V1 = 1
I get an error : java.lang.NullPointerException: Attempt to write to field 'float b4a.example.csv3$_V4.V1' on a null object reference
What make I wrong ?