Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

godot setget

#Both setter and getter:
var my_var setget my_var_set, my_var_get

func my_var_set(new_value):
    my_var = new_value

func my_var_get():
    return my_var # Getter must return a value.
    
    
#Only a setter
var my_var = 5 setget myvar_set


#Only a getter
var my_var = 5 setget ,myvar_get

Docs:
https://docs.godotengine.org/en/3.0/getting_started/scripting/gdscript/gdscript_basics.html?highlight=setget#setters-getters
Comment

setget godot

var my_var setget my_var_set, my_var_get

func my_var_set(new_value):
    my_var = new_value

func my_var_get():
    return my_var # Getter must return a value.

#Only a setter
var my_var = 5 setget myvar_set

#Only a getter
var my_var = 5 setget ,myvar_get
Comment

PREVIOUS NEXT
Code Example
Python :: pandas select columns by index list 
Python :: remove specific word from string using python 
Python :: subsetting based on column value with list 
Python :: cant install tensorflow pip python 3.6 
Python :: Replace the string with NAN value 
Python :: how to catch ctrl c in python 
Python :: install python in centos7 
Python :: mouse bottom in pygame 
Python :: view(-1) in pytorch 
Python :: Read text file line by line using the readline() function 
Python :: convert float to integer pandas 
Python :: xa python 
Python :: keys in python 
Python :: python tkinter scrollbar widget 
Python :: intersection between two arrays using numpy 
Python :: python3 strip punctuation from string 
Python :: pygame how to draw a rectangle 
Python ::  in python 
Python :: python file count 
Python :: unpack too many values in python 
Python :: remove a column from dataframe 
Python :: basic tkinter gui 
Python :: python glob 
Python :: custom save django 
Python :: create column for year in dataframe python 
Python :: seaborn pairplot 
Python :: how to make a program that identifies positives and negatives in python 
Python :: how to install python 3.6.0 on debian 
Python :: drop all characters after a character in python 
Python :: set seed tensorflow 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =