Jump to content

The Ctrl+V game

Recommended Posts

why did anyone ever complain

"We are dreamers, shapers, singers, and makers. We study the mysteries of laser and circuit, crystal and scanner, holographic demons and invocations of equations. These are the tools we employ, and we know many things." ~ Elric, the Technomage

Share this post


Link to post

"Ross, this is nothing. WHAT YOU NEED to be playing is S***flinger 5000." - Ross Scott talking about himself.

-------

PM me if you have any questions or concerns! :D

Share this post


Link to post

[6:34:30 PM] (redacted): i saw the designs for dairangers

[6:34:37 PM] (redacted): and now i'm disappointed they didn't use them for MMPR S2

"We are dreamers, shapers, singers, and makers. We study the mysteries of laser and circuit, crystal and scanner, holographic demons and invocations of equations. These are the tools we employ, and we know many things." ~ Elric, the Technomage

Share this post


Link to post

And how would you like MS to pay their employees for working on Windows 10?

Don't insult me. I have trained professionals to do that.

Share this post


Link to post

using UnityEditor;

using UnityEngine;

 

[CustomEditor(typeof(ObjectPoolScript))]

public class ObjectPoolGUI : Editor

{

public override void OnInspectorGUI()

{

serializedObject.Update();

 

ObjectPoolScript Pool = target as ObjectPoolScript;

Pool.objectPool = GameObject.FindObjectsOfType(typeof(GameObject)) as GameObject[];

 

 

EditorGUILayout.PropertyField(serializedObject.FindProperty("objectPool"), true);

 

serializedObject.ApplyModifiedProperties();

}

}

 

 

Oh yeah... That.

Retired Forum Moderator

Share this post


Link to post

It is not strange... to mistake change for progress.

Millard Fillmore

Don't insult me. I have trained professionals to do that.

Share this post


Link to post

QsMpFrkuQ9g

"Ross, this is nothing. WHAT YOU NEED to be playing is S***flinger 5000." - Ross Scott talking about himself.

-------

PM me if you have any questions or concerns! :D

Share this post


Link to post
QsMpFrkuQ9g

My bro showed me this video recently! :D

Whoever did this is TALENTED and should join Valve!

 

OT:o hai ther

"FUCK YOU REALITY!!YOU'RE FULL OF SHIT!!!"

"Hark! Dost thou hear with thine ears what I hear with mine? Interloper! No quarter shall be shown hither, fiend! Anon! Show thyself, churl!"

http://myanimelist.net/profile/MantisDude

Share this post


Link to post

public void SetDialogue(string[] message)

{

if(!Manager.Instance.isPlayerChatting)

{

_string = message;

}

}

 

public void OnConversationStart()

{

if(!Manager.Instance.isPlayerChatting)

{

Manager.Instance.isPlayerChatting = true;

_Box.SetActive(true);

 

_Text.text = _string[0];

}

}

 

public void OnConversationEnd()

{

if(_mNum >= _string.Length)

{

_mNum = 0;

 

_Box.SetActive(false);

Manager.Instance.isPlayerChatting = false;

}

}

 

public void OnNext()

{

_mNum++;

 

if(_mNum < _string.Length)

{

_Text.text = _string[_mNum];

}

else

{

OnConversationEnd();

}

}

Retired Forum Moderator

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in the community.

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

This website uses cookies, as do most websites since the 90s. By using this site, you consent to cookies. We have to say this or we get in trouble. Learn more.