9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

openFrameworks 知ってると幸せになれるかもしれないTips

Posted at

質問とか受けたり使ってて便利だなと思った
Tips的なものをちょこちょこ書き足していきます

#描画

#画像、映像
##ofImage
###アンカーを設定

.cpp
	ofImage image;
	image.setAnchorPercent(0.5,0.5);

###スクリーンショット的な

.cpp
	image.grabScreen(x,y,w,h)

#音楽
##ofSoundPlayer
###音楽を重ねて再生できるようにする
デフォルトではsoundPlayerはplay()する度に再生途中でも最初から再生されますが
以下のようにするとplay()する度に再生途中の音声とは異なる新しい再生が始まります。(再生途中の音楽が停止されない)

.cpp
    ofSoundPlayer soundPlayer;
    soundPlayer.setMultiPlay(true);

###音楽の再生位置を明示する

.cpp
	soundPlayer.setPosition(float position);

##ofSoundGetSpectrumについて

#Shader

#エラー対処

#Addon

#その他

9
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?