Camelcased script variables will now capitalize in the inspector.

This commit is contained in:
Nathan Warden 2015-02-19 19:35:04 -05:00
parent 31e076d16a
commit 8f5bf2a2ef
2 changed files with 25 additions and 3 deletions

View file

@ -149,6 +149,7 @@ public:
static double to_double(const CharType* p_str, const CharType **r_end=NULL);
static int64_t to_int(const CharType* p_str,int p_len=-1);
String capitalize() const;
String camelcase_to_underscore() const;
int get_slice_count(String p_splitter) const;
String get_slice(String p_splitter,int p_slice) const;
@ -225,8 +226,6 @@ public:
String(const char *p_str);
String(const CharType *p_str,int p_clip_to_len=-1);
String(const StrRange& p_range);
};