forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 0
class_file
Lukas Sägesser edited this page Jun 22, 2015
·
11 revisions
####Inherits: Reference ####Category: Core
- int open_encrypted ( String path, int mode_flags, RawArray key )
- int open_encrypted_with_pass ( String path, int mode_flags, String pass )
- int open ( String path, int flags )
- void close ( )
- bool is_open ( ) const
- void seek ( int pos )
- void seek_end ( int pos=0 )
- int get_pos ( ) const
- int get_len ( ) const
- bool eof_reached ( ) const
- int get_8 ( ) const
- int get_16 ( ) const
- int get_32 ( ) const
- int get_64 ( ) const
- float get_float ( ) const
- float get_double ( ) const
- float get_real ( ) const
- RawArray get_buffer ( int len ) const
- String get_line ( ) const
- String get_as_text ( ) const
- bool get_endian_swap ( )
- void set_endian_swap ( bool enable )
- Error get_error ( ) const
- void get_var ( ) const
- StringArray get_csv_line ( ) const
- void store_8 ( int value )
- void store_16 ( int value )
- void store_32 ( int value )
- void store_64 ( int value )
- void store_float ( float value )
- void store_double ( float value )
- void store_real ( float value )
- void store_buffer ( RawArray buffer )
- void store_line ( String line )
- void store_string ( String string )
- void store_var ( var value )
- void store_pascal_string ( String string )
- String get_pascal_string ( )
- bool file_exists ( String path ) const
- READ = 1
- WRITE = 2
- READ_WRITE = 3