100 ~ 999 : +1 1000~9999 : +10 10000~99999 : +100 .... using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEditor; using TMPro; public class test : MonoBehaviour public int quantity; public TMP_InputField Text; double value; int a; double result; /*double pow(double x, double a);*/ private void Start() { Text.text = quantity.ToString();..
1. 파일 등록 index_controller.rb ㄴclass IndexController < ApplicationController def index end end routes.rb ㄴRails.application.routes.draw do //# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html //# Defines the root path route ("/") //# root "articles#index" get '/index', to:'index#index' root to:"main#index" post '/login', to:"sessions#login" get 'code', to:..
html에서 처리 oncontextmenu="return false" : 오른쪽 버튼 클릭 금지 ondragstart="return false" onselectstart="return false" : 드래그 금지 css에서 처리 div { -webkit-touch-callout: none; user-select: none; -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; } 출처: https://eunyoe.tistory.com/33 [eunyo의 it이야기]
