plasmacodeing의 등록된 링크

키자드에 등록된 총 137개의 포스트를 확인하실 수 있습니다.

Tistory

[유니티C#][AR] 누르면 색변하는 차 만들기.1

버턴누르면 차색깔 바뀌게 만들기 - 차의 머티리얼을 가져옴- 차를 누르면 콜리젼이 발생하도록 콜리젼 엔터에 색을 변화시키는 함수를 작성 123456789101112131415161718192021222324252627282930313233343536 using System.Collections;using System.Collections.Generic;using UnityEngine.UI;using UnityEngine; public class CarColorChange : MonoBehaviour { //실제 에셋의 메터리얼을 가져오는 경우이다. public Material mat = null; // Use this for initialization void Start () { //에셋의 메터리얼을 바..

Tistory

공군 자격증 뭐 딸까?

나이가 많아 기사,산업기사면 다다익선이지만 ,, 그때 군대 갈 생각은 없으니 .. http://gall.dcinside.com/board/view/?id=airforce&no=260588&page=1&search_pos=&s_type=search_all&s_keyword=%EA%B0%80%EC%9D%B4%EB%93%9C 그냥 자격증 점수는 조금 먹고 가야제..------------ 1. 1차서류 115점(자격/면허(50점)+전공(40점)+가산점(25점)+출결(10))+ 2차 면접(25점) 2. 일딴 당장 흔들수 있는것이 자격증, 가산점 부분 3. 가산점은 =>{{성분헌혈 8회 해라 }}, {{공인영어성적(860점이상 4점/720~860 3점)}} 4. 자격증은 일반병,기술병 다른데 일반병: 기본40점 =..

Tistory

[무료] 인터넷으로 코딩하기, 웹컴파일러 추천 구름 IDE

클라우드 통합 개발 환경 https://ide.goorm.io/ 매번 VS을 키고 끄고 할 필요없이웹상에 코딩하고 결과 확인하고 바로 저장하고너무 편리하다.나중에 유료버전을 사용할 생각이다. 구름IDE가 지원하는 프로그래밍 언어와 환경 C/C++ JAVA Spring Spring Boot Python Django Flask Jupyter Notebook PyQt TensorFlow JavaScript React React Native Node.js Express Polymer Ruby Ruby on Rails Sinatra PHP Go C# .NET Swift R Arduino Kotlin

Tistory

[정보] 무료 IT 교육을 받을 수 있는곳

한국 생산성 본부 http://www.kpc.or.kr/index.asp 12345678910Pause

Tistory

[크롬]크롬 브라우저에서 IP우회 접속 하기

1. https://chrome.google.com/webstore/search/browsec?hl=ko 크롬 앱 스토어에서 browsec을 다운받아 크롬에 설치한다. 2. 설치되면 크롬 우측 상단의 초록 지구모양을 가지고 접속하고자 하는 위치를 지정할 수 있다.!

Tistory

크롬 브라우저 IP 접속 우회하기 VPN(Virtual Private Network)

Browsec VPN - Free and Unlimited VPN - Google Chrome 1. https://chrome.google.com/webstore/search/browsec?hl=ko 크롬 앱 스토어에서 browsec을 다운받아 크롬에 설치한다. 2. 설치되면 크롬 우측 상단의 초록 지구모양을 가지고 접속하고자 하는 위치를 지정할 수 있다.!

Tistory

[유니티C#][기초] 15. 튜토리얼 SurvivalShooter 정리.4

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 2-4 PlayerShooting using UnityEngine; public class PlayerShooting : MonoBehaviour{ public int damagePerShot = 20; public float timeBetweenBullets = 0.15f; public float range = 100f; float timer; Ray shootRay = new Ray(); Rayca..

Tistory

[유니티C#][기초] 16. 튜토리얼 SurvivalShooter 정리.5

1234567891011121314151617181920212223242526272829303132 2-5 CameraFollowusing System.Collections;using System.Collections.Generic;using UnityEngine; public class CameraFollow : MonoBehaviour { public Transform target; // The position that that camera will be following. public float smoothing = 5f; // The speed with which the camera will be following. Vector3 offset; // The initial offset from th..

Tistory

[유니티C#][기초] 17. 튜토리얼 SurvivalShooter 정리.6

ㅁ12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 2-6 EnemyHealthusing UnityEngine; public class EnemyHealth : MonoBehaviour{ public int startingHealth = 100; public int currentHealth; public float sinkSpeed = 2.5f; public int scoreValue = 10; public AudioClip deathClip; A..

Tistory

[유니티C#][기초] 12. 튜토리얼 SurvivalShooter 정리.1

2-1 개요 (1) 플레이어 움직임 설정하기 - 애니메이터- RigidBody-Capsule Collider-PlayerMovement.cs-플레이어 총쏘는거 구현하기 - 총 쏠 때 파티클 , line(2) 카메라 움직임 설정하기-CameraMovement.cs-Ray될 FloorMask Quad 두기(3) 적 프레팹 설정하기- 에니메이터 설정 Startsinking 호출됨 / - RigidBody 설정- SphereCollider설정 ( 총에 피격될 )- Capslue collider 설정( 다르면 체력이 깍임)-EnemyMovement + Nav Mesh Agent( 인공지능 이동 구현 )(4) UI 구현하기- 체력바- 맞으면 빨간색 화면 깜박

Tistory

[유니티C#][기초] 13. 튜토리얼 SurvivalShooter 정리.2

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 2-2 PlayerMovement using UnityEngine; public class PlayerMovement : MonoBehaviour{ public float speed = 6f; Vector3 movement; Animator anim; Rigidbody playerRigidbody; int floorMask; float camRayLength = 100f; void Awake() { floorMask = LayerMask.GetMask("Floor"); anim = GetComponent(); pl..

Tistory

[유니티C#][기초] 14. 튜토리얼 SurvivalShooter 정리.3

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 2-3 PlayerHealthusing UnityEngine;//UI관련 사용하려면 반드시 usingusing UnityEngine.UI;using System.Collections;using UnityEngine.SceneManagement; public class PlayerHealth : MonoBehaviour{ public int startingHealth = 100; public int ..

Tistory

[유니티C#][기초] 9. 플레이어 슈팅 4

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 using System.Collections;using System.Collections.Generic;using UnityEngine; public class PlayerShooting4 : MonoBehaviour{ public Transform gunBarrelEnd; private LineRenderer gunLine; private Light gunLight; public float power = 10000f; pub..

Tistory

[유니티C#][기초] 10.플레이어 슈팅 5 (최종)

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816..

Tistory

[유니티C#][기초] 11. 적에게 체력 부여하기

1234567891011121314151617181920212223242526272829303132using System.Collections;using System.Collections.Generic;using UnityEngine; public class EnemyHealth : MonoBehaviour{ public int maxHealth = 100; public int currentHealth; private ParticleSystem hitParticle; public void Awake() { currentHealth = maxHealth; hitParticle = GetComponentInChildren(); } public void TakeDamage(int damage, Vector3 ..

Tistory

[유니티C#][기초] 7. 플레이어 슈팅 3

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 using System.Collections;using UnityEngine; public class PlayerShooting3 : MonoBehaviour{ public Transform gunBarrelEnd; private LineRenderer gunLine; private Light gunLight; public float power = 10000f; public float range = 100f; public float ti..

Tistory

[유니티C#][기초] 8. 플레이어를 따라오는 적 만들기

1234567891011121314151617181920212223 using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.AI; public class EnemyMovement : MonoBehaviour{ private Transform target; private NavMeshAgent navAgent; public void Awake() { target = GameObject.FindGameObjectWithTag("Player").transform; navAgent = GetComponent(); } public void Update() { navAgent.SetDestination(..

Tistory

[유니티 C#][기초] 4. 마우스, 키보드 입력 받기

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758using System.Collections;using System.Collections.Generic;using UnityEngine; public class PlayerControler2 : MonoBehaviour{ public float speed = 15f;//캐릭터 이동속도 private Rigidbody rb; private int floorLayerMask;//마우스 레이케스트에 필요한 레이어 private const float maxDistance = 1000f;// 레이캐스트 최대거리 public ..

Tistory

[유니티 C#][기초] 5.플레이어 슈팅 1

12345678910111213141516171819202122232425262728293031323334353637383940using System.Collections;using System.Collections.Generic;using UnityEngine; public class PlayerShooting : MonoBehaviour{ public Transform gunBarrelEnd; private LineRenderer gunLine; public float range = 100f; private Ray ray = new Ray(); private RaycastHit hit; public void Awake() { //자식에게 있는 컴포넌트를 가져온다. gunLine = GetCompone..

Tistory

[유니티C#][기초] 6.플레이어 슈팅 2

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 using System.Collections;using System.Collections.Generic;using UnityEngine; public class PlayerShooting2 : MonoBehaviour{ public Transform gunBarrelEnd; private LineRenderer gunLine; public float power = 10000f; public float range = 100f; public float timeBet..

Tistory

[유니티C#][기초] 1.유니티로 마우스 키보드 입력 받기

12345678910111213141516171819202122232425262728293031323334353637 using System.Collections;using System.Collections.Generic;using UnityEngine;//1. Awake 깨워 -> 2. Start 시작 ->3. FixedUpdate()/Update() 물리틱/틱 함수public class PlayerControler : MonoBehaviour{ public float speed = 15f; private Rigidbody rb; public void Awake() { //유니티상에서 rigid추가하면 new한 셈 , 그 주소를 가져옴 rb = GetComponent(); } public void Fi..

Tistory

[유니티C#][기초] 2. 특정 오브젝트를 카메라가 따라오가게 하기

123456789101112131415161718192021222324252627using System.Collections;using System.Collections.Generic;using UnityEngine; public class CameraFollow : MonoBehaviour{ public Transform target; public float speed = 5f; private Vector3 offset; public void Awake() { //결국은 화살표가 나를 가르키겠끔 하도록 Player -> 카메라 의 방향을 구해 offset = transform.position - target.position; } public void Update() { //최종위치가 정해지겠지 var ..

Tistory

[유니티 C#][기초] 3. 씬에 스크립트로 큐브 100개 생성하기

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859using System.Collections;using System.Collections.Generic;using UnityEngine; public class CubeGroupGenerator : MonoBehaviour{ public Vector3 position = new Vector3(10.0f, 0.0f, 0.0f); //정육각형 큐브를 쌓는데 for문에 사용할 반복인수로 vector3 사용 public Vector3 count = new Vector3(10f, 10f, 10f); public void ..

Tistory

[ Unity Asset ] 유니티 에셋 Top100 - 매번 인기있는 에셋을 확인하자.

UNITY TECHNOLOGIESTop Grossing Packages (100)공유하기See the top grossing packages for the last 30 days >> 링크 :

Tistory

[코드]블로그에 코드올리기 - 깔끔한 코드 하이라이터 사이트

블로그에 코드올리기 - 깔끔한 코드 하이라이터 사이트 https://colorscripter.com/ 프로그램 소스 가독성 좋게 바꿔주기 예시 : 12345678910111213141516171819202122232425262728293031323334using System.Collections;using System.Collections.Generic;using UnityEngine;//1. Awake 깨워 -> 2. Start 시작 ->3. FixedUpdate()/Update() 물리틱/틱 함수public class PlayerControler : MonoBehaviour{ public float speed = 15f; private Rigidbody rb; public void Awake() { ..

Tistory

[IDE] 무료 웹 컴파일러 - 인터넷에서 코딩하기 / 웹 IDE

[IDE] 무료 웹 컴파일러 - 인터넷에서 코딩하기 / 웹 IDE https://www.jdoodle.com/compile-c-sharp-online >>링크

Tistory

알고리즘을 공부해야 되는 이유

개발자라면 알고리즘 공부와 대회 준비에 대해 한번쯤 고민하게 된다. 라이브러리 가져다 쓸랭 VS 아니, 그 밖에도 알고리즘 공부는 만흔 이득이 있음 알고리즘 공부를 하겠다고 마음먹었으면다음 URL에 들어가 설득당해보자.http://beingryu.github.io/first-startlink-live/#/ 알고리즘 문제를 잘 푼다해서 얻을 수 있을지 의문인것: 1.협업경험/문제를 설명해주는 능력/ 복잡한 코드나 설계 능력 / 남의 좋은 코드를 읽고 활용하는 능력/ 남이 읽을것을 전재하에 코딩하는 경험 2.알고리즘 문제지와 다르게 기획서는 많이 다름알고리즘 문제와 달리 답이 여럿알고리즘 문제로 바꾸면 오버엔지니어링 3.쌓은 지식 대다수는 쓸모가 없음

Tistory

[ 대학생 개발 ] Live On Earth (Andriod) 지구 생존

다운로드 링크https://play.google.com/store/apps/details?id=com.KkuKkuStudio.LiveOnEarth

Tistory

[ Project ] 감성형 전역일 계산기 - 군인 제대일 알리미

- 프로젝트 CG- 감성형 전역일 계산기 - 군인 제대일 알리미- MiliCal- 유니티 5- 안드로이드 https://play.google.com/store/apps/details?id=com.KkuKkuStudio.WhenThatDayComes

Tistory

[UMV] 마크툽 marry me - UnrealEngine4 Leveling

마크튭 Marry Me 을 적용시킨언리얼 Leveling Practice 입니다. https://youtu.be/QAsE6jGee2g 구매한 에셋에서 UV라이트맵을 제대로 안핀것들이 많아서 , 에픽게임즈에 문의를 해야될것 같네요.

Tistory

[VR] UnrealEngine4 - 결혼식장 VR

저번에 올린 결혼식장 맵을 활용해 만들어 봤습니다.! https://youtu.be/Zz7jKQUVwSo

Tistory

3. [문서학습] 변수, 타이머, 이벤트

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130https://docs.unrealengine.com/latest/KOR/Programming/Tutorials/VariablesTimersEvents/index.html Countdown.h // Fill ..

Tistory

[프로그래밍] C/C++ 커리큘럼,책 추천 (참고)

1. 첫번째 글 출처: http://www.hanbit.co.kr/media/channel/view.html?cms_code=CMS7807003885&cate_cd=005 C와 C++ 은 중요하고 가치있는 개발자의 무기2013-06-13|by HANBIT페이스북 퍼가기 구글+ 퍼가기 트위터 퍼가기0 18,622저자: 이정재( [email protected] ) 저는 흔히 말하는 윈도우 개발자입니다. 윈도우 운영체제를 기반으로 동작하는 크고 작은 프로그램을 개발하는 것이 주 업무이고 이것저것 윈도우 기반을 프로젝트를 경험했습니다. 모바일 열풍에 힘입어 안드로이드 혹은 iOS 에 대한 개발이 유행하고 있지만, 윈도우 운영체제는 아직도 꾸준히 수요가 있는, 개발의 중요한 부분입니다. 윈도우 운영체제는 ..

Tistory

C언어로 만든 생애 첫 게임

프로젝트이름 원슨어택게임이름 신의한수위 둘의 차이는 나도 헷갈린다. 소스공개: #include#include#include#include#include#include #define true 1#define false 0 using namespace std; typedef struct set_field{int howin = -1;//1없음,2플래이어,3컴퓨터}SET; typedef struct player {char name[100];int HP=1;int SP=0; int defend = NULL; int axis_x = NULL;int axis_y = NULL; int AI = NULL; // AI인경우 랜덤함수를 통해 이동과 공격을 설정한다.(1 이면 AI) int action1[3];int acti..

Tistory

1. [문서학습] 프로그래밍 퀵스타트 <1.주석>

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 https://docs.unrealengine.com/latest/KOR/Programming/QuickStart/index.html ProjectName: QuickStart 1. C++ 액터 생성(FloatingActor) 2. FloatingActor.h #pragma once #include "GameFramework/Actor.h"#include "FloatingActor.generated.h" UCLASS()class QUICKS..

Tistory

2. [문서학습] 플레이어 입력 및 폰 <1.주석>

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 플레이어 입력 및 폰 https://docs...

1 2