Godot 語法

復制節(jié)點node

var orig = get_node("SomeNode")
var copy = orig.duplicate()
add_child(copy)

解析json

var d={}
var err = d.parse_json(json_string)
if (err!=OK):
    print("error parsing json")

多維數(shù)組

var a =[[1,2],[3,4]]

本地存儲

var gold = 150 # I have lots of gold!
var f = File.new()
var err=f.open("user://some_data_file",File.WRITE) #TODO: handle errors and such!
# Note: You could probably just use store_var() for many purposes
f.store_8(5) # store an integer
f.store_string("some gold") # store a string
f.store_var(gold) # store a variable
f.store_line("gold="+str(gold)) # store a line
f.close() # we're done writing data, close the file

讀取本地文件

var my_num
var my_string
var my_gold
var save_file = "user://some_data_file"
var f = File.new()
if f.file_exists(save_file): # check if the file exists
    f.open(save_file, File.READ) # try opening it with read access
    if f.is_open(): # we opened it, let's read some data!
        my_num = f.get_8() # retrieve the number
        my_string = f.get_string() # retrieve the string
        my_gold = f.get_var() # retrieve the gold variable
        my_line = f.get_line()
        f.close() # data's all here, close the file
        print("Data loaded.") # debug message
    else: # failed to open the file - maybe a permission issue?
        print("Unable to read file!")
else: # file doesn't exist, probably set vars to some defaults, etc.
    print("File does not exist.")

函數(shù)傳參默認值

func my_function(my_param="default value"):

展示幀數(shù) fps

extends Label # attach me to a label

func _ready():
    set_process(true)

func _process(d):
    set_text(str(OS.get_frames_per_second()))

畫六邊形

func _drawPolygon(pointArray):
    var i = 1;
    var colors = [
    Color(0.5,0.5,0.5),
    Color(0.5,0.5,0.5), 
    Color(0.5,0.5,0.5), 
    Color(0.5,0.5,0.5)
    ];
    var uvs = [];
    var prevpoint = null;
    
    #Fill the polygon shape
    draw_polygon(pointArray, colors, uvs);
    
    #Then draw a circle at each point, and then lines between them
    for p in pointArray: #for each point as "p" in the array points
    
        draw_circle(p, 10, Color(1,1,1)); 
        #Draw a circle at the point, with a radius of 
        #10 and the color white
        
        #Check if this point was the first point, if it isn't, 
        #then draw a line from the previous point to this point
        if prevpoint != null:
            draw_line(prevpoint, p, Color(1,1,1),5)
            prevpoint = p;
            #^^set the prevpoint for the next loop
        else:
            prevpoint = p;
            
        #check if the loop has reached the last point,
        #then draw a line from the last point to the first point (points[0]
        if i == points.size():
            draw_line(p, pointArray[0], Color(1,1,1),5)
            print("array end");
            #Just to make sure we got all the way trough :)
        i+=1;
        #now increase the interval in order to keep checking if 
        #we're at then end of the array

全局變量

Globals.set("my_global", 6)

print ( Globals.get("my_global") )

退出游戲

get_scene().quit()

更改標簽顏色

label.add_color_override("font_color", <desired_color>)

隱藏鼠標

Input.set_mouse_mode(Input.MOUSE_MODE_HIDDEN)

Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE)

將鼠標改為指定圖片

func _ready():
    Input.set_mouse_mode(Input.MOUSE_MODE_HIDDEN)
    var cursor = load("res://cursor.png")
    VisualServer.cursor_set_texture(cursor,Vector2(0,0),0)
    VisualServer.cursor_set_visible(true, 0)
    set_process_input(true)

func _input(ev):
    if (ev.type == InputEvent.MOUSE_MOTION):
        VisualServer.cursor_set_pos(ev.pos,0)

獲取鼠標點擊位置

_process方法

func _ready():
    set_process(true)   

func _process(delta):
    if (Input.is_mouse_button_pressed(1)):
        print("Left click: ", Input.get_mouse_pos())
    if (Input.is_mouse_button_pressed(2)):
        print("Right click: ", Input.get_mouse_pos())
    if (Input.is_mouse_button_pressed(3)):
        print("Middle click: ", Input.get_mouse_pos())  

_input方法

func _ready():  
    set_process_input(true)

func _input(ev):
    if (ev.type == InputEvent.MOUSE_BUTTON):
        print("Mouse event:", ev.pos)

檢測文件夾是否存在

# Checking if a directory exist in resource data directory
var res_dir = Directory.new()
if ( res_dir.dir_exists("res://my_dir") ):
    print("res://my_dir exist!")

# Checking if a directory exist in user data directory
var user_dir = Directory.new()
user_dir.open("user://")
if ( user_dir.dir_exists("user://my_dir") ):
    print("user://my_dir exist!")

# Checking if a directory exist in file system
var fs_dir = Directory.new()
fs_dir.open("")
if ( fs_dir.dir_exists("c:\\Windows") ): # guilty as charged -- marynate
    print("c:\\Windows exist!")

獲取變量類型

var a_var = 1

var type = typeof(a_var)

if (type==TYPE_INT):
    print("it's an int")
elif (type==TYPE_REAL):
    print("it's a float")

https://github.com/marynate/godot/wiki/How-to

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末鼎姐,一起剝皮案震驚了整個濱河市钾麸,隨后出現(xiàn)的幾起案子更振,更是在濱河造成了極大的恐慌,老刑警劉巖饭尝,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肯腕,死亡現(xiàn)場離奇詭異,居然都是意外死亡钥平,警方通過查閱死者的電腦和手機乎芳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來帖池,“玉大人奈惑,你說我怎么就攤上這事∷冢” “怎么了肴甸?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長囚巴。 經(jīng)常有香客問我原在,道長,這世上最難降的妖魔是什么彤叉? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任庶柿,我火速辦了婚禮,結(jié)果婚禮上秽浇,老公的妹妹穿的比我還像新娘浮庐。我一直安慰自己,他們只是感情好柬焕,可當我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布审残。 她就那樣靜靜地躺著,像睡著了一般斑举。 火紅的嫁衣襯著肌膚如雪搅轿。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天富玷,我揣著相機與錄音璧坟,去河邊找鬼。 笑死赎懦,一個胖子當著我的面吹牛雀鹃,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播铲敛,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼褐澎,長吁一口氣:“原來是場噩夢啊……” “哼会钝!你這毒婦竟也來了伐蒋?” 一聲冷哼從身側(cè)響起工三,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎先鱼,沒想到半個月后俭正,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡焙畔,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年掸读,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片宏多。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡儿惫,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出伸但,到底是詐尸還是另有隱情肾请,我是刑警寧澤,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布更胖,位于F島的核電站铛铁,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏却妨。R本人自食惡果不足惜饵逐,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望彪标。 院中可真熱鬧倍权,春花似錦、人聲如沸捞烟。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽坷襟。三九已至奸柬,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間婴程,已是汗流浹背廓奕。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留档叔,地道東北人桌粉。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像衙四,于是被迫代替她去往敵國和親铃肯。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內(nèi)容