File tree Expand file tree Collapse file tree 3 files changed +58
-0
lines changed Expand file tree Collapse file tree 3 files changed +58
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3
+ <CodeSnippet Format="1.0.0">
4
+ <Header>
5
+ <Title>Put Debug.Log("") string.</Title>
6
+ <Shortcut>dlog</Shortcut>
7
+ <Description>Code snippet for Unity Debug.Log()</Description>
8
+ <Author>Oleg Andrushko - nubick</Author>
9
+ <SnippetTypes>
10
+ <SnippetType>Expansion</SnippetType>
11
+ </SnippetTypes>
12
+ </Header>
13
+ <Snippet>
14
+ <Code Language="csharp"><![CDATA[Debug.Log("$end$");]]>
15
+ </Code>
16
+ </Snippet>
17
+ </CodeSnippet>
18
+ </CodeSnippets>
Original file line number Diff line number Diff line change
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3
+ <CodeSnippet Format="1.0.0">
4
+ <Header>
5
+ <Title>GUILayout Begin and End Horizontal</Title>
6
+ <Shortcut>glh</Shortcut>
7
+ <Description>Code snippet for Unity GUILayout Begin and End Horizontal()</Description>
8
+ <Author>Oleg Andrushko - nubick</Author>
9
+ <SnippetTypes>
10
+ <SnippetType>Expansion</SnippetType>
11
+ </SnippetTypes>
12
+ </Header>
13
+ <Snippet>
14
+ <Code Language="csharp"><![CDATA[GUILayout.BeginHorizontal();
15
+ $end$
16
+ GUILayout.EndHorizontal();]]>
17
+ </Code>
18
+ </Snippet>
19
+ </CodeSnippet>
20
+ </CodeSnippets>
Original file line number Diff line number Diff line change
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3
+ <CodeSnippet Format="1.0.0">
4
+ <Header>
5
+ <Title>GUILayout Begin and End Vertical</Title>
6
+ <Shortcut>glv</Shortcut>
7
+ <Description>Code snippet for Unity GUILayout Begin and End Vertical()</Description>
8
+ <Author>Oleg Andrushko - nubick</Author>
9
+ <SnippetTypes>
10
+ <SnippetType>Expansion</SnippetType>
11
+ </SnippetTypes>
12
+ </Header>
13
+ <Snippet>
14
+ <Code Language="csharp"><![CDATA[GUILayout.BeginVertical();
15
+ $end$
16
+ GUILayout.EndVertical();]]>
17
+ </Code>
18
+ </Snippet>
19
+ </CodeSnippet>
20
+ </CodeSnippets>
You can’t perform that action at this time.
0 commit comments