Banuba SDK
BNBParameter.h
Go to the documentation of this file.
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file generated by Djinni from scene.djinni
3 
4 #import "BNBVec3.h"
5 #import <Foundation/Foundation.h>
6 @class BNBParameter;
7 
8 
9 @interface BNBParameter : NSObject
10 
11 + (nullable BNBParameter *)create:(nonnull NSString *)name;
12 
13 - (nonnull NSString *)getName;
14 
15 - (void)setInteger:(int32_t)value;
16 
17 - (int32_t)getInteger;
18 
19 - (void)setReal:(float)value;
20 
21 - (float)getReal;
22 
23 - (void)setString:(nonnull NSString *)value;
24 
25 - (nonnull NSString *)getString;
26 
27 - (void)setVector3:(nonnull BNBVec3 *)value;
28 
29 - (nonnull BNBVec3 *)getVector3;
30 
31 @end
-[BNBParameter getString]
nonnull NSString * getString()
-[BNBParameter getName]
nonnull NSString * getName()
BNBParameter
Definition: BNBParameter.h:10
-[BNBParameter getInteger]
int32_t getInteger()
BNBVec3
Definition: BNBVec3.h:7
BNBVec3.h
-[BNBParameter getReal]
float getReal()
-[BNBParameter getVector3]
nonnull BNBVec3 * getVector3()